diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8cf49bc037..37c1df8dfb 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,10 +1,13 @@ +# hasn't specified or all +* @sleepyyapril @Remuchi + /.* @DEATHB4DEFEAT *.sln @DEATHB4DEFEAT *.csproj @DEATHB4DEFEAT *.dotsettings @DEATHB4DEFEAT *.DotSettings @DEATHB4DEFEAT *.toml @DEATHB4DEFEAT -/Content.*/IoC @sleepyyapril @DEATHB4DEFEAT +/Content.*/IoC @DEATHB4DEFEAT # Nix @@ -14,8 +17,8 @@ # UI -*.xaml @sleepyyapril @DEATHB4DEFEAT -*.xaml.cs @sleepyyapril @DEATHB4DEFEAT +*.xaml @DEATHB4DEFEAT +*.xaml.cs @DEATHB4DEFEAT # Lobby /Content.Client/Lobby @DEATHB4DEFEAT @@ -28,7 +31,7 @@ # Writing *.xml @DEATHB4DEFEAT -*.ftl @DEATHB4DEFEAT @sleepyyapril +*.ftl @DEATHB4DEFEAT *.md @DEATHB4DEFEAT *.txt @DEATHB4DEFEAT @@ -67,15 +70,15 @@ # Database -/Content.*/Database @sleepyyapril @DEATHB4DEFEAT -/Content.*/.Database @sleepyyapril @DEATHB4DEFEAT +/Content.*/Database @DEATHB4DEFEAT +/Content.*/.Database @DEATHB4DEFEAT # Preferences /Content.*/Preferences @DEATHB4DEFEAT -**/*CVar*/*.cs @sleepyyapril @DEATHB4DEFEAT +**/*CVar*/*.cs @DEATHB4DEFEAT # Discord -/Content.*/Discord* @sleepyyapril @DEATHB4DEFEAT +/Content.*/Discord* @DEATHB4DEFEAT # Loadouts /Resources/Prototypes/Loadouts @angelofallars @@ -92,3 +95,13 @@ /Content.*/ProjectileSystem @angelofallars /Content.*/ThrownItem @angelofallars /Content.*/ThrowEvent @angelofallars + +# Nyano Systems +/Content.*/Weapons @VMSolidus +/Content.*/Abilities/Psionics @VMSolidus +/Content.*/Psionics @VMSolidus +/Content.*/Contests @VMSolidus +/Content.*/Carrying @VMSolidus + +# Physics Stuff +/Content.*/Atmos @VMSolidus diff --git a/.github/workflows/no-submodule-update.yml b/.github/workflows/no-submodule-update.yml index f2a9d72e37..c955f35252 100644 --- a/.github/workflows/no-submodule-update.yml +++ b/.github/workflows/no-submodule-update.yml @@ -7,6 +7,7 @@ on: jobs: this_aint_right: + if: github.actor != 'sleepyyapril' && github.actor != 'VMSolidus' && github.actor != 'DEATHB4DEFEAT' name: Submodule update in pr found runs-on: ubuntu-latest steps: diff --git a/.github/workflows/rsi-diff.yml b/.github/workflows/rsi-diff.yml index 1f122526d7..98cc97e922 100644 --- a/.github/workflows/rsi-diff.yml +++ b/.github/workflows/rsi-diff.yml @@ -15,9 +15,12 @@ jobs: - name: Get changed files id: files - uses: Ana06/get-changed-files@v1.2 + uses: Ana06/get-changed-files@v2.3.0 with: format: 'space-delimited' + filter: | + **.rsi + **.png - name: Diff changed RSIs id: diff diff --git a/BuildFiles/Mac/Space Station 14.app/Contents/Resources/ss14.icns b/BuildFiles/Mac/Space Station 14.app/Contents/Resources/ss14.icns index cba0912b0f..b49fea90ea 100644 Binary files a/BuildFiles/Mac/Space Station 14.app/Contents/Resources/ss14.icns and b/BuildFiles/Mac/Space Station 14.app/Contents/Resources/ss14.icns differ diff --git a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs index b0d0365ef6..3cc3a5f459 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs @@ -31,19 +31,6 @@ public sealed partial class AtmosAlarmEntryContainer : BoxContainer [AtmosAlarmType.Danger] = "atmos-alerts-window-danger-state", }; - private Dictionary _gasShorthands = new Dictionary() - { - [Gas.Ammonia] = "NH₃", - [Gas.CarbonDioxide] = "CO₂", - [Gas.Frezon] = "F", - [Gas.Nitrogen] = "N₂", - [Gas.NitrousOxide] = "N₂O", - [Gas.Oxygen] = "O₂", - [Gas.Plasma] = "P", - [Gas.Tritium] = "T", - [Gas.WaterVapor] = "H₂O", - }; - public AtmosAlarmEntryContainer(NetEntity uid, EntityCoordinates? coordinates) { RobustXamlLoader.Load(this); @@ -160,15 +147,12 @@ public void UpdateEntry(AtmosAlertsComputerEntry entry, bool isFocus, AtmosAlert // Add an entry for each gas foreach ((var gas, (var mol, var percent, var alert)) in gasData) { - var gasPercent = (FixedPoint2)0f; - gasPercent = percent * 100f; - - if (!_gasShorthands.TryGetValue(gas, out var gasShorthand)) - gasShorthand = "X"; + FixedPoint2 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", gasShorthand), ("value", gasPercent)), + Text = Loc.GetString("atmos-alerts-window-other-gases-value", ("shorthand", gasAbbreviation), ("value", gasPercent)), FontOverride = normalFont, FontColorOverride = GetAlarmStateColor(alert), HorizontalAlignment = HAlignment.Center, diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleBoundUserInterface.cs b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleBoundUserInterface.cs new file mode 100644 index 0000000000..563122f962 --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleBoundUserInterface.cs @@ -0,0 +1,40 @@ +using Content.Shared.Atmos.Components; + +namespace Content.Client.Atmos.Consoles; + +public sealed class AtmosMonitoringConsoleBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private AtmosMonitoringConsoleWindow? _menu; + + public AtmosMonitoringConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } + + protected override void Open() + { + base.Open(); + + _menu = new AtmosMonitoringConsoleWindow(this, Owner); + _menu.OpenCentered(); + _menu.OnClose += Close; + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (state is not AtmosMonitoringConsoleBoundInterfaceState castState) + return; + + EntMan.TryGetComponent(Owner, out var xform); + _menu?.UpdateUI(xform?.Coordinates, castState.AtmosNetworks); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + _menu?.Dispose(); + } +} diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleNavMapControl.cs b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleNavMapControl.cs new file mode 100644 index 0000000000..c23ebb6435 --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleNavMapControl.cs @@ -0,0 +1,295 @@ +using Content.Client.Pinpointer.UI; +using Content.Shared.Atmos.Components; +using Content.Shared.Pinpointer; +using Robust.Client.Graphics; +using Robust.Shared.Collections; +using Robust.Shared.Map.Components; +using System.Linq; +using System.Numerics; + +namespace Content.Client.Atmos.Consoles; + +public sealed partial class AtmosMonitoringConsoleNavMapControl : NavMapControl +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + public bool ShowPipeNetwork = true; + public int? FocusNetId = null; + + private const int ChunkSize = 4; + + private readonly Color _basePipeNetColor = Color.LightGray; + private readonly Color _unfocusedPipeNetColor = Color.DimGray; + + private List _atmosPipeNetwork = new(); + private Dictionary _sRGBLookUp = new Dictionary(); + + // Look up tables for merging continuous lines. Indexed by line color + private Dictionary> _horizLines = new(); + private Dictionary> _horizLinesReversed = new(); + private Dictionary> _vertLines = new(); + private Dictionary> _vertLinesReversed = new(); + + public AtmosMonitoringConsoleNavMapControl() : base() + { + PostWallDrawingAction += DrawAllPipeNetworks; + } + + protected override void UpdateNavMap() + { + base.UpdateNavMap(); + + if (!_entManager.TryGetComponent(Owner, out var console)) + return; + + if (!_entManager.TryGetComponent(MapUid, out var grid)) + return; + + _atmosPipeNetwork = GetDecodedAtmosPipeChunks(console.AtmosPipeChunks, grid); + } + + private void DrawAllPipeNetworks(DrawingHandleScreen handle) + { + if (!ShowPipeNetwork) + return; + + // Draw networks + if (_atmosPipeNetwork != null && _atmosPipeNetwork.Any()) + DrawPipeNetwork(handle, _atmosPipeNetwork); + } + + private void DrawPipeNetwork(DrawingHandleScreen handle, List atmosPipeNetwork) + { + var offset = GetOffset(); + offset = offset with { Y = -offset.Y }; + + if (WorldRange / WorldMaxRange > 0.5f) + { + var pipeNetworks = new Dictionary>(); + + foreach (var chunkedLine in atmosPipeNetwork) + { + var start = ScalePosition(chunkedLine.Origin - offset); + var end = ScalePosition(chunkedLine.Terminus - offset); + + if (!pipeNetworks.TryGetValue(chunkedLine.Color, out var subNetwork)) + subNetwork = new ValueList(); + + subNetwork.Add(start); + subNetwork.Add(end); + + pipeNetworks[chunkedLine.Color] = subNetwork; + } + + foreach ((var color, var subNetwork) in pipeNetworks) + { + if (subNetwork.Count > 0) + handle.DrawPrimitives(DrawPrimitiveTopology.LineList, subNetwork.Span, color); + } + } + + else + { + var pipeVertexUVs = new Dictionary>(); + + foreach (var chunkedLine in atmosPipeNetwork) + { + var leftTop = ScalePosition(new Vector2 + (Math.Min(chunkedLine.Origin.X, chunkedLine.Terminus.X) - 0.1f, + Math.Min(chunkedLine.Origin.Y, chunkedLine.Terminus.Y) - 0.1f) + - offset); + + var rightTop = ScalePosition(new Vector2 + (Math.Max(chunkedLine.Origin.X, chunkedLine.Terminus.X) + 0.1f, + Math.Min(chunkedLine.Origin.Y, chunkedLine.Terminus.Y) - 0.1f) + - offset); + + var leftBottom = ScalePosition(new Vector2 + (Math.Min(chunkedLine.Origin.X, chunkedLine.Terminus.X) - 0.1f, + Math.Max(chunkedLine.Origin.Y, chunkedLine.Terminus.Y) + 0.1f) + - offset); + + var rightBottom = ScalePosition(new Vector2 + (Math.Max(chunkedLine.Origin.X, chunkedLine.Terminus.X) + 0.1f, + Math.Max(chunkedLine.Origin.Y, chunkedLine.Terminus.Y) + 0.1f) + - offset); + + if (!pipeVertexUVs.TryGetValue(chunkedLine.Color, out var pipeVertexUV)) + pipeVertexUV = new ValueList(); + + pipeVertexUV.Add(leftBottom); + pipeVertexUV.Add(leftTop); + pipeVertexUV.Add(rightBottom); + pipeVertexUV.Add(leftTop); + pipeVertexUV.Add(rightBottom); + pipeVertexUV.Add(rightTop); + + pipeVertexUVs[chunkedLine.Color] = pipeVertexUV; + } + + foreach ((var color, var pipeVertexUV) in pipeVertexUVs) + { + if (pipeVertexUV.Count > 0) + handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, pipeVertexUV.Span, color); + } + } + } + + private List GetDecodedAtmosPipeChunks(Dictionary? chunks, MapGridComponent? grid) + { + var decodedOutput = new List(); + + if (chunks == null || grid == null) + return decodedOutput; + + // Clear stale look up table values + _horizLines.Clear(); + _horizLinesReversed.Clear(); + _vertLines.Clear(); + _vertLinesReversed.Clear(); + + // Generate masks + var northMask = (ulong)1 << 0; + var southMask = (ulong)1 << 1; + var westMask = (ulong)1 << 2; + var eastMask = (ulong)1 << 3; + + foreach ((var chunkOrigin, var chunk) in chunks) + { + var list = new List(); + + foreach (var ((netId, hexColor), atmosPipeData) in chunk.AtmosPipeData) + { + // Determine the correct coloration for the pipe + var color = Color.FromHex(hexColor) * _basePipeNetColor; + + if (FocusNetId != null && FocusNetId != netId) + color *= _unfocusedPipeNetColor; + + // Get the associated line look up tables + if (!_horizLines.TryGetValue(color, out var horizLines)) + { + horizLines = new(); + _horizLines[color] = horizLines; + } + + if (!_horizLinesReversed.TryGetValue(color, out var horizLinesReversed)) + { + horizLinesReversed = new(); + _horizLinesReversed[color] = horizLinesReversed; + } + + if (!_vertLines.TryGetValue(color, out var vertLines)) + { + vertLines = new(); + _vertLines[color] = vertLines; + } + + if (!_vertLinesReversed.TryGetValue(color, out var vertLinesReversed)) + { + vertLinesReversed = new(); + _vertLinesReversed[color] = vertLinesReversed; + } + + // Loop over the chunk + for (var tileIdx = 0; tileIdx < ChunkSize * ChunkSize; tileIdx++) + { + if (atmosPipeData == 0) + continue; + + var mask = (ulong)SharedNavMapSystem.AllDirMask << tileIdx * SharedNavMapSystem.Directions; + + if ((atmosPipeData & mask) == 0) + continue; + + var relativeTile = GetTileFromIndex(tileIdx); + var tile = (chunk.Origin * ChunkSize + relativeTile) * grid.TileSize; + tile = tile with { Y = -tile.Y }; + + // Calculate the draw point offsets + var vertLineOrigin = (atmosPipeData & northMask << tileIdx * SharedNavMapSystem.Directions) > 0 ? + new Vector2(grid.TileSize * 0.5f, -grid.TileSize * 1f) : new Vector2(grid.TileSize * 0.5f, -grid.TileSize * 0.5f); + + var vertLineTerminus = (atmosPipeData & southMask << tileIdx * SharedNavMapSystem.Directions) > 0 ? + new Vector2(grid.TileSize * 0.5f, -grid.TileSize * 0f) : new Vector2(grid.TileSize * 0.5f, -grid.TileSize * 0.5f); + + var horizLineOrigin = (atmosPipeData & eastMask << tileIdx * SharedNavMapSystem.Directions) > 0 ? + new Vector2(grid.TileSize * 1f, -grid.TileSize * 0.5f) : new Vector2(grid.TileSize * 0.5f, -grid.TileSize * 0.5f); + + var horizLineTerminus = (atmosPipeData & westMask << tileIdx * SharedNavMapSystem.Directions) > 0 ? + new Vector2(grid.TileSize * 0f, -grid.TileSize * 0.5f) : new Vector2(grid.TileSize * 0.5f, -grid.TileSize * 0.5f); + + // Since we can have pipe lines that have a length of a half tile, + // double the vectors and convert to vector2i so we can merge them + AddOrUpdateNavMapLine(ConvertVector2ToVector2i(tile + horizLineOrigin, 2), ConvertVector2ToVector2i(tile + horizLineTerminus, 2), horizLines, horizLinesReversed); + AddOrUpdateNavMapLine(ConvertVector2ToVector2i(tile + vertLineOrigin, 2), ConvertVector2ToVector2i(tile + vertLineTerminus, 2), vertLines, vertLinesReversed); + } + } + } + + // Scale the vector2is back down and convert to vector2 + foreach (var (color, horizLines) in _horizLines) + { + // Get the corresponding sRBG color + var sRGB = GetsRGBColor(color); + + foreach (var (origin, terminal) in horizLines) + decodedOutput.Add(new AtmosMonitoringConsoleLine + (ConvertVector2iToVector2(origin, 0.5f), ConvertVector2iToVector2(terminal, 0.5f), sRGB)); + } + + foreach (var (color, vertLines) in _vertLines) + { + // Get the corresponding sRBG color + var sRGB = GetsRGBColor(color); + + foreach (var (origin, terminal) in vertLines) + decodedOutput.Add(new AtmosMonitoringConsoleLine + (ConvertVector2iToVector2(origin, 0.5f), ConvertVector2iToVector2(terminal, 0.5f), sRGB)); + } + + return decodedOutput; + } + + private Vector2 ConvertVector2iToVector2(Vector2i vector, float scale = 1f) + { + return new Vector2(vector.X * scale, vector.Y * scale); + } + + private Vector2i ConvertVector2ToVector2i(Vector2 vector, float scale = 1f) + { + return new Vector2i((int)MathF.Round(vector.X * scale), (int)MathF.Round(vector.Y * scale)); + } + + private Vector2i GetTileFromIndex(int index) + { + var x = index / ChunkSize; + var y = index % ChunkSize; + return new Vector2i(x, y); + } + + private Color GetsRGBColor(Color color) + { + if (!_sRGBLookUp.TryGetValue(color, out var sRGB)) + { + sRGB = Color.ToSrgb(color); + _sRGBLookUp[color] = sRGB; + } + + return sRGB; + } +} + +public struct AtmosMonitoringConsoleLine +{ + public readonly Vector2 Origin; + public readonly Vector2 Terminus; + public readonly Color Color; + + public AtmosMonitoringConsoleLine(Vector2 origin, Vector2 terminus, Color color) + { + Origin = origin; + Terminus = terminus; + Color = color; + } +} diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleSystem.cs b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleSystem.cs new file mode 100644 index 0000000000..bfbb05d2ab --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleSystem.cs @@ -0,0 +1,69 @@ +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Consoles; +using Robust.Shared.GameStates; + +namespace Content.Client.Atmos.Consoles; + +public sealed class AtmosMonitoringConsoleSystem : SharedAtmosMonitoringConsoleSystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnHandleState); + } + + private void OnHandleState(EntityUid uid, AtmosMonitoringConsoleComponent component, ref ComponentHandleState args) + { + Dictionary> modifiedChunks; + Dictionary atmosDevices; + + switch (args.Current) + { + case AtmosMonitoringConsoleDeltaState delta: + { + modifiedChunks = delta.ModifiedChunks; + atmosDevices = delta.AtmosDevices; + + foreach (var index in component.AtmosPipeChunks.Keys) + { + if (!delta.AllChunks!.Contains(index)) + component.AtmosPipeChunks.Remove(index); + } + + break; + } + + case AtmosMonitoringConsoleState state: + { + modifiedChunks = state.Chunks; + atmosDevices = state.AtmosDevices; + + foreach (var index in component.AtmosPipeChunks.Keys) + { + if (!state.Chunks.ContainsKey(index)) + component.AtmosPipeChunks.Remove(index); + } + + break; + } + default: + return; + } + + foreach (var (origin, chunk) in modifiedChunks) + { + var newChunk = new AtmosPipeChunk(origin); + newChunk.AtmosPipeData = new Dictionary<(int, string), ulong>(chunk); + + component.AtmosPipeChunks[origin] = newChunk; + } + + component.AtmosDevices.Clear(); + + foreach (var (nuid, atmosDevice) in atmosDevices) + { + component.AtmosDevices[nuid] = atmosDevice; + } + } +} diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml new file mode 100644 index 0000000000..b6fde7592f --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs new file mode 100644 index 0000000000..515f91790f --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs @@ -0,0 +1,455 @@ +using Content.Client.Pinpointer.UI; +using Content.Client.UserInterface.Controls; +using Content.Shared.Atmos.Components; +using Content.Shared.Prototypes; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; +using Robust.Shared.Utility; +using System.Diagnostics.CodeAnalysis; +using System.Linq; + +namespace Content.Client.Atmos.Consoles; + +[GenerateTypedNameReferences] +public sealed partial class AtmosMonitoringConsoleWindow : FancyWindow +{ + private readonly IEntityManager _entManager; + private readonly IPrototypeManager _protoManager; + private readonly SpriteSystem _spriteSystem; + + private EntityUid? _owner; + private NetEntity? _focusEntity; + private int? _focusNetId; + + private bool _autoScrollActive = false; + + private readonly Color _unfocusedDeviceColor = Color.DimGray; + private ProtoId _navMapConsoleProtoId = "NavMapConsole"; + private ProtoId _gasPipeSensorProtoId = "GasPipeSensor"; + + public AtmosMonitoringConsoleWindow(AtmosMonitoringConsoleBoundUserInterface userInterface, EntityUid? owner) + { + RobustXamlLoader.Load(this); + _entManager = IoCManager.Resolve(); + _protoManager = IoCManager.Resolve(); + _spriteSystem = _entManager.System(); + + // Pass the owner to nav map + _owner = owner; + NavMap.Owner = _owner; + + // Set nav map grid uid + var stationName = Loc.GetString("atmos-monitoring-window-unknown-location"); + EntityCoordinates? consoleCoords = null; + + if (_entManager.TryGetComponent(owner, out var xform)) + { + consoleCoords = xform.Coordinates; + NavMap.MapUid = xform.GridUid; + + // Assign station name + if (_entManager.TryGetComponent(xform.GridUid, out var stationMetaData)) + stationName = stationMetaData.EntityName; + + var msg = new FormattedMessage(); + msg.TryAddMarkup(Loc.GetString("atmos-monitoring-window-station-name", ("stationName", stationName)), out _); + + StationName.SetMessage(msg); + } + + else + { + StationName.SetMessage(stationName); + NavMap.Visible = false; + } + + // Set trackable entity selected action + NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; + + // Update nav map + NavMap.ForceNavMapUpdate(); + + // Set tab container headers + MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-monitoring-window-tab-networks")); + + // Set UI toggles + ShowPipeNetwork.OnToggled += _ => OnShowPipeNetworkToggled(); + ShowGasPipeSensors.OnToggled += _ => OnShowGasPipeSensors(); + + // Set nav map colors + if (!_entManager.TryGetComponent(_owner, out var console)) + return; + + NavMap.TileColor = console.NavMapTileColor; + NavMap.WallColor = console.NavMapWallColor; + + // Initalize + UpdateUI(consoleCoords, Array.Empty()); + } + + #region Toggle handling + + private void OnShowPipeNetworkToggled() + { + if (_owner == null) + return; + + if (!_entManager.TryGetComponent(_owner.Value, out var console)) + return; + + NavMap.ShowPipeNetwork = ShowPipeNetwork.Pressed; + + foreach (var (netEnt, device) in console.AtmosDevices) + { + if (device.NavMapBlip == _gasPipeSensorProtoId) + continue; + + if (ShowPipeNetwork.Pressed) + AddTrackedEntityToNavMap(device); + + else + NavMap.TrackedEntities.Remove(netEnt); + } + } + + private void OnShowGasPipeSensors() + { + if (_owner == null) + return; + + if (!_entManager.TryGetComponent(_owner.Value, out var console)) + return; + + foreach (var (netEnt, device) in console.AtmosDevices) + { + if (device.NavMapBlip != _gasPipeSensorProtoId) + continue; + + if (ShowGasPipeSensors.Pressed) + AddTrackedEntityToNavMap(device, true); + + else + NavMap.TrackedEntities.Remove(netEnt); + } + } + + #endregion + + public void UpdateUI + (EntityCoordinates? consoleCoords, + AtmosMonitoringConsoleEntry[] atmosNetworks) + { + if (_owner == null) + return; + + if (!_entManager.TryGetComponent(_owner.Value, out var console)) + return; + + // Reset nav map values + NavMap.TrackedCoordinates.Clear(); + NavMap.TrackedEntities.Clear(); + + if (_focusEntity != null && !console.AtmosDevices.Any(x => x.Key == _focusEntity)) + ClearFocus(); + + // Add tracked entities to the nav map + UpdateNavMapBlips(); + + // Show the monitor location + var consoleNetEnt = _entManager.GetNetEntity(_owner); + + if (consoleCoords != null && consoleNetEnt != null) + { + var proto = _protoManager.Index(_navMapConsoleProtoId); + + if (proto.TexturePaths != null && proto.TexturePaths.Length != 0) + { + var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(proto.TexturePaths[0])); + var blip = new NavMapBlip(consoleCoords.Value, texture, proto.Color, proto.Blinks, proto.Selectable); + NavMap.TrackedEntities[consoleNetEnt.Value] = blip; + } + } + + // Update the nav map + NavMap.ForceNavMapUpdate(); + + // Clear excess children from the tables + while (AtmosNetworksTable.ChildCount > atmosNetworks.Length) + AtmosNetworksTable.RemoveChild(AtmosNetworksTable.GetChild(AtmosNetworksTable.ChildCount - 1)); + + // Update all entries in each table + for (int index = 0; index < atmosNetworks.Length; index++) + { + var entry = atmosNetworks.ElementAt(index); + UpdateUIEntry(entry, index, AtmosNetworksTable, console); + } + } + + private void UpdateNavMapBlips() + { + if (_owner == null || !_entManager.TryGetComponent(_owner.Value, out var console)) + return; + + if (NavMap.Visible) + { + foreach (var (netEnt, device) in console.AtmosDevices) + { + // Update the focus network ID, incase it has changed + if (_focusEntity == netEnt) + { + _focusNetId = device.NetId; + NavMap.FocusNetId = _focusNetId; + } + + var isSensor = device.NavMapBlip == _gasPipeSensorProtoId; + + // Skip network devices if the toggled is off + if (!ShowPipeNetwork.Pressed && !isSensor) + continue; + + // Skip gas pipe sensors if the toggle is off + if (!ShowGasPipeSensors.Pressed && isSensor) + continue; + + AddTrackedEntityToNavMap(device, isSensor); + } + } + } + + private void AddTrackedEntityToNavMap(AtmosDeviceNavMapData metaData, bool isSensor = false) + { + var proto = _protoManager.Index(metaData.NavMapBlip); + + if (proto.TexturePaths == null || proto.TexturePaths.Length == 0) + return; + + var idx = Math.Clamp((int)metaData.Direction / 2, 0, proto.TexturePaths.Length - 1); + var texture = proto.TexturePaths.Length > 0 ? proto.TexturePaths[idx] : proto.TexturePaths[0]; + var color = isSensor ? proto.Color : proto.Color * metaData.PipeColor; + + if (_focusNetId != null && metaData.NetId != _focusNetId) + color *= _unfocusedDeviceColor; + + var blinks = proto.Blinks || _focusEntity == metaData.NetEntity; + var coords = _entManager.GetCoordinates(metaData.NetCoordinates); + var blip = new NavMapBlip(coords, _spriteSystem.Frame0(new SpriteSpecifier.Texture(texture)), color, blinks, proto.Selectable, proto.Scale); + NavMap.TrackedEntities[metaData.NetEntity] = blip; + } + + private void UpdateUIEntry(AtmosMonitoringConsoleEntry data, int index, Control table, AtmosMonitoringConsoleComponent console) + { + // Make new UI entry if required + if (index >= table.ChildCount) + { + var newEntryContainer = new AtmosMonitoringEntryContainer(data); + + // On click + newEntryContainer.FocusButton.OnButtonUp += args => + { + if (_focusEntity == newEntryContainer.Data.NetEntity) + { + ClearFocus(); + } + + else + { + SetFocus(newEntryContainer.Data.NetEntity, newEntryContainer.Data.NetId); + + var coords = _entManager.GetCoordinates(newEntryContainer.Data.Coordinates); + NavMap.CenterToCoordinates(coords); + } + + // Update affected UI elements across all tables + UpdateConsoleTable(console, AtmosNetworksTable, _focusEntity); + }; + + // Add the entry to the current table + table.AddChild(newEntryContainer); + } + + // Update values and UI elements + var tableChild = table.GetChild(index); + + if (tableChild is not AtmosMonitoringEntryContainer) + { + table.RemoveChild(tableChild); + UpdateUIEntry(data, index, table, console); + + return; + } + + var entryContainer = (AtmosMonitoringEntryContainer)tableChild; + entryContainer.UpdateEntry(data, data.NetEntity == _focusEntity); + } + + private void UpdateConsoleTable(AtmosMonitoringConsoleComponent console, Control table, NetEntity? currTrackedEntity) + { + foreach (var tableChild in table.Children) + { + if (tableChild is not AtmosAlarmEntryContainer) + continue; + + var entryContainer = (AtmosAlarmEntryContainer)tableChild; + + if (entryContainer.NetEntity != currTrackedEntity) + entryContainer.RemoveAsFocus(); + + else if (entryContainer.NetEntity == currTrackedEntity) + entryContainer.SetAsFocus(); + } + } + + private void SetTrackedEntityFromNavMap(NetEntity? focusEntity) + { + if (focusEntity == null) + return; + + if (!_entManager.TryGetComponent(_owner, out var console)) + return; + + foreach (var (netEnt, device) in console.AtmosDevices) + { + if (netEnt != focusEntity) + continue; + + if (device.NavMapBlip != _gasPipeSensorProtoId) + return; + + // Set new focus + SetFocus(focusEntity.Value, device.NetId); + + // Get the scroll position of the selected entity on the selected button the UI + ActivateAutoScrollToFocus(); + + break; + } + } + + protected override void FrameUpdate(FrameEventArgs args) + { + AutoScrollToFocus(); + } + + private void ActivateAutoScrollToFocus() + { + _autoScrollActive = true; + } + + private void AutoScrollToFocus() + { + if (!_autoScrollActive) + return; + + var scroll = AtmosNetworksTable.Parent as ScrollContainer; + if (scroll == null) + return; + + if (!TryGetVerticalScrollbar(scroll, out var vScrollbar)) + return; + + if (!TryGetNextScrollPosition(out float? nextScrollPosition)) + return; + + vScrollbar.ValueTarget = nextScrollPosition.Value; + + if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) + _autoScrollActive = false; + } + + private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) + { + vScrollBar = null; + + foreach (var control in scroll.Children) + { + if (control is not VScrollBar) + continue; + + vScrollBar = (VScrollBar)control; + + return true; + } + + return false; + } + + private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollPosition) + { + nextScrollPosition = null; + + var scroll = AtmosNetworksTable.Parent as ScrollContainer; + if (scroll == null) + return false; + + var container = scroll.Children.ElementAt(0) as BoxContainer; + if (container == null || container.Children.Count() == 0) + return false; + + // Exit if the heights of the children haven't been initialized yet + if (!container.Children.Any(x => x.Height > 0)) + return false; + + nextScrollPosition = 0; + + foreach (var control in container.Children) + { + if (control is not AtmosMonitoringEntryContainer) + continue; + + var entry = (AtmosMonitoringEntryContainer)control; + + if (entry.Data.NetEntity == _focusEntity) + return true; + + nextScrollPosition += control.Height; + } + + // Failed to find control + nextScrollPosition = null; + + return false; + } + + private void SetFocus(NetEntity focusEntity, int focusNetId) + { + _focusEntity = focusEntity; + _focusNetId = focusNetId; + NavMap.FocusNetId = focusNetId; + + OnFocusChanged(); + } + + private void ClearFocus() + { + _focusEntity = null; + _focusNetId = null; + NavMap.FocusNetId = null; + + OnFocusChanged(); + } + + private void OnFocusChanged() + { + UpdateNavMapBlips(); + NavMap.ForceNavMapUpdate(); + + if (!_entManager.TryGetComponent(_owner, out var console)) + return; + + for (int index = 0; index < AtmosNetworksTable.ChildCount; index++) + { + var entry = (AtmosMonitoringEntryContainer)AtmosNetworksTable.GetChild(index); + + if (entry == null) + continue; + + UpdateUIEntry(entry.Data, index, AtmosNetworksTable, console); + } + } +} diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringEntryContainer.xaml b/Content.Client/Atmos/Consoles/AtmosMonitoringEntryContainer.xaml new file mode 100644 index 0000000000..6a19f0775f --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringEntryContainer.xaml @@ -0,0 +1,74 @@ + + + + + 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/CartridgeLoader/Cartridges/PsiWatchEntryControl.xaml b/Content.Client/CartridgeLoader/Cartridges/PsiWatchEntryControl.xaml new file mode 100644 index 0000000000..9dafac9cae --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/PsiWatchEntryControl.xaml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/Content.Client/CartridgeLoader/Cartridges/PsiWatchEntryControl.xaml.cs b/Content.Client/CartridgeLoader/Cartridges/PsiWatchEntryControl.xaml.cs new file mode 100644 index 0000000000..0951ba5526 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/PsiWatchEntryControl.xaml.cs @@ -0,0 +1,25 @@ +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +/// +/// ADAPTED FROM SECWATCH - DELTAV +/// + +namespace Content.Client.CartridgeLoader.Cartridges; + +[GenerateTypedNameReferences] +public sealed partial class PsiWatchEntryControl : BoxContainer +{ + public PsiWatchEntryControl(PsiWatchEntry entry) + { + RobustXamlLoader.Load(this); + + Status.Text = Loc.GetString($"psionics-records-status-{entry.Status.ToString().ToLower()}"); + Title.Text = Loc.GetString("psi-watch-entry", ("name", entry.Name), ("job", entry.Job)); + + Reason.Text = entry.Reason ?? Loc.GetString("psi-watch-no-reason"); + } +} diff --git a/Content.Client/CartridgeLoader/Cartridges/PsiWatchUi.cs b/Content.Client/CartridgeLoader/Cartridges/PsiWatchUi.cs new file mode 100644 index 0000000000..40eb2f19e4 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/PsiWatchUi.cs @@ -0,0 +1,31 @@ +using Content.Client.UserInterface.Fragments; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.UserInterface; + +/// +/// ADAPTED FROM SECWATCH - DELTAV +/// + +namespace Content.Client.CartridgeLoader.Cartridges; + +public sealed partial class PsiWatchUi : UIFragment +{ + private PsiWatchUiFragment? _fragment; + + public override Control GetUIFragmentRoot() + { + return _fragment!; + } + + public override void Setup(BoundUserInterface ui, EntityUid? owner) + { + _fragment = new PsiWatchUiFragment(); + } + + public override void UpdateState(BoundUserInterfaceState state) + { + if (state is PsiWatchUiState cast) + _fragment?.UpdateState(cast); + } +} diff --git a/Content.Client/CartridgeLoader/Cartridges/PsiWatchUiFragment.xaml b/Content.Client/CartridgeLoader/Cartridges/PsiWatchUiFragment.xaml new file mode 100644 index 0000000000..25181e347b --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/PsiWatchUiFragment.xaml @@ -0,0 +1,13 @@ + + + + diff --git a/Content.Client/CartridgeLoader/Cartridges/PsiWatchUiFragment.xaml.cs b/Content.Client/CartridgeLoader/Cartridges/PsiWatchUiFragment.xaml.cs new file mode 100644 index 0000000000..e446581317 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/PsiWatchUiFragment.xaml.cs @@ -0,0 +1,29 @@ +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +/// +/// ADAPTED FROM SECWATCH - DELTAV +/// + +namespace Content.Client.CartridgeLoader.Cartridges; + +[GenerateTypedNameReferences] +public sealed partial class PsiWatchUiFragment : BoxContainer +{ + public PsiWatchUiFragment() + { + RobustXamlLoader.Load(this); + } + + public void UpdateState(PsiWatchUiState state) + { + NoEntries.Visible = state.Entries.Count == 0; + Entries.RemoveAllChildren(); + foreach (var entry in state.Entries) + { + Entries.AddChild(new PsiWatchEntryControl(entry)); + } + } +} diff --git a/Content.Client/Changelog/ChangelogWindow.xaml.cs b/Content.Client/Changelog/ChangelogWindow.xaml.cs index 9b7fd75436..cb07e16a9c 100644 --- a/Content.Client/Changelog/ChangelogWindow.xaml.cs +++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs @@ -8,6 +8,8 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; using Robust.Client.UserInterface.XAML; +using Robust.Shared; +using Robust.Shared.Configuration; using Robust.Shared.Console; namespace Content.Client.Changelog @@ -15,8 +17,9 @@ namespace Content.Client.Changelog [GenerateTypedNameReferences] public sealed partial class ChangelogWindow : FancyWindow { - [Dependency] private readonly IClientAdminManager _adminManager = default!; [Dependency] private readonly ChangelogManager _changelog = default!; + [Dependency] private readonly IClientAdminManager _adminManager = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; public ChangelogWindow() { @@ -67,8 +70,22 @@ private async void PopulateChangelog() Tabs.SetTabTitle(i++, Loc.GetString($"changelog-tab-title-{changelog.Name}")); } - var version = typeof(ChangelogWindow).Assembly.GetName().Version ?? new Version(1, 0); - VersionLabel.Text = Loc.GetString("changelog-version-tag", ("version", version.ToString())); + // Try to get the current version from the build.json file + var version = _cfg.GetCVar(CVars.BuildVersion); + var forkId = _cfg.GetCVar(CVars.BuildForkId); + + var versionText = Loc.GetString("changelog-version-unknown"); + + // Make sure these aren't empty, like in a dev env + if (!string.IsNullOrEmpty(version) && !string.IsNullOrEmpty(forkId)) + { + versionText = Loc.GetString("changelog-version-tag", + ("fork", forkId), + ("version", version[..7])); // Only show the first 7 characters + } + + // if else statements are ugly, shut up + VersionLabel.Text = versionText; TabsUpdated(); } diff --git a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs index 57bd34ed06..ff4bd0b710 100644 --- a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs @@ -30,8 +30,6 @@ protected override void Open() // Setup static button actions. _window.InputEjectButton.OnPressed += _ => SendMessage( new ItemSlotButtonPressedEvent(SharedChemMaster.InputSlotName)); - _window.OutputEjectButton.OnPressed += _ => SendMessage( - new ItemSlotButtonPressedEvent(SharedChemMaster.OutputSlotName)); _window.BufferTransferButton.OnPressed += _ => SendMessage( new ChemMasterSetModeMessage(ChemMasterMode.Transfer)); _window.BufferDiscardButton.OnPressed += _ => SendMessage( @@ -49,11 +47,9 @@ protected override void Open() _window.PillTypeButtons[i].OnPressed += _ => SendMessage(new ChemMasterSetPillTypeMessage(pillType)); } - _window.OnReagentButtonPressed += (_, button, amount) => SendMessage(new ChemMasterReagentAmountButtonMessage(button.Id, amount, button.IsBuffer)); + _window.OnReagentButtonPressed += (_, button, amount, isOutput) => SendMessage(new ChemMasterReagentAmountButtonMessage(button.Id, amount, button.IsBuffer, isOutput)); _window.OnSortMethodChanged += sortMethod => SendMessage(new ChemMasterSortMethodUpdated(sortMethod)); _window.OnTransferAmountChanged += amount => SendMessage(new ChemMasterTransferringAmountUpdated(amount)); - - } /// diff --git a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml index 94e7a0e84b..99dee58735 100644 --- a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml +++ b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml @@ -2,136 +2,147 @@ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" - MinSize="500 770" + MinSize="800 00" Title="{Loc 'chem-master-bound-user-interface-title'}"> - - - - - + diff --git a/Content.Client/Mapping/MappingSpawnButton.xaml.cs b/Content.Client/Mapping/MappingSpawnButton.xaml.cs index 29fb884ed6..2abfee0825 100644 --- a/Content.Client/Mapping/MappingSpawnButton.xaml.cs +++ b/Content.Client/Mapping/MappingSpawnButton.xaml.cs @@ -1,4 +1,6 @@ -using Robust.Client.AutoGenerated; +using System.Numerics; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.XAML; @@ -7,10 +9,81 @@ namespace Content.Client.Mapping; [GenerateTypedNameReferences] public sealed partial class MappingSpawnButton : Control { - public MappingPrototype? Prototype; + private MappingPrototype? _prototype; + + public MappingPrototype? Prototype + { + get => _prototype; + set + { + _prototype = value; + if (_prototype != null) + ToggleFavorite(_prototype.Favorite); + } + } public MappingSpawnButton() { RobustXamlLoader.Load(this); + + CollapseTexture.TexturePath = "/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png"; + FavoriteTexture.TexturePath = "/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png"; + OnResized += OnResizedGallery; + FavoriteButton.OnPressed += args => ToggleFavorite(args.Button.Pressed); + } + + private void OnResizedGallery() + { + if (Parent != null) + ChildrenPrototypesGallery.MaxGridWidth = Math.Max(1, Parent.Width - ChildrenPrototypesGallery.Margin.Left ); + } + + public void Gallery() + { + Label.Visible = false; + Button.AddStyleClass("ButtonSquare"); + SetWidth = 48; + SetHeight = 48; + // TODO: I don't know how to successfully add a favorite button to the gallery layout + FavoriteButton.Visible = false; + } + + public void SetTextures(List textures) + { + Button.RemoveStyleClass("OpenBoth"); + Button.AddStyleClass("OpenLeft"); + CollapseButton.RemoveStyleClass("OpenRight"); + CollapseButton.AddStyleClass("ButtonSquare"); + Texture.Visible = true; + Texture.Textures.AddRange(textures); + + foreach (var texture in textures) + { + Texture.TextureScale = new Vector2(Texture.SetSize.X / texture.Height, Texture.SetSize.X / texture.Height); + } + + Texture.InvalidateMeasure(); + } + + public void Collapse() + { + CollapseButton.Pressed = false; + ChildrenPrototypes.DisposeAllChildren(); + ChildrenPrototypesGallery.DisposeAllChildren(); + CollapseTexture.TexturePath = "/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png"; + } + + public void UnCollapse() + { + CollapseButton.Pressed = true; + CollapseTexture.TexturePath = "/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png"; + } + + public void ToggleFavorite(bool enabled) + { + FavoriteButton.Pressed = enabled; + FavoriteTexture.TexturePath = FavoriteButton.Pressed + ? "/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png" + : "/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png"; } } diff --git a/Content.Client/Mapping/MappingState.cs b/Content.Client/Mapping/MappingState.cs index bcc739fe4f..edd23db436 100644 --- a/Content.Client/Mapping/MappingState.cs +++ b/Content.Client/Mapping/MappingState.cs @@ -1,16 +1,19 @@ using System.Linq; -using System.Numerics; using Content.Client.Administration.Managers; using Content.Client.ContextMenu.UI; using Content.Client.Decals; using Content.Client.Gameplay; +using Content.Client.Maps; +using Content.Client.SubFloor; using Content.Client.UserInterface.Controls; using Content.Client.UserInterface.Systems.Gameplay; using Content.Client.Verbs; using Content.Shared.Administration; using Content.Shared.Decals; using Content.Shared.Input; +using Content.Shared.Mapping; using Content.Shared.Maps; +using Robust.Client.Console; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Input; @@ -19,19 +22,20 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.CustomControls; using Robust.Shared.Enums; +using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.Markdown.Sequence; using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Timing; using Robust.Shared.Utility; -using static System.StringComparison; using static Robust.Client.UserInterface.Controls.BaseButton; -using static Robust.Client.UserInterface.Controls.LineEdit; using static Robust.Client.UserInterface.Controls.OptionButton; using static Robust.Shared.Input.Binding.PointerInputCmdHandler; +using Vector2 = System.Numerics.Vector2; namespace Content.Client.Mapping; @@ -39,6 +43,7 @@ public sealed class MappingState : GameplayStateBase { [Dependency] private readonly IClientAdminManager _admin = default!; [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; [Dependency] private readonly IEntityNetworkManager _entityNetwork = default!; [Dependency] private readonly IInputManager _input = default!; [Dependency] private readonly ILogManager _log = default!; @@ -49,6 +54,8 @@ public sealed class MappingState : GameplayStateBase [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IResourceCache _resources = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IClientConsoleHost _consoleHost = default!; + [Dependency] private readonly ILocalizationManager _locale = default!; private EntityMenuUIController _entityMenuController = default!; @@ -56,23 +63,32 @@ public sealed class MappingState : GameplayStateBase private SpriteSystem _sprite = default!; private TransformSystem _transform = default!; private VerbSystem _verbs = default!; + private GridDraggingSystem _gridDrag = default!; + private MapSystem _map = default!; + private SharedDecalSystem _sharedDecal = default!; + + // 1 off in case something else uses these colors since we use them to compare + private static readonly Color PickColor = new(1, 255, 0); + private static readonly Color DeleteColor = new(255, 1, 0); + private static readonly Color EraseDecalColor = Color.Red.WithAlpha(0.2f); + private static readonly Color GridSelectColor = Color.Green.WithAlpha(0.2f); + private static readonly Color GridRemoveColor = Color.Red.WithAlpha(0.2f); private readonly ISawmill _sawmill; private readonly GameplayStateLoadController _loadController; private bool _setup; - private readonly List _allPrototypes = new(); + private readonly Dictionary> _allPrototypes = new(); private readonly Dictionary _allPrototypesDict = new(); private readonly Dictionary> _idDict = new(); - private readonly List _prototypes = new(); private (TimeSpan At, MappingSpawnButton Button)? _lastClicked; - private Control? _scrollTo; - private bool _updatePlacement; - private bool _updateEraseDecal; + private (Control, MappingPrototypeList)? _scrollTo; + private bool _tileErase; + private int _decalIndex; private MappingScreen Screen => (MappingScreen) UserInterfaceManager.ActiveScreen!; private MainViewport Viewport => UserInterfaceManager.ActiveScreen!.GetWidget()!; - public CursorState State { get; set; } + public CursorMeta Meta { get; } public MappingState() { @@ -80,6 +96,8 @@ public MappingState() _sawmill = _log.GetSawmill("mapping"); _loadController = UserInterfaceManager.GetUIController(); + + Meta = new CursorMeta(); } protected override void Startup() @@ -94,86 +112,90 @@ protected override void Startup() context.AddFunction(ContentKeyFunctions.MappingUnselect); context.AddFunction(ContentKeyFunctions.SaveMap); context.AddFunction(ContentKeyFunctions.MappingEnablePick); + context.AddFunction(ContentKeyFunctions.MappingEnableDecalPick); context.AddFunction(ContentKeyFunctions.MappingEnableDelete); context.AddFunction(ContentKeyFunctions.MappingPick); context.AddFunction(ContentKeyFunctions.MappingRemoveDecal); context.AddFunction(ContentKeyFunctions.MappingCancelEraseDecal); context.AddFunction(ContentKeyFunctions.MappingOpenContextMenu); + context.AddFunction(ContentKeyFunctions.MouseMiddle); Screen.DecalSystem = _decal; - Screen.Prototypes.SearchBar.OnTextChanged += OnSearch; - Screen.Prototypes.CollapseAllButton.OnPressed += OnCollapseAll; - Screen.Prototypes.ClearSearchButton.OnPressed += OnClearSearch; - Screen.Prototypes.GetPrototypeData += OnGetData; - Screen.Prototypes.SelectionChanged += OnSelected; - Screen.Prototypes.CollapseToggled += OnCollapseToggled; + + Screen.Entities.GetPrototypeData += OnGetData; + Screen.Entities.SelectionChanged += OnSelected; + Screen.Tiles.GetPrototypeData += OnGetData; + Screen.Tiles.SelectionChanged += OnSelected; + Screen.Decals.GetPrototypeData += OnGetData; + Screen.Decals.SelectionChanged += OnSelected; + Screen.Pick.OnPressed += OnPickPressed; - Screen.Delete.OnPressed += OnDeletePressed; + Screen.PickDecal.OnPressed += OnPickDecalPressed; Screen.EntityReplaceButton.OnToggled += OnEntityReplacePressed; Screen.EntityPlacementMode.OnItemSelected += OnEntityPlacementSelected; Screen.EraseEntityButton.OnToggled += OnEraseEntityPressed; + Screen.EraseTileButton.OnToggled += OnEraseTilePressed; Screen.EraseDecalButton.OnToggled += OnEraseDecalPressed; + Screen.FixGridAtmos.OnPressed += OnFixGridAtmosPressed; + Screen.RemoveGrid.OnPressed += OnRemoveGridPressed; + Screen.MoveGrid.OnPressed += OnMoveGridPressed; + Screen.GridVV.OnPressed += OnGridVVPressed; + Screen.PipesColor.OnPressed += OnPipesColorPressed; + Screen.ChatButton.OnPressed += OnChatButtonPressed; _placement.PlacementChanged += OnPlacementChanged; + _mapping.OnFavoritePrototypesLoaded += OnFavoritesLoaded; CommandBinds.Builder .Bind(ContentKeyFunctions.MappingUnselect, new PointerInputCmdHandler(HandleMappingUnselect, outsidePrediction: true)) .Bind(ContentKeyFunctions.SaveMap, new PointerInputCmdHandler(HandleSaveMap, outsidePrediction: true)) .Bind(ContentKeyFunctions.MappingEnablePick, new PointerStateInputCmdHandler(HandleEnablePick, HandleDisablePick, outsidePrediction: true)) + .Bind(ContentKeyFunctions.MappingEnableDecalPick, new PointerStateInputCmdHandler(HandleEnableDecalPick, HandleDisableDecalPick, outsidePrediction: true)) .Bind(ContentKeyFunctions.MappingEnableDelete, new PointerStateInputCmdHandler(HandleEnableDelete, HandleDisableDelete, outsidePrediction: true)) .Bind(ContentKeyFunctions.MappingPick, new PointerInputCmdHandler(HandlePick, outsidePrediction: true)) .Bind(ContentKeyFunctions.MappingRemoveDecal, new PointerInputCmdHandler(HandleEditorCancelPlace, outsidePrediction: true)) .Bind(ContentKeyFunctions.MappingCancelEraseDecal, new PointerInputCmdHandler(HandleCancelEraseDecal, outsidePrediction: true)) .Bind(ContentKeyFunctions.MappingOpenContextMenu, new PointerInputCmdHandler(HandleOpenContextMenu, outsidePrediction: true)) + .Bind(ContentKeyFunctions.MouseMiddle, new PointerInputCmdHandler(HandleMouseMiddle, outsidePrediction: true)) + .Bind(EngineKeyFunctions.Use, new PointerInputCmdHandler(HandleUse, outsidePrediction: true)) .Register(); _overlays.AddOverlay(new MappingOverlay(this)); _prototypeManager.PrototypesReloaded += OnPrototypesReloaded; - Screen.Prototypes.UpdateVisible(_prototypes); - } - - private void OnPrototypesReloaded(PrototypesReloadedEventArgs obj) - { - if (!obj.WasModified() && - !obj.WasModified() && - !obj.WasModified()) - { - return; - } - + _mapping.LoadFavorites(); ReloadPrototypes(); - } - - private bool HandleOpenContextMenu(in PointerInputCmdArgs args) - { - Deselect(); - - var coords = args.Coordinates.ToMap(_entityManager, _transform); - if (_verbs.TryGetEntityMenuEntities(coords, out var entities)) - _entityMenuController.OpenRootMenu(entities); - - return true; + UpdateLocale(); } protected override void Shutdown() { + SaveFavorites(); CommandBinds.Unregister(); - Screen.Prototypes.SearchBar.OnTextChanged -= OnSearch; - Screen.Prototypes.CollapseAllButton.OnPressed -= OnCollapseAll; - Screen.Prototypes.ClearSearchButton.OnPressed -= OnClearSearch; - Screen.Prototypes.GetPrototypeData -= OnGetData; - Screen.Prototypes.SelectionChanged -= OnSelected; - Screen.Prototypes.CollapseToggled -= OnCollapseToggled; + Screen.Entities.GetPrototypeData -= OnGetData; + Screen.Entities.SelectionChanged -= OnSelected; + Screen.Tiles.GetPrototypeData -= OnGetData; + Screen.Tiles.SelectionChanged -= OnSelected; + Screen.Decals.GetPrototypeData -= OnGetData; + Screen.Decals.SelectionChanged -= OnSelected; + Screen.Pick.OnPressed -= OnPickPressed; - Screen.Delete.OnPressed -= OnDeletePressed; + Screen.PickDecal.OnPressed -= OnPickDecalPressed; Screen.EntityReplaceButton.OnToggled -= OnEntityReplacePressed; Screen.EntityPlacementMode.OnItemSelected -= OnEntityPlacementSelected; Screen.EraseEntityButton.OnToggled -= OnEraseEntityPressed; + Screen.EraseTileButton.OnToggled -= OnEraseTilePressed; Screen.EraseDecalButton.OnToggled -= OnEraseDecalPressed; + Screen.FixGridAtmos.OnPressed -= OnFixGridAtmosPressed; + Screen.RemoveGrid.OnPressed -= OnRemoveGridPressed; + Screen.MoveGrid.OnPressed -= OnMoveGridPressed; + Screen.GridVV.OnPressed -= OnGridVVPressed; + Screen.PipesColor.OnPressed -= OnPipesColorPressed; + Screen.ChatButton.OnPressed -= OnChatButtonPressed; _placement.PlacementChanged -= OnPlacementChanged; _prototypeManager.PrototypesReloaded -= OnPrototypesReloaded; + _mapping.OnFavoritePrototypesLoaded -= OnFavoritesLoaded; UserInterfaceManager.ClearWindows(); _loadController.UnloadScreen(); @@ -183,6 +205,7 @@ protected override void Shutdown() context.RemoveFunction(ContentKeyFunctions.MappingUnselect); context.RemoveFunction(ContentKeyFunctions.SaveMap); context.RemoveFunction(ContentKeyFunctions.MappingEnablePick); + context.RemoveFunction(ContentKeyFunctions.MappingEnableDecalPick); context.RemoveFunction(ContentKeyFunctions.MappingEnableDelete); context.RemoveFunction(ContentKeyFunctions.MappingPick); context.RemoveFunction(ContentKeyFunctions.MappingRemoveDecal); @@ -207,15 +230,41 @@ private void EnsureSetup() _sprite = _entityManager.System(); _transform = _entityManager.System(); _verbs = _entityManager.System(); - ReloadPrototypes(); + _gridDrag = _entityManager.System(); + _map = _entityManager.System(); + _sharedDecal = _entityManager.System(); } - private void ReloadPrototypes() + private void UpdateLocale() { - var entities = new MappingPrototype(null, Loc.GetString("mapping-entities")) { Children = new List() }; - _prototypes.Add(entities); + if (_input.TryGetKeyBinding(ContentKeyFunctions.MappingEnablePick, out var enablePickBinding)) + Screen.Pick.ToolTip = Loc.GetString("mapping-pick-tooltip", ("key", enablePickBinding.GetKeyString())); + if (_input.TryGetKeyBinding(ContentKeyFunctions.MappingEnableDecalPick, out var enableDecalPickBinding)) + Screen.PickDecal.ToolTip = Loc.GetString("mapping-pick-decal-tooltip", ("key", enableDecalPickBinding.GetKeyString())); + + if (_input.TryGetKeyBinding(ContentKeyFunctions.MappingEnableDelete, out var enableDeleteBinding)) + Screen.EraseEntityButton.ToolTip = Loc.GetString("mapping-erase-entity-tooltip", ("key", enableDeleteBinding.GetKeyString())); + } + + private void SaveFavorites() + { + Screen.Entities.FavoritesPrototype.Children ??= new List(); + Screen.Tiles.FavoritesPrototype.Children ??= new List(); + Screen.Decals.FavoritesPrototype.Children ??= new List(); + + var children = Screen.Entities.FavoritesPrototype.Children + .Union(Screen.Tiles.FavoritesPrototype.Children) + .Union(Screen.Decals.FavoritesPrototype.Children) + .ToList(); + + _mapping.SaveFavorites(children); + } + + private void ReloadPrototypes() + { var mappings = new Dictionary(); + var entities = new MappingPrototype(null, Loc.GetString("mapping-entities")) { Children = new List() }; foreach (var entity in _prototypeManager.EnumeratePrototypes()) { Register(entity, entity.ID, entities); @@ -225,8 +274,6 @@ private void ReloadPrototypes() mappings.Clear(); var tiles = new MappingPrototype(null, Loc.GetString("mapping-tiles")) { Children = new List() }; - _prototypes.Add(tiles); - foreach (var tile in _prototypeManager.EnumeratePrototypes()) { Register(tile, tile.ID, tiles); @@ -236,39 +283,98 @@ private void ReloadPrototypes() mappings.Clear(); var decals = new MappingPrototype(null, Loc.GetString("mapping-decals")) { Children = new List() }; - _prototypes.Add(decals); - foreach (var decal in _prototypeManager.EnumeratePrototypes()) { - Register(decal, decal.ID, decals); + if (decal.ShowMenu) + Register(decal, decal.ID, decals); } Sort(mappings, decals); mappings.Clear(); + + var entitiesTemplate = new MappingPrototype(null, Loc.GetString("mapping-template")); + var tilesTemplate = new MappingPrototype(null, Loc.GetString("mapping-template")); + var decalsTemplate = new MappingPrototype(null, Loc.GetString("mapping-template")); + + foreach (var favorite in _prototypeManager.EnumeratePrototypes()) + { + switch (favorite.RootType) + { + case TemplateType.Entity: + RegisterTemplates(favorite, favorite.RootType, entitiesTemplate); + break; + case TemplateType.Tile: + RegisterTemplates(favorite, favorite.RootType, tilesTemplate); + break; + case TemplateType.Decal: + RegisterTemplates(favorite, favorite.RootType, decalsTemplate); + break; + } + } + + Sort(mappings, entitiesTemplate); + mappings.Clear(); + Screen.Entities.UpdateVisible( + new (entitiesTemplate.Children?.Count > 0 ? [entitiesTemplate, entities] : [entities]), + _allPrototypes.GetOrNew(typeof(EntityPrototype))); + + Sort(mappings, tilesTemplate); + mappings.Clear(); + Screen.Tiles.UpdateVisible( + new (tilesTemplate.Children?.Count > 0 ? [tilesTemplate, tiles] : [tiles]), + _allPrototypes.GetOrNew(typeof(ContentTileDefinition))); + + Sort(mappings, decalsTemplate); + mappings.Clear(); + Screen.Decals.UpdateVisible( + new (decalsTemplate.Children?.Count > 0 ? [decalsTemplate, decals] : [decals]), + _allPrototypes.GetOrNew(typeof(DecalPrototype))); } - private void Sort(Dictionary prototypes, MappingPrototype topLevel) + private void RegisterTemplates(MappingTemplatePrototype templateProto, TemplateType? type, MappingPrototype toplevel) { - static int Compare(MappingPrototype a, MappingPrototype b) + if (type == null) { - return string.Compare(a.Name, b.Name, OrdinalIgnoreCase); + if (templateProto.RootType == null) + return; + type = templateProto.RootType; } - topLevel.Children ??= new List(); + MappingPrototype? proto = null; + switch (type) + { + case TemplateType.Decal: + if (_idDict.GetOrNew(typeof(DecalPrototype)).TryGetValue(templateProto.ID, out var decal)) + proto = decal; + break; + case TemplateType.Tile: + if (_idDict.GetOrNew(typeof(ContentTileDefinition)).TryGetValue(templateProto.ID, out var tile)) + proto = tile; + break; + case TemplateType.Entity: + if (_idDict.GetOrNew(typeof(EntityPrototype)).TryGetValue(templateProto.ID, out var entity)) + proto = entity; + break; + } - foreach (var prototype in prototypes.Values) + if (proto == null) { - if (prototype.Parents == null && prototype != topLevel) - { - prototype.Parents = new List { topLevel }; - topLevel.Children.Add(prototype); - } + var name = templateProto.ID; + if (_locale.TryGetString($"mapping-template-{templateProto.ID.ToLower()}", out var locale)) + name = locale; + proto = new MappingPrototype(null, name); + } - prototype.Parents?.Sort(Compare); - prototype.Children?.Sort(Compare); + proto.Parents ??= new List(); + proto.Parents.Add(toplevel); + + foreach (var child in templateProto.Children) + { + RegisterTemplates(child, type, proto); } - topLevel.Children.Sort(Compare); + toplevel.Children ??= new List(); + toplevel.Children.Add(proto); } private MappingPrototype? Register(T? prototype, string id, MappingPrototype topLevel) where T : class, IPrototype, IInheritingPrototype @@ -306,7 +412,7 @@ static int Compare(MappingPrototype a, MappingPrototype b) name = $"{name} [{suffix.Value}]"; mapping = new MappingPrototype(prototype, name); - _allPrototypes.Add(mapping); + _allPrototypes.GetOrNew(typeof(T)).Add(mapping); ids.Add(id, mapping); if (node.TryGet("parent", out ValueDataNode? parentValue)) @@ -363,7 +469,7 @@ static int Compare(MappingPrototype a, MappingPrototype b) name = $"{name} [{entity.EditorSuffix}]"; mapping = new MappingPrototype(prototype, name); - _allPrototypes.Add(mapping); + _allPrototypes.GetOrNew(typeof(T)).Add(mapping); _allPrototypesDict.Add(prototype, mapping); ids.Add(prototype.ID, mapping); } @@ -394,59 +500,168 @@ static int Compare(MappingPrototype a, MappingPrototype b) } } - private void OnPlacementChanged(object? sender, EventArgs e) + private void Sort(Dictionary prototypes, MappingPrototype topLevel) { - _updatePlacement = true; - } + static int Compare(MappingPrototype a, MappingPrototype b) + { + return string.Compare(a.Name, b.Name, StringComparison.OrdinalIgnoreCase); + } - protected override void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) - { - if (args.Viewport == null) - base.OnKeyBindStateChanged(new ViewportBoundKeyEventArgs(args.KeyEventArgs, Viewport.Viewport)); - else - base.OnKeyBindStateChanged(args); + topLevel.Children ??= new List(); + + foreach (var prototype in prototypes.Values) + { + if (prototype.Parents == null && prototype != topLevel) + { + prototype.Parents = new List { topLevel }; + topLevel.Children.Add(prototype); + } + + prototype.Parents?.Sort(Compare); + prototype.Children?.Sort(Compare); + } + + topLevel.Children.Sort(Compare); } - private void OnSearch(LineEditEventArgs args) + private void Deselect() { - if (string.IsNullOrEmpty(args.Text)) + if (Screen.Entities.Selected is { } entitySelected) { - Screen.Prototypes.PrototypeList.Visible = true; - Screen.Prototypes.SearchList.Visible = false; - return; + entitySelected.Button.Pressed = false; + Screen.Entities.Selected = null; + + if (entitySelected.Prototype?.Prototype is EntityPrototype) + _placement.Clear(); } - var matches = new List(); - foreach (var prototype in _allPrototypes) + if (Screen.Tiles.Selected is { } tileSelected) { - if (prototype.Name.Contains(args.Text, OrdinalIgnoreCase)) - matches.Add(prototype); + tileSelected.Button.Pressed = false; + Screen.Tiles.Selected = null; + + if (tileSelected.Prototype?.Prototype is ContentTileDefinition) + _placement.Clear(); } - matches.Sort(static (a, b) => string.Compare(a.Name, b.Name, OrdinalIgnoreCase)); + if (Screen.Decals.Selected is { } decalSelected) + { + decalSelected.Button.Pressed = false; + Screen.Decals.Selected = null; - Screen.Prototypes.PrototypeList.Visible = false; - Screen.Prototypes.SearchList.Visible = true; - Screen.Prototypes.Search(matches); + if (decalSelected.Prototype?.Prototype is DecalPrototype) + _decal.SetActive(false); + } } - private void OnCollapseAll(ButtonEventArgs args) + private void EnableEntityEraser() { - foreach (var child in Screen.Prototypes.PrototypeList.Children) - { - if (child is not MappingSpawnButton button) - continue; + if (_placement.Eraser) + return; + + Deselect(); + _placement.Clear(); + _placement.ToggleEraser(); + + if (Screen.EraseDecalButton.Pressed) + Screen.EraseDecalButton.Pressed = false; + + Screen.UnPressActionsExcept(Screen.EraseEntityButton); + Screen.EntityPlacementMode.Disabled = true; + + Meta.State = CursorState.Entity; + Meta.Color = DeleteColor; + } - Collapse(button); + private void DisableEntityEraser() + { + if (!_placement.Eraser) + return; + + _placement.ToggleEraser(); + Meta.State = CursorState.None; + Screen.EntityPlacementMode.Disabled = false; + } + + #region On Event + private void OnPrototypesReloaded(PrototypesReloadedEventArgs obj) + { + if (!obj.WasModified() && + !obj.WasModified() && + !obj.WasModified() && + !obj.WasModified()) + { + return; } - Screen.Prototypes.ScrollContainer.SetScrollValue(new Vector2(0, 0)); + SaveFavorites(); + ReloadPrototypes(); + } + + private void OnPlacementChanged(object? sender, EventArgs e) + { + if (!_placement.IsActive && _decal.GetActiveDecal().Decal == null) + Deselect(); + + Screen.EraseEntityButton.Pressed = _placement.Eraser; + Screen.EntityPlacementMode.Disabled = _placement.Eraser; } - private void OnClearSearch(ButtonEventArgs obj) + private void OnFavoritesLoaded(List prototypes) { - Screen.Prototypes.SearchBar.Text = string.Empty; - OnSearch(new LineEditEventArgs(Screen.Prototypes.SearchBar, string.Empty)); + Screen.Entities.FavoritesPrototype.Children = new List(); + Screen.Decals.FavoritesPrototype.Children = new List(); + Screen.Tiles.FavoritesPrototype.Children = new List(); + + foreach (var prototype in prototypes) + { + switch (prototype) + { + case EntityPrototype entityPrototype: + { + if (_idDict.GetOrNew(typeof(EntityPrototype)).TryGetValue(entityPrototype.ID, out var entity)) + { + Screen.Entities.FavoritesPrototype.Children.Add(entity); + entity.Parents ??= new List(); + entity.Parents.Add(Screen.Entities.FavoritesPrototype); + entity.Favorite = true; + } + break; + } + case DecalPrototype decalPrototype: + { + if (_idDict.GetOrNew(typeof(DecalPrototype)).TryGetValue(decalPrototype.ID, out var decal)) + { + Screen.Decals.FavoritesPrototype.Children.Add(decal); + decal.Parents ??= new List(); + decal.Parents.Add(Screen.Decals.FavoritesPrototype); + decal.Favorite = true; + } + break; + } + case ContentTileDefinition tileDefinition: + { + if (_idDict.GetOrNew(typeof(ContentTileDefinition)).TryGetValue(tileDefinition.ID, out var tile)) + { + Screen.Tiles.FavoritesPrototype.Children.Add(tile); + tile.Parents ??= new List(); + tile.Parents.Add(Screen.Tiles.FavoritesPrototype); + tile.Favorite = true; + } + break; + } + } + } + } + + protected override void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) + { + if (args.Viewport == null) + base.OnKeyBindStateChanged(new ViewportBoundKeyEventArgs(args.KeyEventArgs, Viewport.Viewport)); + else + base.OnKeyBindStateChanged(args); + + UpdateLocale(); } private void OnGetData(IPrototype prototype, List textures) @@ -466,7 +681,7 @@ private void OnGetData(IPrototype prototype, List textures) } } - private void OnSelected(MappingPrototype mapping) + private void OnSelected(MappingPrototypeList list, MappingPrototype mapping) { if (mapping.Prototype == null) return; @@ -484,7 +699,7 @@ private void OnSelected(MappingPrototype mapping) _lastClicked = null; Control? last = null; - var children = Screen.Prototypes.PrototypeList.Children; + var children = list.PrototypeList.Children.ToList(); foreach (var prototype in chain) { foreach (var child in children) @@ -492,20 +707,22 @@ private void OnSelected(MappingPrototype mapping) if (child is MappingSpawnButton button && button.Prototype == prototype) { - UnCollapse(button); - OnSelected(button, prototype.Prototype); - children = button.ChildrenPrototypes.Children; + button.CollapseButton.Pressed = true; + list.ToggleCollapse(button); + OnSelected(list, button, prototype.Prototype); + children = button.ChildrenPrototypes.Children.ToList(); + children.AddRange(button.ChildrenPrototypesGallery.Children); last = child; break; } } } - if (last != null && Screen.Prototypes.PrototypeList.Visible) - _scrollTo = last; + if (last != null && list.PrototypeList.Visible) + _scrollTo = (last, list); } - private void OnSelected(MappingSpawnButton button, IPrototype? prototype) + private void OnSelected(MappingPrototypeList list, MappingSpawnButton button, IPrototype? prototype) { var time = _timing.CurTime; if (prototype is DecalPrototype) @@ -515,13 +732,13 @@ private void OnSelected(MappingSpawnButton button, IPrototype? prototype) if (_lastClicked is { } lastClicked && lastClicked.Button == button && lastClicked.At > time - TimeSpan.FromSeconds(0.333) && - string.IsNullOrEmpty(Screen.Prototypes.SearchBar.Text) && + string.IsNullOrEmpty(list.SearchBar.Text) && button.CollapseButton.Visible) { button.CollapseButton.Pressed = !button.CollapseButton.Pressed; - ToggleCollapse(button); + list.ToggleCollapse(button); button.Button.Pressed = true; - Screen.Prototypes.Selected = button; + list.Selected = button; _lastClicked = null; return; } @@ -539,14 +756,14 @@ private void OnSelected(MappingSpawnButton button, IPrototype? prototype) if (button.Prototype == null) return; - if (Screen.Prototypes.Selected is { } oldButton && + if (list.Selected is { } oldButton && oldButton != button) { Deselect(); } - Screen.EntityContainer.Visible = false; - Screen.DecalContainer.Visible = false; + Meta.State = CursorState.None; + Screen.UnPressActionsExcept(new Control()); switch (prototype) { @@ -561,7 +778,6 @@ private void OnSelected(MappingSpawnButton button, IPrototype? prototype) IsTile = false }; - Screen.EntityContainer.Visible = true; _decal.SetActive(false); _placement.BeginPlacing(placement); break; @@ -570,8 +786,7 @@ private void OnSelected(MappingSpawnButton button, IPrototype? prototype) _placement.Clear(); _decal.SetActive(true); - _decal.UpdateDecalInfo(decal.ID, Color.White, 0, true, 0, false); - Screen.DecalContainer.Visible = true; + Screen.SelectDecal(decal.ID); break; case ContentTileDefinition tile: { @@ -591,57 +806,11 @@ private void OnSelected(MappingSpawnButton button, IPrototype? prototype) break; } - Screen.Prototypes.Selected = button; + list.Selected = button; button.Button.Pressed = true; } - private void Deselect() - { - if (Screen.Prototypes.Selected is { } selected) - { - selected.Button.Pressed = false; - Screen.Prototypes.Selected = null; - - if (selected.Prototype?.Prototype is DecalPrototype) - { - _decal.SetActive(false); - Screen.DecalContainer.Visible = false; - } - - if (selected.Prototype?.Prototype is EntityPrototype) - { - _placement.Clear(); - } - - if (selected.Prototype?.Prototype is ContentTileDefinition) - { - _placement.Clear(); - } - } - } - - private void OnCollapseToggled(MappingSpawnButton button, ButtonToggledEventArgs args) - { - ToggleCollapse(button); - } - - private void OnPickPressed(ButtonEventArgs args) - { - if (args.Button.Pressed) - EnablePick(); - else - DisablePick(); - } - - private void OnDeletePressed(ButtonEventArgs obj) - { - if (obj.Button.Pressed) - EnableDelete(); - else - DisableDelete(); - } - private void OnEntityReplacePressed(ButtonToggledEventArgs args) { _placement.Replacement = args.Pressed; @@ -672,70 +841,209 @@ private void OnEraseEntityPressed(ButtonEventArgs args) return; if (args.Button.Pressed) - EnableEraser(); + EnableEntityEraser(); else - DisableEraser(); + DisableEntityEraser(); } - private void OnEraseDecalPressed(ButtonToggledEventArgs args) + private void OnEraseTilePressed(ButtonEventArgs args) { + Meta.State = CursorState.None; _placement.Clear(); Deselect(); - Screen.EraseEntityButton.Pressed = false; - _updatePlacement = true; - _updateEraseDecal = args.Pressed; - } - private void EnableEraser() - { - if (_placement.Eraser) + if (!args.Button.Pressed) + { + Screen.EntityPlacementMode.Disabled = false; + _tileErase = false; return; + } - _placement.Clear(); - _placement.ToggleEraser(); + _placement.BeginPlacing(new PlacementInformation + { + PlacementOption = "AlignTileAny", + TileType = 0, + Range = 400, + IsTile = true, + }); + + Screen.UnPressActionsExcept(Screen.EraseTileButton); + _tileErase = true; Screen.EntityPlacementMode.Disabled = true; - Screen.EraseDecalButton.Pressed = false; - Deselect(); } - private void DisableEraser() + private void OnEraseDecalPressed(ButtonToggledEventArgs args) { - if (!_placement.Eraser) - return; + if (args.Button.Pressed) + { + Meta.State = CursorState.Tile; + Meta.Color = EraseDecalColor; - _placement.ToggleEraser(); - Screen.EntityPlacementMode.Disabled = false; + Screen.UnPressActionsExcept(Screen.EraseDecalButton); + _placement.Clear(); + Deselect(); + } + else + { + Meta.State = CursorState.None; + } + } + #endregion + + #region Mapping Actions + private void OnPickPressed(ButtonEventArgs args) + { + if (args.Button.Pressed) + EnablePick(); + else + DisablePick(); } private void EnablePick() { + Deselect(); Screen.UnPressActionsExcept(Screen.Pick); - State = CursorState.Pick; + Meta.State = CursorState.EntityOrTile; + Meta.Color = PickColor; + Meta.SecondColor = PickColor.WithAlpha(0.2f); } private void DisablePick() { Screen.Pick.Pressed = false; - State = CursorState.None; + Meta.State = CursorState.None; } - private void EnableDelete() + private void OnPickDecalPressed(ButtonEventArgs args) { - Screen.UnPressActionsExcept(Screen.Delete); - State = CursorState.Delete; - EnableEraser(); + if (args.Button.Pressed) + { + Deselect(); + Meta.State = CursorState.Decal; + Meta.Color = PickColor; + Screen.UnPressActionsExcept(args.Button); + } + else + { + Meta.State = CursorState.None; + } } - private void DisableDelete() + private void OnFixGridAtmosPressed(ButtonEventArgs args) { - Screen.Delete.Pressed = false; - State = CursorState.None; - DisableEraser(); + if (args.Button.Pressed) + { + Deselect(); + Meta.State = CursorState.Grid; + Meta.Color = GridSelectColor; + Screen.UnPressActionsExcept(args.Button); + } + else + { + Meta.State = CursorState.None; + } + } + + private void OnRemoveGridPressed(ButtonEventArgs args) + { + if (args.Button.Pressed) + { + Deselect(); + Meta.State = CursorState.Grid; + Meta.Color = GridRemoveColor; + Screen.UnPressActionsExcept(args.Button); + } + else + { + Meta.State = CursorState.None; + } + } + + private void OnMoveGridPressed(ButtonEventArgs args) + { + if (args.Button.Pressed) + { + Deselect(); + Meta.State = CursorState.Grid; + Meta.Color = GridSelectColor; + Screen.UnPressActionsExcept(args.Button); + } + else + { + Meta.State = CursorState.None; + } + + var gridDragSystem = _entitySystemManager.GetEntitySystem(); + if (args.Button.Pressed != gridDragSystem.Enabled) + { + _consoleHost.ExecuteCommand("griddrag"); + } + } + + private void OnGridVVPressed(ButtonEventArgs args) + { + if (args.Button.Pressed) + { + Deselect(); + Meta.State = CursorState.Grid; + Meta.Color = GridSelectColor; + Screen.UnPressActionsExcept(args.Button); + } + else + { + Meta.State = CursorState.None; + } + } + + private void OnPipesColorPressed(ButtonEventArgs args) + { + _entitySystemManager.GetEntitySystem().ShowAll = args.Button.Pressed; + + if (args.Button.Pressed) + { + Deselect(); + Meta.State = CursorState.Entity; + Meta.Color = PickColor; + Screen.UnPressActionsExcept(args.Button); + } + else + { + Meta.State = CursorState.None; + } + } + + private void OnChatButtonPressed(ButtonEventArgs args) + { + Screen.Chat.Visible = args.Button.Pressed; + } + #endregion + + #region Handle Bindings + private bool HandleOpenContextMenu(in PointerInputCmdArgs args) + { + Deselect(); + + var coords = _transform.ToMapCoordinates(args.Coordinates); + if (_verbs.TryGetEntityMenuEntities(coords, out var entities)) + _entityMenuController.OpenRootMenu(entities); + + return true; } private bool HandleMappingUnselect(in PointerInputCmdArgs args) { - if (Screen.Prototypes.Selected is not { Prototype.Prototype: DecalPrototype }) + if (Screen.MoveGrid.Pressed && _gridDrag.Enabled) + { + _consoleHost.ExecuteCommand("griddrag"); + } + + if (_placement.Eraser) + _placement.ToggleEraser(); + + Screen.UnPressActionsExcept(new Control()); + Meta.State = CursorState.None; + + if (Screen.Decals.Selected is not { Prototype.Prototype: DecalPrototype }) return false; Deselect(); @@ -766,59 +1074,105 @@ private bool HandleDisablePick(ICommonSession? session, EntityCoordinates coords return true; } + private bool HandleEnableDecalPick(ICommonSession? session, EntityCoordinates coords, EntityUid uid) + { + Deselect(); + Screen.PickDecal.Pressed = true; + Meta.State = CursorState.Decal; + Meta.Color = PickColor; + Screen.UnPressActionsExcept(Screen.PickDecal); + return true; + } + + private bool HandleDisableDecalPick(ICommonSession? session, EntityCoordinates coords, EntityUid uid) + { + Screen.PickDecal.Pressed = false; + Meta.State = CursorState.None; + return true; + } + private bool HandleEnableDelete(ICommonSession? session, EntityCoordinates coords, EntityUid uid) { - EnableDelete(); + Screen.EraseEntityButton.Pressed = true; + EnableEntityEraser(); return true; } private bool HandleDisableDelete(ICommonSession? session, EntityCoordinates coords, EntityUid uid) { - DisableDelete(); + Screen.EraseEntityButton.Pressed = false; + DisableEntityEraser(); return true; } private bool HandlePick(ICommonSession? session, EntityCoordinates coords, EntityUid uid) { - if (State != CursorState.Pick) - return false; - MappingPrototype? button = null; - // Try and get tile under it - // TODO: Separate mode for decals. - if (!uid.IsValid()) + if (Screen.Pick.Pressed) { - var mapPos = _transform.ToMapCoordinates(coords); - - if (_mapMan.TryFindGridAt(mapPos, out var gridUid, out var grid) && - _entityManager.System().TryGetTileRef(gridUid, grid, coords, out var tileRef) && - _allPrototypesDict.TryGetValue(tileRef.GetContentTileDefinition(), out button)) + if (!uid.IsValid()) { - OnSelected(button); - return true; + var mapPos = _transform.ToMapCoordinates(coords); + + if (_mapMan.TryFindGridAt(mapPos, out var gridUid, out var grid) && + _entityManager.System().TryGetTileRef(gridUid, grid, coords, out var tileRef) && + _allPrototypesDict.TryGetValue(tileRef.GetContentTileDefinition(), out button)) + { + switch (button.Prototype) + { + case EntityPrototype: + { + OnSelected(Screen.Entities, button); + break; + } + case ContentTileDefinition: + { + OnSelected(Screen.Tiles, button); + break; + } + } + + return true; + } } } - - if (button == null) + else if (Screen.PickDecal.Pressed) { - if (uid == EntityUid.Invalid || - _entityManager.GetComponentOrNull(uid) is not { EntityPrototype: { } prototype } || - !_allPrototypesDict.TryGetValue(prototype, out button)) + if (GetHoveredDecal() is { } decal && + _prototypeManager.TryIndex(decal.Id, out var decalProto) && + _allPrototypesDict.TryGetValue(decalProto, out button)) { - // we always block other input handlers if pick mode is enabled - // this makes you not accidentally place something in space because you - // miss-clicked while holding down the pick hotkey + OnSelected(Screen.Decals, button); + Screen.SelectDecal(decal); return true; } + } + else + { + return false; + } - // Selected an entity - OnSelected(button); + if (button != null) + return false; - // Match rotation - _placement.Direction = _entityManager.GetComponent(uid).LocalRotation.GetDir(); + if (uid == EntityUid.Invalid || + _entityManager.GetComponentOrNull(uid) is not + { EntityPrototype: { } prototype } || + !_allPrototypesDict.TryGetValue(prototype, out button)) + { + // we always block other input handlers if pick mode is enabled + // this makes you not accidentally place something in space because you + // miss-clicked while holding down the pick hotkey + return true; } + // Selected an entity + OnSelected(Screen.Entities, button); + + // Match rotation + _placement.Direction = _entityManager.GetComponent(uid).LocalRotation.GetDir(); + return true; } @@ -840,49 +1194,72 @@ private bool HandleCancelEraseDecal(in PointerInputCmdArgs args) return true; } - private async void SaveMap() + private bool HandleUse(in PointerInputCmdArgs args) { - await _mapping.SaveMap(); - } + if (Screen.FixGridAtmos.Pressed) + { + Screen.FixGridAtmos.Pressed = false; + Meta.State = CursorState.None; + if (GetHoveredGrid() is { } grid) + _consoleHost.ExecuteCommand($"fixgridatmos {_entityManager.GetNetEntity(grid.Owner).Id}"); - private void ToggleCollapse(MappingSpawnButton button) - { - if (button.CollapseButton.Pressed) + return true; + } + + if (Screen.RemoveGrid.Pressed) { - if (button.Prototype?.Children != null) - { - foreach (var child in button.Prototype.Children) - { - Screen.Prototypes.Insert(button.ChildrenPrototypes, child, true); - } - } + Screen.RemoveGrid.Pressed = false; + Meta.State = CursorState.None; + if (GetHoveredGrid() is { } grid) + _consoleHost.ExecuteCommand($"rmgrid {_entityManager.GetNetEntity(grid.Owner).Id}"); - button.CollapseButton.Label.Text = "▼"; + return true; } - else + + if (Screen.GridVV.Pressed) { - button.ChildrenPrototypes.DisposeAllChildren(); - button.CollapseButton.Label.Text = "▶"; + Screen.GridVV.Pressed = false; + Meta.State = CursorState.None; + if (GetHoveredGrid() is { } grid) + _consoleHost.ExecuteCommand($"vv {_entityManager.GetNetEntity(grid.Owner).Id}"); + + return true; } + + if (Screen.PipesColor.Pressed) + { + Screen.PipesColor.Pressed = false; + Meta.State = CursorState.None; + if (GetHoveredEntity() is { } entity) + _consoleHost.ExecuteCommand($"colornetwork {_entityManager.GetNetEntity(entity).Id} Pipe {Screen.DecalColor.ToHex()}"); + + return true; + } + + return false; } - private void Collapse(MappingSpawnButton button) + private bool HandleMouseMiddle(in PointerInputCmdArgs args) { - if (!button.CollapseButton.Pressed) - return; + if (Screen.PickDecal.Pressed) + { + _decalIndex += 1; + return true; + } - button.CollapseButton.Pressed = false; - ToggleCollapse(button); - } + if (_decal.GetActiveDecal() is { Decal: not null }) + { + Screen.ChangeDecalRotation(90f); + return true; + } + return false; + } + #endregion - private void UnCollapse(MappingSpawnButton button) + private async void SaveMap() { - if (button.CollapseButton.Pressed) - return; - - button.CollapseButton.Pressed = true; - ToggleCollapse(button); + await _mapping.SaveMap(); } public EntityUid? GetHoveredEntity() @@ -897,40 +1274,136 @@ private void UnCollapse(MappingSpawnButton button) return GetClickedEntity(mapPos); } - public override void FrameUpdate(FrameEventArgs e) + public Entity? GetHoveredGrid() + { + if (UserInterfaceManager.CurrentlyHovered is not IViewportControl viewport || + _input.MouseScreenPosition is not { IsValid: true } position) + { + return null; + } + + var mapPos = viewport.PixelToMap(position.Position); + if (_mapMan.TryFindGridAt(mapPos, out var gridUid, out var grid)) + { + return new Entity(gridUid, grid); + } + + return null; + } + + public Box2Rotated? GetHoveredTileBox2() + { + if (UserInterfaceManager.CurrentlyHovered is not IViewportControl viewport || + _input.MouseScreenPosition is not { IsValid: true } coords) + { + return null; + } + + if (GetHoveredGrid() is not { } grid) + return null; + + if (!_entityManager.TryGetComponent(grid, out var xform)) + return null; + + var mapCoords = viewport.PixelToMap(coords.Position); + var tileSize = grid.Comp.TileSize; + var tileDimensions = new Vector2(tileSize, tileSize); + var tileRef = _map.GetTileRef(grid, mapCoords); + var worldCoord = _map.LocalToWorld(grid.Owner, grid.Comp, tileRef.GridIndices); + var box = Box2.FromDimensions(worldCoord, tileDimensions); + + return new Box2Rotated(box, xform.LocalRotation, box.BottomLeft); + } + + private Decal? GetHoveredDecal() { - if (_updatePlacement) + if (UserInterfaceManager.CurrentlyHovered is not IViewportControl viewport || + _input.MouseScreenPosition is not { IsValid: true } coords) { - _updatePlacement = false; + return null; + } + + if (GetHoveredGrid() is not { } grid) + return null; + + var mapCoords = viewport.PixelToMap(coords.Position); + var localCoords = _map.WorldToLocal(grid.Owner, grid.Comp, mapCoords.Position); + var bounds = Box2.FromDimensions(localCoords, new Vector2(1.05f, 1.05f)).Translated(new Vector2(-1, -1)); + var decals = _sharedDecal.GetDecalsIntersecting(grid.Owner, bounds); + + if (decals.FirstOrDefault() is not { Decal: not null }) + return null; + + if (!decals.ToList().TryGetValue(_decalIndex % decals.Count, out var decal)) + return null; - if (!_placement.IsActive && _decal.GetActiveDecal().Decal == null) - Deselect(); + _decalIndex %= decals.Count; + return decal.Decal; + } + + public (Texture, Box2Rotated)? GetHoveredDecalData() + { + if (GetHoveredGrid() is not { } grid || + !_entityManager.TryGetComponent(grid, out var xform)) + return null; - Screen.EraseEntityButton.Pressed = _placement.Eraser; - Screen.EraseDecalButton.Pressed = _updateEraseDecal; - Screen.EntityPlacementMode.Disabled = _placement.Eraser; + if (GetHoveredDecal() is not { } decal || + !_prototypeManager.TryIndex(decal.Id, out var decalProto)) + return null; + + var worldCoords = _map.LocalToWorld(grid.Owner, grid.Comp, decal.Coordinates); + var texture = _sprite.Frame0(decalProto.Sprite); + var box = Box2.FromDimensions(worldCoords, new Vector2(1, 1)); + return (texture, new Box2Rotated(box, decal.Angle + xform.LocalRotation, box.BottomLeft)); + } + + public override void FrameUpdate(FrameEventArgs e) + { + if (!Screen.EraseTileButton.Pressed && _tileErase) + { + _placement.Clear(); + _tileErase = false; } if (_scrollTo is not { } scrollTo) return; + var (control, list) = scrollTo; + // this is not ideal but we wait until the control's height is computed to use // its position to scroll to - if (scrollTo.Height > 0 && Screen.Prototypes.PrototypeList.Visible) + if (control.Height > 0 && list.PrototypeList.Visible) { - var y = scrollTo.GlobalPosition.Y - Screen.Prototypes.ScrollContainer.Height / 2 + scrollTo.Height; - var scroll = Screen.Prototypes.ScrollContainer; + var y = control.GlobalPosition.Y - list.ScrollContainer.Height / 2 + control.Height - list.GlobalPosition.Y; + var scroll = list.ScrollContainer; scroll.SetScrollValue(scroll.GetScrollValue() + new Vector2(0, y)); _scrollTo = null; } } - // TODO this doesn't handle pressing down multiple state hotkeys at the moment public enum CursorState { None, - Pick, - Delete + Tile, + Decal, + Entity, + Grid, + EntityOrTile, + } + + public sealed class CursorMeta + { + /// + /// Defines how the overlay will be rendered + /// + public CursorState State = CursorState.None; + + /// + /// Color with which the mapping overlay will be drawn + /// + public Color Color = Color.White; + + public Color? SecondColor; } } diff --git a/Content.Client/Mapping/MappingVisibilityButton.xaml b/Content.Client/Mapping/MappingVisibilityButton.xaml new file mode 100644 index 0000000000..36971ae846 --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityButton.xaml @@ -0,0 +1,5 @@ + diff --git a/Content.Client/Mapping/MappingVisibilityButton.xaml.cs b/Content.Client/Mapping/MappingVisibilityButton.xaml.cs new file mode 100644 index 0000000000..64ced16ad3 --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityButton.xaml.cs @@ -0,0 +1,15 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Mapping; + +[GenerateTypedNameReferences] +public sealed partial class MappingVisibilityButton : Button +{ + public MappingVisibilityButton() + { + RobustXamlLoader.Load(this); + } +} + diff --git a/Content.Client/Mapping/MappingVisibilityGroupButton.xaml b/Content.Client/Mapping/MappingVisibilityGroupButton.xaml new file mode 100644 index 0000000000..de6da4071b --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityGroupButton.xaml @@ -0,0 +1,5 @@ + diff --git a/Content.Client/Mapping/MappingVisibilityGroupButton.xaml.cs b/Content.Client/Mapping/MappingVisibilityGroupButton.xaml.cs new file mode 100644 index 0000000000..cbbbd00672 --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityGroupButton.xaml.cs @@ -0,0 +1,15 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Mapping; + +[GenerateTypedNameReferences] +public sealed partial class MappingVisibilityGroupButton : Button +{ + public MappingVisibilityGroupButton() + { + RobustXamlLoader.Load(this); + } +} + diff --git a/Content.Client/Mapping/MappingVisibilityUIController.cs b/Content.Client/Mapping/MappingVisibilityUIController.cs new file mode 100644 index 0000000000..8766a464db --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityUIController.cs @@ -0,0 +1,155 @@ +using Content.Client.Decals; +using Content.Client.Markers; +using Content.Client.SubFloor; +using Content.Shared.Atmos.Components; +using Content.Shared.Doors.Components; +using Content.Shared.Tag; +using Robust.Client.UserInterface.Controllers; +using Robust.Client.UserInterface.Controls; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Shared.Prototypes; + +namespace Content.Client.Mapping; + +public sealed class MappingVisibilityUIController : UIController +{ + [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IEyeManager _eyeManager = default!; + [Dependency] private readonly ILightManager _lightManager = default!; + + private MappingVisibilityWindow? _window; + + [ValidatePrototypeId] + private const string WallTag = "Wall"; + + [ValidatePrototypeId] + private const string CableTag = "Cable"; + + [ValidatePrototypeId] + private const string DisposalTag = "Disposal"; + + public void ToggleWindow() + { + EnsureWindow(); + + if (_window!.IsOpen) + { + _window.Close(); + } + else + { + _window.Open(); + } + } + + private void EnsureWindow() + { + if (_window is { Disposed: false }) + return; + + _window = UIManager.CreateWindow(); + + _window.Light.Pressed = _lightManager.Enabled; + _window.Light.OnPressed += args => _lightManager.Enabled = args.Button.Pressed; + + _window.Fov.Pressed = _eyeManager.CurrentEye.DrawFov; + _window.Fov.OnPressed += args => _eyeManager.CurrentEye.DrawFov = args.Button.Pressed; + + _window.Shadows.Pressed = _lightManager.DrawShadows; + _window.Shadows.OnPressed += args => _lightManager.DrawShadows = args.Button.Pressed; + + _window.Entities.Pressed = true; + _window.Entities.OnPressed += OnToggleEntitiesPressed; + + _window.Markers.Pressed = _entitySystemManager.GetEntitySystem().MarkersVisible; + _window.Markers.OnPressed += args => + { + _entitySystemManager.GetEntitySystem().MarkersVisible = args.Button.Pressed; + }; + + _window.Walls.Pressed = true; + _window.Walls.OnPressed += args => ToggleWithTag(args, WallTag); + + _window.Airlocks.Pressed = true; + _window.Airlocks.OnPressed += ToggleWithComp; + + _window.Decals.Pressed = true; + _window.Decals.OnPressed += _ => + { + _entitySystemManager.GetEntitySystem().ToggleOverlay(); + }; + + _window.SubFloor.Pressed = _entitySystemManager.GetEntitySystem().ShowAll; + _window.SubFloor.OnPressed += OnToggleSubfloorPressed; + + _window.Cables.Pressed = true; + _window.Cables.OnPressed += args => ToggleWithTag(args, CableTag); + + _window.Disposal.Pressed = true; + _window.Disposal.OnPressed += args => ToggleWithTag(args, DisposalTag); + + _window.Atmos.Pressed = true; + _window.Atmos.OnPressed += ToggleWithComp; + + LayoutContainer.SetAnchorPreset(_window, LayoutContainer.LayoutPreset.CenterTop); + } + + private void OnToggleEntitiesPressed(BaseButton.ButtonEventArgs args) + { + var query = _entityManager.AllEntityQueryEnumerator(); + + if (args.Button.Pressed && _window != null) + { + _window.Markers.Pressed = true; + _window.Walls.Pressed = true; + _window.Airlocks.Pressed = true; + } + else if (_window != null) + { + _window.Markers.Pressed = false; + _window.Walls.Pressed = false; + _window.Airlocks.Pressed = false; + } + + while (query.MoveNext(out _, out var sprite)) + { + sprite.Visible = args.Button.Pressed; + } + } + + private void OnToggleSubfloorPressed(BaseButton.ButtonEventArgs args) + { + _entitySystemManager.GetEntitySystem().ShowAll = args.Button.Pressed; + + if (args.Button.Pressed && _window != null) + { + _window.Cables.Pressed = true; + _window.Atmos.Pressed = true; + _window.Disposal.Pressed = true; + } + } + + private void ToggleWithComp(BaseButton.ButtonEventArgs args) where TComp : IComponent + { + var query = _entityManager.AllEntityQueryEnumerator(); + + while (query.MoveNext(out _, out _, out var sprite)) + { + sprite.Visible = args.Button.Pressed; + } + } + + private void ToggleWithTag(BaseButton.ButtonEventArgs args, ProtoId tag) + { + var query = _entityManager.AllEntityQueryEnumerator(); + var tagSystem = _entityManager.EntitySysManager.GetEntitySystem(); + + while (query.MoveNext(out var uid, out _, out var sprite)) + { + if (tagSystem.HasTag(uid, tag)) + sprite.Visible = args.Button.Pressed; + } + } +} diff --git a/Content.Client/Mapping/MappingVisibilityWindow.xaml b/Content.Client/Mapping/MappingVisibilityWindow.xaml new file mode 100644 index 0000000000..71f4ac448a --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityWindow.xaml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + diff --git a/Content.Client/Mapping/MappingVisibilityWindow.xaml.cs b/Content.Client/Mapping/MappingVisibilityWindow.xaml.cs new file mode 100644 index 0000000000..c9e88e01ef --- /dev/null +++ b/Content.Client/Mapping/MappingVisibilityWindow.xaml.cs @@ -0,0 +1,15 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.CustomControls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Mapping; + +[GenerateTypedNameReferences] +public sealed partial class MappingVisibilityWindow : DefaultWindow +{ + public MappingVisibilityWindow() + { + RobustXamlLoader.Load(this); + } +} + diff --git a/Content.Client/NPC/Systems/NpcFactionSpriteStateSetterSystem.cs b/Content.Client/NPC/Systems/NpcFactionSpriteStateSetterSystem.cs new file mode 100644 index 0000000000..1e57d917be --- /dev/null +++ b/Content.Client/NPC/Systems/NpcFactionSpriteStateSetterSystem.cs @@ -0,0 +1,28 @@ + +using Content.Shared.NPC.Components; +using Content.Shared.NPC.Events; +using Robust.Client.GameObjects; +using Robust.Shared.Reflection; + +namespace Content.Client.NPC.Systems; +public sealed partial class NpcFactionSpriteStateSetterSystem : EntitySystem +{ + [Dependency] private readonly SpriteSystem _spriteSystem = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnFactionAdded); + } + + private void OnFactionAdded(Entity entity, ref NpcFactionAddedEvent args) + { + if (!_entityManager.HasComponent(entity, typeof(NpcFactionSpriteStateSetterComponent))) + return; + + SpriteComponent spriteComponent = _entityManager.GetComponent(entity); + spriteComponent.LayerSetState(0, new Robust.Client.Graphics.RSI.StateId(args.FactionID)); + } +} diff --git a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs index a0a70b8165..a11f77dc4f 100644 --- a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs @@ -294,6 +294,9 @@ void AddCheckBox(string checkBoxName, bool currentState, Action + diff --git a/Content.Client/Options/UI/Tabs/MiscTab.xaml.cs b/Content.Client/Options/UI/Tabs/MiscTab.xaml.cs index 65714f8fc5..6261a7307b 100644 --- a/Content.Client/Options/UI/Tabs/MiscTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/MiscTab.xaml.cs @@ -92,6 +92,7 @@ public MiscTab() ScreenShakeIntensitySlider.OnValueChanged += OnScreenShakeIntensitySliderChanged; // ToggleWalk.OnToggled += OnCheckBoxToggled; StaticStorageUI.OnToggled += OnCheckBoxToggled; + ModernProgressBar.OnToggled += OnCheckBoxToggled; DisableFiltersCheckBox.OnToggled += OnCheckBoxToggled; HudThemeOption.SelectId(_hudThemeIdToIndex.GetValueOrDefault(_cfg.GetCVar(CVars.InterfaceTheme), 0)); @@ -111,6 +112,7 @@ public MiscTab() ScreenShakeIntensitySlider.Value = _cfg.GetCVar(CCVars.ScreenShakeIntensity) * 100f; // ToggleWalk.Pressed = _cfg.GetCVar(CCVars.ToggleWalk); StaticStorageUI.Pressed = _cfg.GetCVar(CCVars.StaticStorageUI); + ModernProgressBar.Pressed = _cfg.GetCVar(CCVars.ModernProgressBar); DisableFiltersCheckBox.Pressed = _cfg.GetCVar(CCVars.NoVisionFilters); @@ -168,6 +170,7 @@ private void OnApplyButtonPressed(BaseButton.ButtonEventArgs args) _cfg.SetCVar(CCVars.ScreenShakeIntensity, ScreenShakeIntensitySlider.Value / 100f); // _cfg.SetCVar(CCVars.ToggleWalk, ToggleWalk.Pressed); _cfg.SetCVar(CCVars.StaticStorageUI, StaticStorageUI.Pressed); + _cfg.SetCVar(CCVars.ModernProgressBar, ModernProgressBar.Pressed); _cfg.SetCVar(CCVars.NoVisionFilters, DisableFiltersCheckBox.Pressed); _cfg.SetCVar(CCVars.ChatStackLastLines, ChatStackOption.SelectedId); @@ -200,6 +203,7 @@ private void UpdateApplyButton() var isScreenShakeIntensitySame = Math.Abs(ScreenShakeIntensitySlider.Value / 100f - _cfg.GetCVar(CCVars.ScreenShakeIntensity)) < 0.01f; // var isToggleWalkSame = ToggleWalk.Pressed == _cfg.GetCVar(CCVars.ToggleWalk); var isStaticStorageUISame = StaticStorageUI.Pressed == _cfg.GetCVar(CCVars.StaticStorageUI); + var isModernProgressBarSame = ModernProgressBar.Pressed == _cfg.GetCVar(CCVars.ModernProgressBar); var isNoVisionFiltersSame = DisableFiltersCheckBox.Pressed == _cfg.GetCVar(CCVars.NoVisionFilters); var isChatStackTheSame = ChatStackOption.SelectedId == _cfg.GetCVar(CCVars.ChatStackLastLines); @@ -221,6 +225,7 @@ private void UpdateApplyButton() isScreenShakeIntensitySame && // isToggleWalkSame && isStaticStorageUISame && + isModernProgressBarSame && isNoVisionFiltersSame && isChatStackTheSame; } diff --git a/Content.Client/Overlays/ShowPsionicsRecordIconsSystem.cs b/Content.Client/Overlays/ShowPsionicsRecordIconsSystem.cs new file mode 100644 index 0000000000..26f3407adf --- /dev/null +++ b/Content.Client/Overlays/ShowPsionicsRecordIconsSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.Overlays; +using Content.Shared.Psionics.Components; +using Content.Shared.StatusIcon; +using Content.Shared.StatusIcon.Components; +using Robust.Shared.Prototypes; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Client.Overlays; + +public sealed class ShowPsionicsRecordIconsSystem : EquipmentHudSystem +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetStatusIconsEvent); + } + + private void OnGetStatusIconsEvent(EntityUid uid, PsionicsRecordComponent component, ref GetStatusIconsEvent ev) + { + if (!IsActive) + return; + + if (_prototype.TryIndex(component.StatusIcon, out var iconPrototype)) + ev.StatusIcons.Add(iconPrototype); + } +} diff --git a/Content.Client/Overlays/Switchable/BaseSwitchableOverlay.cs b/Content.Client/Overlays/Switchable/BaseSwitchableOverlay.cs index 5977355968..560705ffb7 100644 --- a/Content.Client/Overlays/Switchable/BaseSwitchableOverlay.cs +++ b/Content.Client/Overlays/Switchable/BaseSwitchableOverlay.cs @@ -37,8 +37,8 @@ protected override void Draw(in OverlayDrawArgs args) var worldHandle = args.WorldHandle; - var accumulator = Math.Clamp(Comp.PulseAccumulator, 0f, Comp.PulseTime); - var alpha = Comp.PulseTime <= 0f ? 1f : float.Lerp(1f, 0f, accumulator / Comp.PulseTime); + var accumulator = Math.Clamp((float) Comp.PulseAccumulator.TotalSeconds, 0f, Comp.PulseTime); + var alpha = Comp.PulseTime <= 0 ? 1f : float.Lerp(1f, 0f, accumulator / Comp.PulseTime); worldHandle.SetTransform(Matrix3x2.Identity); worldHandle.UseShader(_shader); diff --git a/Content.Client/Overlays/Switchable/NightVisionSystem.cs b/Content.Client/Overlays/Switchable/NightVisionSystem.cs index 7764e39a0a..bb1c9c2a3e 100644 --- a/Content.Client/Overlays/Switchable/NightVisionSystem.cs +++ b/Content.Client/Overlays/Switchable/NightVisionSystem.cs @@ -1,7 +1,9 @@ +using System.Reflection.Metadata; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Overlays.Switchable; using Robust.Client.Graphics; +using Robust.Shared.Timing; namespace Content.Client.Overlays.Switchable; @@ -9,6 +11,7 @@ public sealed class NightVisionSystem : EquipmentHudSystem { [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly ILightManager _lightManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; private BaseSwitchableOverlay _overlay = default!; @@ -27,7 +30,7 @@ protected override void OnRefreshComponentHud(EntityUid uid, { if (component.IsEquipment) return; - + base.OnRefreshComponentHud(uid, component, args); } @@ -37,7 +40,7 @@ protected override void OnRefreshEquipmentHud(EntityUid uid, { if (!component.IsEquipment) return; - + base.OnRefreshEquipmentHud(uid, component, args); } @@ -54,21 +57,15 @@ protected override void UpdateInternal(RefreshEquipmentHudEvent 0f && comp.PulseAccumulator < comp.PulseTime) - active = true; - else + if (!comp.IsActive && (comp.PulseTime <= 0 || _timing.CurTime < comp.PulseEndTime)) continue; - if (comp.DrawOverlay) - { - if (nvComp == null) - nvComp = comp; - else if (nvComp.PulseTime > 0f && comp.PulseTime <= 0f) - nvComp = comp; - } - - if (active && nvComp is { PulseTime: <= 0 }) - break; + if (nvComp == null) + nvComp = comp; + else if (!nvComp.DrawOverlay && comp.DrawOverlay) + nvComp = comp; + else if (nvComp.DrawOverlay == comp.DrawOverlay && nvComp.PulseTime > 0 && comp.PulseTime <= 0) + nvComp = comp; } UpdateNightVision(active); diff --git a/Content.Client/Overlays/Switchable/ThermalVisionOverlay.cs b/Content.Client/Overlays/Switchable/ThermalVisionOverlay.cs index 010d141170..725dac730d 100644 --- a/Content.Client/Overlays/Switchable/ThermalVisionOverlay.cs +++ b/Content.Client/Overlays/Switchable/ThermalVisionOverlay.cs @@ -63,8 +63,8 @@ protected override void Draw(in OverlayDrawArgs args) if (!_entity.TryGetComponent(player, out TransformComponent? playerXform)) return; - var accumulator = Math.Clamp(Comp.PulseAccumulator, 0f, Comp.PulseTime); - var alpha = Comp.PulseTime <= 0f ? 1f : float.Lerp(1f, 0f, accumulator / Comp.PulseTime); + var accumulator = Math.Clamp((float) Comp.PulseAccumulator.TotalSeconds, 0f, Comp.PulseTime); + var alpha = Comp.PulseTime <= 0 ? 1f : float.Lerp(1f, 0f, accumulator / Comp.PulseTime); // Thermal vision grants some night vision (clientside light) if (LightRadius > 0) diff --git a/Content.Client/Overlays/Switchable/ThermalVisionSystem.cs b/Content.Client/Overlays/Switchable/ThermalVisionSystem.cs index 7c3f33d068..b4bc9bf54a 100644 --- a/Content.Client/Overlays/Switchable/ThermalVisionSystem.cs +++ b/Content.Client/Overlays/Switchable/ThermalVisionSystem.cs @@ -2,12 +2,14 @@ using Content.Shared.Inventory.Events; using Content.Shared.Overlays.Switchable; using Robust.Client.Graphics; +using Robust.Shared.Timing; namespace Content.Client.Overlays.Switchable; public sealed class ThermalVisionSystem : EquipmentHudSystem { [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly IGameTiming _timing = default!; private ThermalVisionOverlay _thermalOverlay = default!; private BaseSwitchableOverlay _overlay = default!; @@ -28,7 +30,7 @@ protected override void OnRefreshComponentHud(EntityUid uid, { if (component.IsEquipment) return; - + base.OnRefreshComponentHud(uid, component, args); } @@ -38,7 +40,7 @@ protected override void OnRefreshEquipmentHud(EntityUid uid, { if (!component.IsEquipment) return; - + base.OnRefreshEquipmentHud(uid, component, args); } @@ -54,14 +56,14 @@ protected override void UpdateInternal(RefreshEquipmentHudEvent= comp.PulseTime)) + if (!comp.IsActive && (comp.PulseTime <= 0 || _timing.CurTime < comp.PulseEndTime)) continue; if (tvComp == null) tvComp = comp; else if (!tvComp.DrawOverlay && comp.DrawOverlay) tvComp = comp; - else if (tvComp.DrawOverlay == comp.DrawOverlay && tvComp.PulseTime > 0f && comp.PulseTime <= 0f) + else if (tvComp.DrawOverlay == comp.DrawOverlay && tvComp.PulseTime > 0 && comp.PulseTime <= 0) tvComp = comp; lightRadius = MathF.Max(lightRadius, comp.LightRadius); diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 3c277f4ded..b1d74726b1 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -385,26 +385,6 @@ protected override void Draw(DrawingHandleScreen handle) 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 @@ protected override void Draw(DrawingHandleScreen handle) 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 @@ protected void AddOrUpdateNavMapLine( 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.Client/PsionicsRecords/Components/PsionicsRecordsConsoleSystem.cs b/Content.Client/PsionicsRecords/Components/PsionicsRecordsConsoleSystem.cs new file mode 100644 index 0000000000..8f68e38c86 --- /dev/null +++ b/Content.Client/PsionicsRecords/Components/PsionicsRecordsConsoleSystem.cs @@ -0,0 +1,11 @@ +using Content.Shared.PsionicsRecords.Systems; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Client.PsionicsRecords.Systems; + +public sealed class PsionicsRecordsConsoleSystem : SharedPsionicsRecordsConsoleSystem +{ +} diff --git a/Content.Client/PsionicsRecords/PsionicsRecordsConsoleBoundUserInterface.cs b/Content.Client/PsionicsRecords/PsionicsRecordsConsoleBoundUserInterface.cs new file mode 100644 index 0000000000..3d38f6db64 --- /dev/null +++ b/Content.Client/PsionicsRecords/PsionicsRecordsConsoleBoundUserInterface.cs @@ -0,0 +1,64 @@ +using Content.Shared.Access.Systems; +using Content.Shared.PsionicsRecords; +using Content.Shared.PsionicsRecords.Components; +using Content.Shared.Psionics; +using Content.Shared.StationRecords; +using Robust.Client.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Client.PsionicsRecords; + +public sealed class PsionicsRecordsConsoleBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + private readonly AccessReaderSystem _accessReader; + + private PsionicsRecordsConsoleWindow? _window; + + public PsionicsRecordsConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + _accessReader = EntMan.System(); + } + + protected override void Open() + { + base.Open(); + + var comp = EntMan.GetComponent(Owner); + + _window = new(Owner, comp.MaxStringLength, _playerManager, _proto, _random, _accessReader); + _window.OnKeySelected += key => + SendMessage(new SelectStationRecord(key)); + _window.OnFiltersChanged += (type, filterValue) => + SendMessage(new SetStationRecordFilter(type, filterValue)); + _window.OnStatusSelected += status => + SendMessage(new PsionicsRecordChangeStatus(status, null)); + _window.OnDialogConfirmed += (status, reason) => + SendMessage(new PsionicsRecordChangeStatus(status, reason)); + _window.OnClose += Close; + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (state is not PsionicsRecordsConsoleState cast) + return; + + _window?.UpdateState(cast); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + _window?.Close(); + } +} diff --git a/Content.Client/PsionicsRecords/PsionicsRecordsConsoleWindow.xaml b/Content.Client/PsionicsRecords/PsionicsRecordsConsoleWindow.xaml new file mode 100644 index 0000000000..40a3a58b50 --- /dev/null +++ b/Content.Client/PsionicsRecords/PsionicsRecordsConsoleWindow.xaml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + diff --git a/Content.Client/PsionicsRecords/PsionicsRecordsConsoleWindow.xaml.cs b/Content.Client/PsionicsRecords/PsionicsRecordsConsoleWindow.xaml.cs new file mode 100644 index 0000000000..2099d0aabe --- /dev/null +++ b/Content.Client/PsionicsRecords/PsionicsRecordsConsoleWindow.xaml.cs @@ -0,0 +1,256 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Access.Systems; +using Content.Shared.Administration; +using Content.Shared.PsionicsRecords; +using Content.Shared.Dataset; +using Content.Shared.Psionics; +using Content.Shared.StationRecords; +using Robust.Client.AutoGenerated; +using Robust.Client.Player; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Client.PsionicsRecords; + +// TODO: dedupe shitcode from general records theres a lot +[GenerateTypedNameReferences] +public sealed partial class PsionicsRecordsConsoleWindow : FancyWindow +{ + private readonly IPlayerManager _player; + private readonly IPrototypeManager _proto; + private readonly IRobustRandom _random; + private readonly AccessReaderSystem _accessReader; + + public readonly EntityUid Console; + + [ValidatePrototypeId] + private const string ReasonPlaceholders = "PsionicsRecordsRecordsPlaceholders"; + + public Action? OnKeySelected; + public Action? OnFiltersChanged; + public Action? OnStatusSelected; + public Action? OnDialogConfirmed; + + private uint _maxLength; + private bool _isPopulating; + private bool _access; + private uint? _selectedKey; + private PsionicsRecord? _selectedRecord; + + private DialogWindow? _reasonDialog; + + private StationRecordFilterType _currentFilterType; + + public PsionicsRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerManager playerManager, IPrototypeManager prototypeManager, IRobustRandom robustRandom, AccessReaderSystem accessReader) + { + RobustXamlLoader.Load(this); + + Console = console; + _player = playerManager; + _proto = prototypeManager; + _random = robustRandom; + _accessReader = accessReader; + + _maxLength = maxLength; + _currentFilterType = StationRecordFilterType.Name; + + OpenCentered(); + + foreach (var item in Enum.GetValues()) + { + FilterType.AddItem(GetTypeFilterLocals(item), (int) item); + } + + foreach (var status in Enum.GetValues()) + { + AddStatusSelect(status); + } + + OnClose += () => _reasonDialog?.Close(); + + RecordListing.OnItemSelected += args => + { + if (_isPopulating || RecordListing[args.ItemIndex].Metadata is not uint cast) + return; + + OnKeySelected?.Invoke(cast); + }; + + RecordListing.OnItemDeselected += _ => + { + if (!_isPopulating) + OnKeySelected?.Invoke(null); + }; + + FilterType.OnItemSelected += eventArgs => + { + var type = (StationRecordFilterType) eventArgs.Id; + + if (_currentFilterType != type) + { + _currentFilterType = type; + FilterListingOfRecords(FilterText.Text); + } + }; + + FilterText.OnTextEntered += args => + { + FilterListingOfRecords(args.Text); + }; + + StatusOptionButton.OnItemSelected += args => + { + SetStatus((PsionicsStatus) args.Id); + }; + } + + public void UpdateState(PsionicsRecordsConsoleState state) + { + if (state.Filter != null) + { + if (state.Filter.Type != _currentFilterType) + { + _currentFilterType = state.Filter.Type; + } + + if (state.Filter.Value != FilterText.Text) + { + FilterText.Text = state.Filter.Value; + } + } + + _selectedKey = state.SelectedKey; + + FilterType.SelectId((int) _currentFilterType); + + // set up the records listing panel + RecordListing.Clear(); + + var hasRecords = state.RecordListing != null && state.RecordListing.Count > 0; + NoRecords.Visible = !hasRecords; + if (hasRecords) + PopulateRecordListing(state.RecordListing!); + + // set up the selected person's record + var selected = _selectedKey != null; + + PersonContainer.Visible = selected; + RecordUnselected.Visible = !selected; + + _access = _player.LocalSession?.AttachedEntity is {} player + && _accessReader.IsAllowed(player, Console); + + // hide access-required editing parts when no access + var editing = _access && selected; + StatusOptionButton.Disabled = !editing; + + if (state is { PsionicsRecord: not null, StationRecord: not null }) + { + PopulateRecordContainer(state.StationRecord, state.PsionicsRecord); + _selectedRecord = state.PsionicsRecord; + } + else + { + _selectedRecord = null; + } + } + + private void PopulateRecordListing(Dictionary listing) + { + _isPopulating = true; + + foreach (var (key, name) in listing) + { + var item = RecordListing.AddItem(name); + item.Metadata = key; + item.Selected = key == _selectedKey; + } + _isPopulating = false; + + RecordListing.SortItemsByText(); + } + + private void PopulateRecordContainer(GeneralStationRecord stationRecord, PsionicsRecord psionicsRecord) + { + var na = Loc.GetString("generic-not-available-shorthand"); + PersonName.Text = stationRecord.Name; + + StatusOptionButton.SelectId((int) psionicsRecord.Status); + if (psionicsRecord.Reason is {} reason) + { + var message = FormattedMessage.FromMarkup(Loc.GetString("psionics-records-console-wanted-reason")); + message.AddText($": {reason}"); + PsionicsList.SetMessage(message); + PsionicsList.Visible = true; + } + else + { + PsionicsList.Visible = false; + } + } + + private void AddStatusSelect(PsionicsStatus status) + { + var name = Loc.GetString($"psionics-records-status-{status.ToString().ToLower()}"); + StatusOptionButton.AddItem(name, (int) status); + } + + private void FilterListingOfRecords(string text = "") + { + if (!_isPopulating) + { + OnFiltersChanged?.Invoke(_currentFilterType, text); + } + } + + private void SetStatus(PsionicsStatus status) + { + if (status != PsionicsStatus.None) // All statuses should have a reasoning. + { + GetReason(status); + return; + } + + OnStatusSelected?.Invoke(status); + } + + private void GetReason(PsionicsStatus status) + { + if (_reasonDialog != null) + { + _reasonDialog.MoveToFront(); + return; + } + + var field = "reason"; + var title = Loc.GetString("psionics-records-status-" + status.ToString().ToLower()); + var placeholders = _proto.Index(ReasonPlaceholders); + var placeholder = Loc.GetString("psionics-records-console-reason-placeholder", ("placeholder", _random.Pick(placeholders.Values))); // just funny it doesn't actually get used + var prompt = Loc.GetString("psionics-records-console-reason"); + var entry = new QuickDialogEntry(field, QuickDialogEntryType.LongText, prompt, placeholder); + var entries = new List() { entry }; + _reasonDialog = new DialogWindow(title, entries); + + _reasonDialog.OnConfirmed += responses => + { + var reason = responses[field]; + if (reason.Length < 1 || reason.Length > _maxLength) + return; + + OnDialogConfirmed?.Invoke(status, reason); + }; + + _reasonDialog.OnClose += () => { _reasonDialog = null; }; + } + + private string GetTypeFilterLocals(StationRecordFilterType type) + { + return Loc.GetString($"psionics-records-{type.ToString().ToLower()}-filter"); + } +} diff --git a/Content.Client/SelfExtinguisher/SelfExtinguisherSystem.cs b/Content.Client/SelfExtinguisher/SelfExtinguisherSystem.cs new file mode 100644 index 0000000000..0329cd487c --- /dev/null +++ b/Content.Client/SelfExtinguisher/SelfExtinguisherSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.SelfExtinguisher; + +namespace Content.Server.SelfExtinguisher; + +public sealed partial class SelfExtinguisherSystem : SharedSelfExtinguisherSystem { } diff --git a/Content.Client/Shadowkin/ShadowkinSystem.cs b/Content.Client/Shadowkin/ShadowkinSystem.cs index d8e1b69fc7..db374694cd 100644 --- a/Content.Client/Shadowkin/ShadowkinSystem.cs +++ b/Content.Client/Shadowkin/ShadowkinSystem.cs @@ -88,13 +88,6 @@ public override void Update(float frameTime) // intensity = clamp intensity min, max var tintIntensity = 0.65f; - if (TryComp(uid, out var magic)) - { - var min = 0.45f; - var max = 0.75f; - tintIntensity = Math.Clamp(min + (magic.Mana / magic.MaxMana) * 0.333f, min, max); - } - UpdateShader(new Vector3(humanoid.EyeColor.R, humanoid.EyeColor.G, humanoid.EyeColor.B), tintIntensity); } diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs index 6be41af0d8..40f6bd9bb3 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs @@ -293,11 +293,15 @@ public void UpdateIcons() if (_action.BackgroundOn != null) _buttonBackgroundTexture = _spriteSys.Frame0(_action.BackgroundOn); } + else if (_action.IconDisabled is { } iconDisabled && !_action.Enabled) + SetActionIcon(_spriteSys.Frame0(iconDisabled)); + else if (_action.IconCooldown is { } iconCooldown && _action.Cooldown is { } cooldown && + cooldown.End > IoCManager.Resolve().CurTime) + SetActionIcon(_spriteSys.Frame0(iconCooldown)); else - { SetActionIcon(_action.Icon != null ? _spriteSys.Frame0(_action.Icon) : null); - _buttonBackgroundTexture = Theme.ResolveTexture("SlotBackground"); - } + + _buttonBackgroundTexture = Theme.ResolveTexture("SlotBackground"); } public void UpdateBackground() diff --git a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs index d36a91c373..78dd922112 100644 --- a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs +++ b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs @@ -7,6 +7,7 @@ using Content.Client.Administration.UI.Tabs.PlayerTab; using Content.Client.Gameplay; using Content.Client.Lobby; +using Content.Client.Mapping; using Content.Client.UserInterface.Controls; using Content.Client.Verbs.UI; using Content.Shared.Administration.Events; @@ -27,6 +28,7 @@ namespace Content.Client.UserInterface.Systems.Admin; public sealed class AdminUIController : UIController, IOnStateEntered, IOnStateEntered, + IOnStateEntered, IOnSystemChanged { [Dependency] private readonly IClientAdminManager _admin = default!; @@ -83,6 +85,12 @@ public void OnStateEntered(LobbyState state) AdminStatusUpdated(); } + public void OnStateEntered(MappingState state) + { + EnsureWindow(); + AdminStatusUpdated(); + } + public void OnSystemLoaded(AdminSystem system) { EnsureWindow(); diff --git a/Content.Client/UserInterface/Systems/EscapeMenu/EscapeUIController.cs b/Content.Client/UserInterface/Systems/EscapeMenu/EscapeUIController.cs index 85c4af7672..c80de05da2 100644 --- a/Content.Client/UserInterface/Systems/EscapeMenu/EscapeUIController.cs +++ b/Content.Client/UserInterface/Systems/EscapeMenu/EscapeUIController.cs @@ -1,4 +1,5 @@ using Content.Client.Gameplay; +using Content.Client.Mapping; using Content.Client.UserInterface.Controls; using Content.Client.UserInterface.Systems.Guidebook; using Content.Client.UserInterface.Systems.Info; @@ -16,7 +17,7 @@ namespace Content.Client.UserInterface.Systems.EscapeMenu; [UsedImplicitly] -public sealed class EscapeUIController : UIController, IOnStateEntered, IOnStateExited +public sealed class EscapeUIController : UIController, IOnStateEntered, IOnStateExited, IOnStateEntered, IOnStateExited { [Dependency] private readonly IClientConsoleHost _console = default!; [Dependency] private readonly IUriOpener _uri = default!; @@ -123,6 +124,73 @@ public void OnStateExited(GameplayState state) CommandBinds.Unregister(); } + public void OnStateEntered(MappingState state) + { + _escapeWindow = UIManager.CreateWindow(); + + _escapeWindow.OnClose += DeactivateButton; + _escapeWindow.OnOpen += ActivateButton; + + _escapeWindow.ChangelogButton.OnPressed += _ => + { + CloseEscapeWindow(); + _changelog.ToggleWindow(); + }; + + _escapeWindow.RulesButton.OnPressed += _ => + { + CloseEscapeWindow(); + _info.OpenWindow(); + }; + + _escapeWindow.DisconnectButton.OnPressed += _ => + { + CloseEscapeWindow(); + _console.ExecuteCommand("disconnect"); + }; + + _escapeWindow.OptionsButton.OnPressed += _ => + { + CloseEscapeWindow(); + _options.OpenWindow(); + }; + + _escapeWindow.QuitButton.OnPressed += _ => + { + CloseEscapeWindow(); + _console.ExecuteCommand("quit"); + }; + + _escapeWindow.WikiButton.OnPressed += _ => + { + _uri.OpenUri(_cfg.GetCVar(CCVars.InfoLinksWiki)); + }; + + _escapeWindow.GuidebookButton.OnPressed += _ => + { + _guidebook.ToggleGuidebook(); + }; + + // Hide wiki button if we don't have a link for it. + _escapeWindow.WikiButton.Visible = _cfg.GetCVar(CCVars.InfoLinksWiki) != ""; + + CommandBinds.Builder + .Bind(EngineKeyFunctions.EscapeMenu, + InputCmdHandler.FromDelegate(_ => ToggleWindow())) + .Register(); + } + + public void OnStateExited(MappingState state) + { + if (_escapeWindow != null) + { + _escapeWindow.Dispose(); + _escapeWindow = null; + } + + CommandBinds.Unregister(); + } + private void EscapeButtonOnOnPressed(ButtonEventArgs obj) { ToggleWindow(); diff --git a/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs b/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs index 3c6f992ad0..ceea62848b 100644 --- a/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs +++ b/Content.Client/UserInterface/Systems/Ghost/GhostUIController.cs @@ -12,11 +12,11 @@ namespace Content.Client.UserInterface.Systems.Ghost; public sealed class GhostUIController : UIController, IOnSystemChanged { [Dependency] private readonly IEntityNetworkManager _net = default!; - [UISystemDependency] private readonly GhostSystem? _system = default; private GhostGui? Gui => UIManager.GetActiveUIWidgetOrNull(); + public override void Initialize() { base.Initialize(); @@ -125,6 +125,8 @@ public void LoadGui() Gui.RequestWarpsPressed += RequestWarps; Gui.ReturnToBodyPressed += ReturnToBody; Gui.GhostRolesPressed += GhostRolesPressed; + Gui.GhostBarPressed += GhostBarPressed; // Goobstation - Ghost Bar + Gui.GhostBarWindow.SpawnButtonPressed += GhostBarSpawnPressed; // Goobstation - Ghost Bar Gui.TargetWindow.WarpClicked += OnWarpClicked; Gui.TargetWindow.OnGhostnadoClicked += OnGhostnadoClicked; Gui.ReturnToRoundPressed += ReturnToRound; @@ -140,6 +142,8 @@ public void UnloadGui() Gui.RequestWarpsPressed -= RequestWarps; Gui.ReturnToBodyPressed -= ReturnToBody; Gui.GhostRolesPressed -= GhostRolesPressed; + Gui.GhostBarPressed -= GhostBarPressed; // Goobstation - Ghost Bar + Gui.GhostBarWindow.SpawnButtonPressed -= GhostBarSpawnPressed; // Goobstation - Ghost Bar Gui.TargetWindow.WarpClicked -= OnWarpClicked; Gui.ReturnToRoundPressed -= ReturnToRound; @@ -167,4 +171,14 @@ private void GhostRolesPressed() { _system?.OpenGhostRoles(); } + + private void GhostBarPressed() // Goobstation - Ghost Bar + { + Gui?.GhostBarWindow.OpenCentered(); + } + + private void GhostBarSpawnPressed() // Goobstation - Ghost Bar + { + _system?.GhostBarSpawn(); + } } diff --git a/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml b/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml index 5e9349bb43..d47aa85b80 100644 --- a/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml +++ b/Content.Client/UserInterface/Systems/Ghost/Widgets/GhostGui.xaml @@ -1,10 +1,11 @@ - [DataField("registeredDevices")] public HashSet RegisteredDevices = new(); + + /// + /// Specifies whether this device monitors its own internal pipe network rather than the surrounding atmosphere. + /// + /// + /// If 'true', the entity will require a NodeContainerComponent with one or more PipeNodes to function. + /// + [DataField] + public bool MonitorsPipeNet = false; + + /// + /// Specifies the name of the pipe node that this device is monitoring. + /// + [DataField] + public string NodeNameMonitoredPipe = "monitored"; } diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs index 2c9a358755..78b70ac234 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs @@ -4,6 +4,9 @@ using Content.Server.Atmos.Piping.EntitySystems; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Systems; +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.EntitySystems; +using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Shared.Atmos; @@ -25,6 +28,7 @@ public sealed class AtmosMonitorSystem : EntitySystem [Dependency] private readonly AtmosDeviceSystem _atmosDeviceSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly NodeContainerSystem _nodeContainerSystem = default!; // Commands public const string AtmosMonitorSetThresholdCmd = "atmos_monitor_set_threshold"; @@ -56,8 +60,15 @@ private void OnAtmosDeviceLeaveAtmosphere(EntityUid uid, AtmosMonitorComponent a private void OnAtmosDeviceEnterAtmosphere(EntityUid uid, AtmosMonitorComponent atmosMonitor, ref AtmosDeviceEnabledEvent args) { + if (atmosMonitor.MonitorsPipeNet && _nodeContainerSystem.TryGetNode(uid, atmosMonitor.NodeNameMonitoredPipe, out var pipeNode)) + { + atmosMonitor.TileGas = pipeNode.Air; + return; + } + atmosMonitor.TileGas = _atmosphereSystem.GetContainingMixture(uid, true); } + private void OnMapInit(EntityUid uid, AtmosMonitorComponent component, MapInitEvent args) { if (component.TemperatureThresholdId != null) @@ -205,7 +216,7 @@ private void OnAtmosUpdate(EntityUid uid, AtmosMonitorComponent component, ref A if (!this.IsPowered(uid, EntityManager)) return; - if (args.Grid == null) + if (args.Grid == null) return; // if we're not monitoring atmos, don't bother @@ -214,6 +225,10 @@ private void OnAtmosUpdate(EntityUid uid, AtmosMonitorComponent component, ref A && component.GasThresholds == null) return; + // If monitoring a pipe network, get its most recent gas mixture + if (component.MonitorsPipeNet && _nodeContainerSystem.TryGetNode(uid, component.NodeNameMonitoredPipe, out var pipeNode)) + component.TileGas = pipeNode.Air; + UpdateState(uid, component.TileGas, component); } diff --git a/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs index 455d125e44..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 +namespace Content.Server.Atmos.Piping.Components; + +[RegisterComponent] +public sealed partial class AtmosPipeColorComponent : Component { - [RegisterComponent] - public sealed partial class AtmosPipeColorComponent : Component - { - [DataField("color")] - public Color Color { get; set; } = Color.White; + [DataField] + public Color Color { get; set; } = Color.White; - [ViewVariables(VVAccess.ReadWrite), UsedImplicitly] - public Color ColorVV - { - get => Color; - set => EntitySystem.Get().SetColor(Owner, this, value); - } + [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 @@ public void SetColor(EntityUid uid, AtmosPipeColorComponent component, Color col return; _appearance.SetData(uid, PipeColorVisuals.Color, color, appearance); + + var ev = new AtmosPipeColorChangedEvent(color); + RaiseLocalEvent(uid, ref ev); } } } diff --git a/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs b/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs index eac8dc8312..4400387dc8 100644 --- a/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs +++ b/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs @@ -5,31 +5,25 @@ namespace Content.Server.Atmos.Piping.Trinary.Components [RegisterComponent] public sealed partial class GasFilterComponent : Component { - [ViewVariables(VVAccess.ReadWrite)] - [DataField("enabled")] - public bool Enabled { get; set; } = true; + [DataField] + public bool Enabled = true; - [ViewVariables(VVAccess.ReadWrite)] [DataField("inlet")] - public string InletName { get; set; } = "inlet"; + public string InletName = "inlet"; - [ViewVariables(VVAccess.ReadWrite)] [DataField("filter")] - public string FilterName { get; set; } = "filter"; + public string FilterName = "filter"; - [ViewVariables(VVAccess.ReadWrite)] [DataField("outlet")] - public string OutletName { get; set; } = "outlet"; + public string OutletName = "outlet"; - [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float TransferRate = Atmospherics.MaxTransferRate; - [DataField("transferRate")] - public float TransferRate { get; set; } = Atmospherics.MaxTransferRate; + [DataField] + public float MaxTransferRate = Atmospherics.MaxTransferRate; - [DataField("maxTransferRate")] - public float MaxTransferRate { get; set; } = Atmospherics.MaxTransferRate; - - [ViewVariables(VVAccess.ReadWrite)] - public Gas? FilteredGas { get; set; } + [DataField] + public Gas? FilteredGas; } } diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs index 064077a8db..b2143283f7 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs @@ -9,26 +9,25 @@ namespace Content.Server.Atmos.Piping.Unary.Components [Access(typeof(GasVentScrubberSystem))] public sealed partial class GasVentScrubberComponent : Component { - [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } = true; + [DataField] + public bool Enabled { get; set; } = false; - [ViewVariables] + [DataField] public bool IsDirty { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] [DataField("outlet")] public string OutletName { get; set; } = "pipe"; - [ViewVariables] - public readonly HashSet FilterGases = new(GasVentScrubberData.DefaultFilterGases); + [DataField] + public HashSet FilterGases = new(GasVentScrubberData.DefaultFilterGases); - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public ScrubberPumpDirection PumpDirection { get; set; } = ScrubberPumpDirection.Scrubbing; /// /// Target volume to transfer. If is enabled, actual transfer rate will be much higher. /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float TransferRate { get => _transferRate; @@ -37,18 +36,17 @@ public float TransferRate private float _transferRate = Atmospherics.MaxTransferRate; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxTransferRate")] + [DataField] public float MaxTransferRate = Atmospherics.MaxTransferRate; /// /// As pressure difference approaches this number, the effective volume rate may be smaller than /// - [DataField("maxPressure")] + [DataField] public float MaxPressure = Atmospherics.MaxOutputPressure; - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool WideNet { get; set; } = false; public GasVentScrubberData ToAirAlarmData() diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs index 7220c04ea8..b09609a86f 100644 --- a/Content.Server/Bed/BedSystem.cs +++ b/Content.Server/Bed/BedSystem.cs @@ -101,6 +101,8 @@ private void OnStasisStrapped(Entity bed, ref StrappedEvent var metabolicEvent = new ApplyMetabolicMultiplierEvent(args.Buckle, bed.Comp.Multiplier, true); RaiseLocalEvent(args.Buckle, ref metabolicEvent); + + EnsureComp(args.Buckle); } private void OnStasisUnstrapped(Entity bed, ref UnstrappedEvent args) @@ -110,6 +112,8 @@ private void OnStasisUnstrapped(Entity bed, ref UnstrappedEv var metabolicEvent = new ApplyMetabolicMultiplierEvent(args.Buckle, bed.Comp.Multiplier, false); RaiseLocalEvent(args.Buckle, ref metabolicEvent); + + RemComp(args.Buckle); } private void OnPowerChanged(EntityUid uid, StasisBedComponent component, ref PowerChangedEvent args) diff --git a/Content.Server/Bed/Components/InStasisComponent.cs b/Content.Server/Bed/Components/InStasisComponent.cs new file mode 100644 index 0000000000..d7c0272f5a --- /dev/null +++ b/Content.Server/Bed/Components/InStasisComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Bed.Components; + +// +// Component added only to entities buckled to a stasis bed. +// +[RegisterComponent] +public sealed partial class InStasisComponent : Component {} diff --git a/Content.Server/Body/Components/InternalsComponent.cs b/Content.Server/Body/Components/InternalsComponent.cs index 098f178921..ef908f9655 100644 --- a/Content.Server/Body/Components/InternalsComponent.cs +++ b/Content.Server/Body/Components/InternalsComponent.cs @@ -13,7 +13,7 @@ public sealed partial class InternalsComponent : Component public EntityUid? GasTankEntity; [ViewVariables] - public EntityUid? BreathToolEntity; + public HashSet BreathTools { get; set; } = new(); /// /// Toggle Internals delay when the target is not you. diff --git a/Content.Server/Body/Components/LungComponent.cs b/Content.Server/Body/Components/LungComponent.cs index 4fb769d670..a2c73ebf40 100644 --- a/Content.Server/Body/Components/LungComponent.cs +++ b/Content.Server/Body/Components/LungComponent.cs @@ -34,4 +34,10 @@ public sealed partial class LungComponent : Component /// [DataField] public ProtoId Alert = "LowOxygen"; + + [DataField] + public float MaxVolume = 100f; + + [DataField] + public bool CanReact = false; // No Dexalin lungs... right? } diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 56fc981a0f..260c2e3e96 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -44,7 +44,7 @@ public override void Initialize() private void OnStartingGear(EntityUid uid, InternalsComponent component, ref StartingGearEquippedEvent args) { - if (component.BreathToolEntity == null) + if (component.BreathTools.Count == 0) return; if (component.GasTankEntity != null) @@ -111,7 +111,7 @@ public void ToggleInternals( } // If they're not on then check if we have a mask to use - if (internals.BreathToolEntity is null) + if (internals.BreathTools.Count == 0) { _popupSystem.PopupEntity(Loc.GetString("internals-no-breath-tool"), uid, user); return; @@ -178,29 +178,28 @@ private void OnInhaleLocation(Entity ent, ref InhaleLocation _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); } } - public void DisconnectBreathTool(Entity ent) + public void DisconnectBreathTool(Entity ent, EntityUid toolEntity) { - var old = ent.Comp.BreathToolEntity; - ent.Comp.BreathToolEntity = null; + ent.Comp.BreathTools.Remove(toolEntity); - if (TryComp(old, out BreathToolComponent? breathTool)) - { - _atmos.DisconnectInternals(breathTool); + if (TryComp(toolEntity, out BreathToolComponent? breathTool)) + _atmos.DisconnectInternals((toolEntity, breathTool)); + + if (ent.Comp.BreathTools.Count == 0) DisconnectTank(ent); - } _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); } public void ConnectBreathTool(Entity ent, EntityUid toolEntity) { - if (TryComp(ent.Comp.BreathToolEntity, out BreathToolComponent? tool)) - { - _atmos.DisconnectInternals(tool); - } + if (!ent.Comp.BreathTools.Add(toolEntity)) + return; - ent.Comp.BreathToolEntity = toolEntity; _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); + + var ev = new BreathToolConnectedEvent(ent.Owner, toolEntity); + RaiseLocalEvent(ent.Owner, ev); } public void DisconnectTank(InternalsComponent? component) @@ -217,7 +216,7 @@ public void DisconnectTank(InternalsComponent? component) public bool TryConnectTank(Entity ent, EntityUid tankEntity) { - if (ent.Comp.BreathToolEntity is null) + if (ent.Comp.BreathTools.Count == 0) return false; if (TryComp(ent.Comp.GasTankEntity, out GasTankComponent? tank)) @@ -236,14 +235,14 @@ public bool AreInternalsWorking(EntityUid uid, InternalsComponent? component = n public bool AreInternalsWorking(InternalsComponent component) { - return TryComp(component.BreathToolEntity, out BreathToolComponent? breathTool) + return TryComp(component.BreathTools.FirstOrNull(), out BreathToolComponent? breathTool) && breathTool.IsFunctional && HasComp(component.GasTankEntity); } private short GetSeverity(InternalsComponent component) { - if (component.BreathToolEntity is null || !AreInternalsWorking(component)) + if (component.BreathTools.Count == 0 || !AreInternalsWorking(component)) return 2; // If pressure in the tank is below low pressure threshold, flash warning on internals UI @@ -292,3 +291,18 @@ private short GetSeverity(InternalsComponent component) return null; } } + +/// +/// Raised on an equipee when it has breath tools connected. +/// +public sealed class BreathToolConnectedEvent : EntityEventArgs +{ + public readonly EntityUid Equipee; + public readonly EntityUid BreathTool; + + public BreathToolConnectedEvent(EntityUid equipee, EntityUid breathTool) + { + Equipee = equipee; + BreathTool = breathTool; + } +} diff --git a/Content.Server/Body/Systems/LungSystem.cs b/Content.Server/Body/Systems/LungSystem.cs index 7e58c24f7e..5919d958c9 100644 --- a/Content.Server/Body/Systems/LungSystem.cs +++ b/Content.Server/Body/Systems/LungSystem.cs @@ -1,20 +1,25 @@ using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; -using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Atmos; using Content.Shared.Chemistry.Components; using Content.Shared.Clothing; using Content.Shared.Inventory.Events; +using Content.Shared.Inventory; +using Content.Server.Power.EntitySystems; +using Robust.Server.Containers; namespace Content.Server.Body.Systems; public sealed class LungSystem : EntitySystem { - [Dependency] private readonly AtmosphereSystem _atmos = default!; - [Dependency] private readonly InternalsSystem _internals = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly InternalsSystem _internals = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; // Goobstation + + public static string LungSolutionName = "Lung"; @@ -22,6 +27,7 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnBreathToolInit); // Goobstation - Modsuits - Update on component toggle SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); SubscribeLocalEvent(OnMaskToggled); @@ -50,16 +56,36 @@ private void OnGotEquipped(Entity ent, ref GotEquippedEvent private void OnComponentInit(Entity entity, ref ComponentInit args) { - var solution = _solutionContainerSystem.EnsureSolution(entity.Owner, entity.Comp.SolutionName); - solution.MaxVolume = 100.0f; - solution.CanReact = false; // No dexalin lungs + if (_solutionContainerSystem.EnsureSolution(entity.Owner, entity.Comp.SolutionName, out var solution)) + { + solution.MaxVolume = entity.Comp.MaxVolume; + solution.CanReact = entity.Comp.CanReact; + } + } + + // Goobstation - Update component state on component toggle + private void OnBreathToolInit(Entity ent, ref ComponentInit args) + { + var comp = ent.Comp; + + comp.IsFunctional = true; + + if (!_inventory.TryGetContainingEntity(ent.Owner, out var parent) + || !_inventory.TryGetContainingSlot(ent.Owner, out var slot) + || (slot.SlotFlags & comp.AllowedSlots) == 0 + || !TryComp(parent, out InternalsComponent? internals)) + return; + + ent.Comp.ConnectedInternalsEntity = parent; + _internals.ConnectBreathTool((parent.Value, internals), ent); } + private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { if (args.IsToggled || args.IsEquip) { - _atmos.DisconnectInternals(ent.Comp); + _atmosphereSystem.DisconnectInternals(ent); } else { diff --git a/Content.Server/CartridgeLoader/Cartridges/PsiWatchCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/PsiWatchCartridgeComponent.cs new file mode 100644 index 0000000000..66a8b131d3 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/PsiWatchCartridgeComponent.cs @@ -0,0 +1,28 @@ +using Content.Shared.Psionics; + +/// +/// ADAPTED FROM SECWATCH - DELTAV +/// + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent, Access(typeof(PsiWatchCartridgeSystem))] +public sealed partial class PsiWatchCartridgeComponent : Component +{ + /// + /// Only show people with these statuses. + /// + [DataField] + public List Statuses = new() + { + PsionicsStatus.Abusing, + PsionicsStatus.Registered, + PsionicsStatus.Suspected + }; + + /// + /// Station entity thats getting its records checked. + /// + [DataField] + public EntityUid? Station; +} diff --git a/Content.Server/CartridgeLoader/Cartridges/PsiWatchCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/PsiWatchCartridgeSystem.cs new file mode 100644 index 0000000000..c0936e10fd --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/PsiWatchCartridgeSystem.cs @@ -0,0 +1,77 @@ +using Content.Server.Station.Systems; +using Content.Server.StationRecords; +using Content.Server.StationRecords.Systems; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.PsionicsRecords; +using Content.Shared.StationRecords; + +/// +/// ADAPTED FROM SECWATCH - DELTAV +/// + +namespace Content.Server.CartridgeLoader.Cartridges; + +public sealed class PsiWatchCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoader = default!; + [Dependency] private readonly StationRecordsSystem _records = default!; + [Dependency] private readonly StationSystem _station = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRecordModified); + + SubscribeLocalEvent(OnUiReady); + } + + private void OnRecordModified(RecordModifiedEvent args) + { + // when a record is modified update the ui of every loaded cartridge tuned to the same station + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var cartridge)) + { + if (cartridge.LoaderUid is not {} loader || comp.Station != args.Station) + continue; + + UpdateUI((uid, comp), loader); + } + } + + private void OnUiReady(Entity ent, ref CartridgeUiReadyEvent args) + { + UpdateUI(ent, args.Loader); + } + + private void UpdateUI(Entity ent, EntityUid loader) + { + // if the loader is on a grid, update the station + // if it is off grid use the cached station + if (_station.GetOwningStation(loader) is {} station) + ent.Comp.Station = station; + + if (!TryComp(ent.Comp.Station, out var records)) + return; + + station = ent.Comp.Station.Value; + + var entries = new List(); + foreach (var (id, criminal) in _records.GetRecordsOfType(station, records)) + { + if (!ent.Comp.Statuses.Contains(criminal.Status)) + continue; + + var key = new StationRecordKey(id, station); + if (!_records.TryGetRecord(key, out var general, records)) + continue; + + var status = criminal.Status; + entries.Add(new PsiWatchEntry(general.Name, general.JobTitle, criminal.Status, criminal.Reason)); + } + + var state = new PsiWatchUiState(entries); + _cartridgeLoader.UpdateCartridgeUiState(loader, state); + } +} diff --git a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs index 09a8f3562d..50c63bff6e 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs @@ -33,16 +33,20 @@ public sealed class ChemMasterSystem : EntitySystem { [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly AudioSystem _audioSystem = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private readonly StorageSystem _storageSystem = default!; [Dependency] private readonly LabelSystem _labelSystem = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; [ValidatePrototypeId] private const string PillPrototypeId = "Pill"; + [ValidatePrototypeId] + private const string PillCanisterPrototypeId = "PillCanister"; + public override void Initialize() { base.Initialize(); @@ -70,18 +74,25 @@ private void UpdateUiState(Entity ent, bool updateLabel = f var (owner, chemMaster) = ent; if (!_solutionContainerSystem.TryGetSolution(owner, SharedChemMaster.BufferSolutionName, out _, out var bufferSolution)) return; - var inputContainer = _itemSlotsSystem.GetItemOrNull(owner, SharedChemMaster.InputSlotName); - var outputContainer = _itemSlotsSystem.GetItemOrNull(owner, SharedChemMaster.OutputSlotName); + + if (!_solutionContainerSystem.TryGetSolution(owner, SharedChemMaster.PillBufferSolutionName, out _, out var pillBufferSolution)) + return; + + var container = _itemSlotsSystem.GetItemOrNull(owner, SharedChemMaster.InputSlotName); var bufferReagents = bufferSolution.Contents; var bufferCurrentVolume = bufferSolution.Volume; + var pillBufferReagents = pillBufferSolution.Contents; + var pillBufferCurrentVolume = pillBufferSolution.Volume; + var state = new ChemMasterBoundUserInterfaceState( chemMaster.Mode, - BuildInputContainerInfo(inputContainer), - BuildOutputContainerInfo(outputContainer), + BuildInputContainerInfo(container), bufferReagents, + pillBufferReagents, bufferCurrentVolume, + pillBufferCurrentVolume, chemMaster.PillType, chemMaster.PillDosageLimit, updateLabel, @@ -118,10 +129,10 @@ private void OnReagentButtonMessage(Entity chemMaster, ref switch (chemMaster.Comp.Mode) { case ChemMasterMode.Transfer: - TransferReagents(chemMaster, message.ReagentId, message.Amount, message.FromBuffer); + TransferReagents(chemMaster, message.ReagentId, message.Amount, message.FromBuffer, message.IsOutput); break; case ChemMasterMode.Discard: - DiscardReagents(chemMaster, message.ReagentId, message.Amount, message.FromBuffer); + DiscardReagents(chemMaster, message.ReagentId, message.Amount, message.FromBuffer, message.IsOutput); break; default: // Invalid mode. @@ -131,38 +142,45 @@ private void OnReagentButtonMessage(Entity chemMaster, ref ClickSound(chemMaster); } - private void TransferReagents(Entity chemMaster, ReagentId id, FixedPoint2 amount, bool fromBuffer) + private void TransferReagents(Entity chemMaster, ReagentId id, FixedPoint2 amount, bool fromBuffer, bool isOutput) { var container = _itemSlotsSystem.GetItemOrNull(chemMaster, SharedChemMaster.InputSlotName); if (container is null || !_solutionContainerSystem.TryGetFitsInDispenser(container.Value, out var containerSoln, out var containerSolution) || - !_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.BufferSolutionName, out _, out var bufferSolution)) - { + !_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.BufferSolutionName, out _, out var bufferSolution) || + !_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.PillBufferSolutionName, out _, out var pillBufferSolution)) return; - } if (fromBuffer) // Buffer to container { amount = FixedPoint2.Min(amount, containerSolution.AvailableVolume); - amount = bufferSolution.RemoveReagent(id, amount, preserveOrder: true); + var solution = isOutput ? pillBufferSolution : bufferSolution; + + amount = solution.RemoveReagent(id, amount, preserveOrder: true); _solutionContainerSystem.TryAddReagent(containerSoln.Value, id, amount, out var _); } else // Container to buffer { amount = FixedPoint2.Min(amount, containerSolution.GetReagentQuantity(id)); _solutionContainerSystem.RemoveReagent(containerSoln.Value, id, amount); - bufferSolution.AddReagent(id, amount); + + var solution = isOutput ? pillBufferSolution : bufferSolution; + solution.AddReagent(id, amount); } UpdateUiState(chemMaster, updateLabel: true); } - private void DiscardReagents(Entity chemMaster, ReagentId id, FixedPoint2 amount, bool fromBuffer) + private void DiscardReagents(Entity chemMaster, ReagentId id, FixedPoint2 amount, bool fromBuffer, bool isOutput) { if (fromBuffer) { - if (_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.BufferSolutionName, out _, out var bufferSolution)) - bufferSolution.RemoveReagent(id, amount, preserveOrder: true); + if (_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.BufferSolutionName, out _, out var bufferSolution) && + _solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.PillSolutionName, out _, out var pillBufferSolution)) + { + var solution = isOutput ? pillBufferSolution : bufferSolution; + solution.RemoveReagent(id, amount, preserveOrder: true); + } else return; } @@ -171,9 +189,7 @@ private void DiscardReagents(Entity chemMaster, ReagentId i var container = _itemSlotsSystem.GetItemOrNull(chemMaster, SharedChemMaster.InputSlotName); if (container is not null && _solutionContainerSystem.TryGetFitsInDispenser(container.Value, out var containerSolution, out _)) - { _solutionContainerSystem.RemoveReagent(containerSolution.Value, id, amount); - } else return; } @@ -185,6 +201,14 @@ private void OnCreatePillsMessage(Entity chemMaster, ref Ch { var user = message.Actor; var maybeContainer = _itemSlotsSystem.GetItemOrNull(chemMaster, SharedChemMaster.OutputSlotName); + + if (maybeContainer == null) + { + var canister = _entityManager.SpawnEntity(PillCanisterPrototypeId, Transform(chemMaster.Owner).Coordinates); + _itemSlotsSystem.TryInsert(chemMaster.Owner, SharedChemMaster.OutputSlotName, canister, null); + maybeContainer = canister; + } + if (maybeContainer is not { Valid: true } container || !TryComp(container, out StorageComponent? storage)) { @@ -215,16 +239,26 @@ private void OnCreatePillsMessage(Entity chemMaster, ref Ch _storageSystem.Insert(container, item, out _, user: user, storage); _labelSystem.Label(item, message.Label); - var itemSolution = _solutionContainerSystem.EnsureSolutionEntity(item, SharedChemMaster.PillSolutionName, message.Dosage, null, out _); - _solutionContainerSystem.TryAddSolution(itemSolution, withdrawal.SplitSolution(message.Dosage)); + var hasItemSolution = _solutionContainerSystem.EnsureSolutionEntity( + (item, null), + SharedChemMaster.PillSolutionName, + out var itemSolution, + message.Dosage); + + if (!hasItemSolution || itemSolution is null) + continue; + + _solutionContainerSystem.TryAddSolution(itemSolution.Value, withdrawal.SplitSolution(message.Dosage)); var pill = EnsureComp(item); pill.PillType = chemMaster.Comp.PillType; Dirty(item, pill); // Log pill creation by a user - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(user):user} printed {ToPrettyString(item):pill} {SharedSolutionContainerSystem.ToPrettyString(itemSolution.Comp.Solution)}"); + _adminLogger.Add( + LogType.Action, + LogImpact.Low, + $"{ToPrettyString(user):user} printed {ToPrettyString(item):pill} {SharedSolutionContainerSystem.ToPrettyString(itemSolution.Value.Comp.Solution)}"); } UpdateUiState(chemMaster); @@ -235,11 +269,17 @@ private void OnOutputToBottleMessage(Entity chemMaster, ref { var user = message.Actor; var maybeContainer = _itemSlotsSystem.GetItemOrNull(chemMaster, SharedChemMaster.OutputSlotName); + + if (maybeContainer == null) + { + var canister = _entityManager.SpawnEntity(PillCanisterPrototypeId, Transform(chemMaster.Owner).Coordinates); + _itemSlotsSystem.TryInsert(chemMaster.Owner, SharedChemMaster.OutputSlotName, canister, null); + maybeContainer = canister; + } + if (maybeContainer is not { Valid: true } container || !_solutionContainerSystem.TryGetSolution(container, SharedChemMaster.BottleSolutionName, out var soln, out var solution)) - { return; // output can't fit reagents - } // Ensure the amount is valid. if (message.Dosage == 0 || message.Dosage > solution.AvailableVolume) @@ -270,10 +310,8 @@ private bool WithdrawFromBuffer( { outputSolution = null; - if (!_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.BufferSolutionName, out _, out var solution)) - { + if (!_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.PillBufferSolutionName, out _, out var solution)) return false; - } if (solution.Volume == 0) { @@ -313,43 +351,11 @@ private void ClickSound(Entity chemMaster) return BuildContainerInfo(Name(container.Value), solution); } - private ContainerInfo? BuildOutputContainerInfo(EntityUid? container) - { - if (container is not { Valid: true }) - return null; - - var name = Name(container.Value); - { - if (_solutionContainerSystem.TryGetSolution( - container.Value, SharedChemMaster.BottleSolutionName, out _, out var solution)) - { - return BuildContainerInfo(name, solution); - } - } - - if (!TryComp(container, out StorageComponent? storage)) - return null; - - var pills = storage.Container.ContainedEntities.Select((Func) (pill => - { - _solutionContainerSystem.TryGetSolution(pill, SharedChemMaster.PillSolutionName, out _, out var solution); - var quantity = solution?.Volume ?? FixedPoint2.Zero; - return (Name(pill), quantity); - })).ToList(); - - return new ContainerInfo(name, _storageSystem.GetCumulativeItemAreas((container.Value, storage)), storage.Grid.GetArea()) - { - Entities = pills - }; - } - - private static ContainerInfo BuildContainerInfo(string name, Solution solution) - { - return new ContainerInfo(name, solution.Volume, solution.MaxVolume) + private static ContainerInfo BuildContainerInfo(string name, Solution solution) => + new(name, solution.Volume, solution.MaxVolume) { Reagents = solution.Contents }; - } private void OnSortMethodUpdated(EntityUid uid, ChemMasterComponent chemMaster, ChemMasterSortMethodUpdated args) { diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index 77c8620ea4..39ddca3412 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -1,5 +1,8 @@ +using Content.Server.Abilities.Chitinid; using Content.Server.Body.Components; using Content.Server.Body.Systems; +using Content.Server.Chat.Managers; +using Content.Shared.Chat; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; @@ -13,6 +16,8 @@ using Content.Shared.Interaction; using Content.Shared.Mobs.Components; using Content.Shared.Stacks; +using Robust.Server.Player; + namespace Content.Server.Chemistry.EntitySystems; @@ -20,6 +25,10 @@ public sealed class InjectorSystem : SharedInjectorSystem { [Dependency] private readonly BloodstreamSystem _blood = default!; [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; + [Dependency] private readonly IChatManager _chat = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + private const ChatChannel BlockInjectionDenyChannel = ChatChannel.Emotes; public override void Initialize() { @@ -114,6 +123,24 @@ private void OnInjectorAfterInteract(Entity entity, ref After /// private void InjectDoAfter(Entity injector, EntityUid target, EntityUid user) { + if (TryComp(target, out var blockComponent)) // DeltaV + { + var msg = Loc.GetString($"injector-component-deny-{blockComponent.BlockReason}"); + Popup.PopupEntity(msg, target, user); + + if (!_playerManager.TryGetSessionByEntity(target, out var session)) + return; + + _chat.ChatMessageToOne( + BlockInjectionDenyChannel, + msg, + msg, + EntityUid.Invalid, + false, + session.Channel); + return; + } + // Create a pop-up for the user if (injector.Comp.ToggleState == InjectorToggleMode.Draw) { @@ -254,6 +281,9 @@ private void TryInjectIntoBloodstream(Entity injector, Entity private void TryInject(Entity injector, EntityUid targetEntity, Entity targetSolution, EntityUid user, bool asRefill) { + if (HasComp(targetEntity)) // DeltaV + return; + if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var soln, out var solution) || solution.Volume == 0) return; diff --git a/Content.Server/Cloning/CloningConsoleSystem.cs b/Content.Server/Cloning/CloningConsoleSystem.cs index 7a54cce31f..4c7c21ab74 100644 --- a/Content.Server/Cloning/CloningConsoleSystem.cs +++ b/Content.Server/Cloning/CloningConsoleSystem.cs @@ -6,6 +6,7 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Shared.UserInterface; +using Content.Shared.CCVar; using Content.Shared.Cloning; using Content.Shared.Cloning.CloningConsole; using Content.Shared.Database; @@ -19,6 +20,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Configuration; namespace Content.Server.Cloning { @@ -33,6 +35,7 @@ public sealed class CloningConsoleSystem : EntitySystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly IConfigurationManager _config = default!; public override void Initialize() { @@ -220,7 +223,7 @@ private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConso { scanBodyInfo = MetaData(scanBody.Value).EntityName; - if (!_mobStateSystem.IsDead(scanBody.Value)) + if (!_config.GetCVar(CCVars.CloningAllowLivingPeople) && !_mobStateSystem.IsDead(scanBody.Value)) clonerStatus = ClonerStatus.ScannerOccupantAlive; else if (!_mindSystem.TryGetMind(scanBody.Value, out _, out var mind) || mind.UserId == null diff --git a/Content.Server/Cloning/CloningSystem.Utility.cs b/Content.Server/Cloning/CloningSystem.Utility.cs index d98e105e63..19021670e9 100644 --- a/Content.Server/Cloning/CloningSystem.Utility.cs +++ b/Content.Server/Cloning/CloningSystem.Utility.cs @@ -190,7 +190,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod) } if (!HasComp(uid)) - _material.SpawnMultipleFromMaterial(_random.Next(1, (int) (clonePod.UsedBiomass / 2.5)), clonePod.RequiredMaterial, Transform(uid).Coordinates); + _material.SpawnMultipleFromMaterial(_random.Next(1, Math.Max(1, (int) (clonePod.UsedBiomass / 2.5))), clonePod.RequiredMaterial, Transform(uid).Coordinates); clonePod.UsedBiomass = 0; clonePod.ActivelyCloning = false; diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index c107bbab7d..c322483bc1 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -10,7 +10,7 @@ using Content.Server.Materials; using Content.Server.Popups; using Content.Server.Power.EntitySystems; -using Content.Server.Traits.Assorted; +using Content.Shared.Silicon.Components; // Goobstation using Content.Shared.Atmos; using Content.Shared.CCVar; using Content.Shared.Chemistry.Components; @@ -85,6 +85,11 @@ public sealed partial class CloningSystem : EntitySystem [Dependency] private readonly MobThresholdSystem _thresholds = default!; public readonly Dictionary ClonesWaitingForMind = new(); + // + // The minimum mass an entity needs for its mass to affect the cloning timer with a MassContest. + // + private const float MinMassContestMass = 71f; + public override void Initialize() { base.Initialize(); @@ -179,7 +184,8 @@ private void Reset(RoundRestartCleanupEvent ev) /// public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity mindEnt, CloningPodComponent clonePod, float failChanceModifier = 1) { - if (!_mobStateSystem.IsDead(bodyToClone) + var allowLivingPeople = _config.GetCVar(CCVars.CloningAllowLivingPeople); + if ((!allowLivingPeople && !_mobStateSystem.IsDead(bodyToClone)) || clonePod.ActivelyCloning || clonePod.ConnectedConsole == null || !CheckUncloneable(uid, bodyToClone, clonePod, out var cloningCostMultiplier) @@ -190,7 +196,8 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity(clone, out var cloneMindComp) && (cloneMindComp.Mind == null || cloneMindComp.Mind == mindEnt)) @@ -199,7 +206,7 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity(bodyToClone)) + return false; // Goobstation: Don't clone IPCs. + // Yes, this can return true without making a body. If it returns true, we're making clone soup instead. if (CheckGeneticDamage(uid, bodyToClone, clonePod, out var geneticDamage, failChanceModifier)) return true; @@ -247,8 +257,11 @@ public void AttemptCloning(EntityUid cloningPod, CloningPodComponent cloningPodC { if (cloningPodComponent.BodyContainer.ContainedEntity is { Valid: true } entity && TryComp(entity, out var physics) - && physics.Mass > 71) + && physics.Mass > MinMassContestMass) + { Timer.Spawn(TimeSpan.FromSeconds(cloningPodComponent.CloningTime * _contests.MassContest(entity, physics, true)), () => EndCloning(cloningPod, cloningPodComponent)); + return; + } Timer.Spawn(TimeSpan.FromSeconds(cloningPodComponent.CloningTime), () => EndCloning(cloningPod, cloningPodComponent)); } diff --git a/Content.Server/Clothing/Systems/LoadoutSystem.cs b/Content.Server/Clothing/Systems/LoadoutSystem.cs index 3415d1c2c6..b27f33c954 100644 --- a/Content.Server/Clothing/Systems/LoadoutSystem.cs +++ b/Content.Server/Clothing/Systems/LoadoutSystem.cs @@ -34,10 +34,15 @@ public sealed class LoadoutSystem : EntitySystem [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly ILogManager _log = default!; + + private ISawmill _sawmill = default!; public override void Initialize() { + _sawmill = _log.GetSawmill("loadouts"); + SubscribeLocalEvent(OnPlayerSpawnComplete); } @@ -45,7 +50,8 @@ public override void Initialize() private void OnPlayerSpawnComplete(PlayerSpawnCompleteEvent ev) { if (ev.JobId == null || Deleted(ev.Mob) || !Exists(ev.Mob) - || !_protoMan.TryIndex(ev.JobId, out _) + || !HasComp(ev.Mob) // TODO: FIND THE STUPID RACE CONDITION THAT IS MAKING ME CHECK FOR THIS. + || !_protoMan.TryIndex(ev.JobId, out var job) || !_configurationManager.GetCVar(CCVars.GameLoadoutsEnabled)) return; @@ -54,7 +60,8 @@ private void OnPlayerSpawnComplete(PlayerSpawnCompleteEvent ev) ev.JobId, ev.Profile, _playTimeTracking.GetTrackerTimes(ev.Player), - ev.Player.ContentData()?.Whitelisted ?? false); + ev.Player.ContentData()?.Whitelisted ?? false, + jobProto: job); } @@ -65,29 +72,36 @@ public void ApplyCharacterLoadout( HumanoidCharacterProfile profile, Dictionary playTimes, bool whitelisted, - bool deleteFailed = false) + bool deleteFailed = false, + JobPrototype? jobProto = null) { // Spawn the loadout, get a list of items that failed to equip var (failedLoadouts, allLoadouts) = _loadout.ApplyCharacterLoadout(uid, job, profile, playTimes, whitelisted, out var heirlooms); // Try to find back-mounted storage apparatus - if (!_inventory.TryGetSlotEntity(uid, "back", out var item) || - !EntityManager.TryGetComponent(item, out var inventory)) - return; - - // Try inserting the entity into the storage, if it can't, it leaves the loadout item on the ground - foreach (var loadout in failedLoadouts) - { - if ((!EntityManager.TryGetComponent(loadout, out var itemComp) - || !_storage.CanInsert(item.Value, loadout, out _, inventory, itemComp) - || !_storage.Insert(item.Value, loadout, out _, playSound: false)) - && deleteFailed) - EntityManager.QueueDeleteEntity(loadout); - } + if (_inventory.TryGetSlotEntity(uid, "back", out var item) && + EntityManager.TryGetComponent(item, out var inventory)) + // Try inserting the entity into the storage, if it can't, it leaves the loadout item on the ground + foreach (var loadout in failedLoadouts) + if ((!EntityManager.TryGetComponent(loadout, out var itemComp) + || !_storage.CanInsert(item.Value, loadout, out _, inventory, itemComp) + || !_storage.Insert(item.Value, loadout, out _, playSound: false)) + && deleteFailed) + EntityManager.QueueDeleteEntity(loadout); foreach (var loadout in allLoadouts) { + if (loadout.Item1 == EntityUid.Invalid + || !HasComp(loadout.Item1) + || Deleted(loadout.Item1)) + { + _sawmill.Warning($"Loadout {loadout.Item2.LoadoutName} failed to load properly, deleting."); + EntityManager.QueueDeleteEntity(loadout.Item1); + + continue; + } + var loadoutProto = _protoMan.Index(loadout.Item2.LoadoutName); if (loadoutProto.CustomName && loadout.Item2.CustomName != null) _meta.SetEntityName(loadout.Item1, loadout.Item2.CustomName); @@ -121,5 +135,10 @@ public void ApplyCharacterLoadout( Dirty(uid, haver); Dirty(heirloom.Item1, comp); } + + if (jobProto != null || + _protoMan.TryIndex(job, out jobProto)) + foreach (var special in jobProto.AfterLoadoutSpecial) + special.AfterEquip(uid); } } diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index ad7b2a11b0..c844dd2c9a 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -2,7 +2,6 @@ using Content.Server.Administration.Logs; using Content.Server.Construction.Components; using Content.Server.Temperature.Components; -using Content.Server.Temperature.Systems; using Content.Shared.Construction; using Content.Shared.Construction.Components; using Content.Shared.Construction.EntitySystems; @@ -11,6 +10,7 @@ using Content.Shared.Interaction; using Content.Shared.Prying.Systems; using Content.Shared.Radio.EntitySystems; +using Content.Shared.Temperature; using Content.Shared.Tools.Systems; using Robust.Shared.Containers; using Robust.Shared.Utility; diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index 70e404fdef..e276965d43 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -15,6 +15,7 @@ + diff --git a/Content.Server/Damage/Components/DamageOnHitComponent.cs b/Content.Server/Damage/Components/DamageOnHitComponent.cs index 3580e9a8d5..31b3ea730a 100644 --- a/Content.Server/Damage/Components/DamageOnHitComponent.cs +++ b/Content.Server/Damage/Components/DamageOnHitComponent.cs @@ -1,7 +1,9 @@ using Content.Shared.Damage; +using Content.Shared._Shitmed.Targeting; -// Damages the held item by a set amount when it hits someone. Can be used to make melee items limited-use. +// Damages the entity by a set amount when it hits someone. +// Can be used to make melee items limited-use or make an entity deal self-damage with unarmed attacks. namespace Content.Server.Damage.Components; [RegisterComponent] @@ -14,5 +16,13 @@ public sealed partial class DamageOnHitComponent : Component [DataField("damage", required: true)] [ViewVariables(VVAccess.ReadWrite)] public DamageSpecifier Damage = default!; -} + // + // The body parts to deal damage to. + // When there is more than one listed element, + // randomly selects between one of the elements. + // + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public List? TargetParts = null; +} diff --git a/Content.Server/Damage/Systems/DamageOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOnHitSystem.cs index f129a14f79..3626796dcd 100644 --- a/Content.Server/Damage/Systems/DamageOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnHitSystem.cs @@ -9,17 +9,22 @@ namespace Content.Server.Damage.Systems; public sealed class DamageOnHitSystem : EntitySystem { [Dependency] private readonly DamageableSystem _damageableSystem = default!; + private readonly Random _random = new Random(); public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(DamageItem); + SubscribeLocalEvent(DamageSelf); } - // Looks for a hit, then damages the held item an appropriate amount. - private void DamageItem(EntityUid uid, DamageOnHitComponent component, MeleeHitEvent args) + + // Looks for a hit, then damages the entity an appropriate amount. + private void DamageSelf(EntityUid uid, DamageOnHitComponent component, MeleeHitEvent args) { if (args.HitEntities.Any()) { - _damageableSystem.TryChangeDamage(uid, component.Damage, component.IgnoreResistances); + _damageableSystem.TryChangeDamage(uid, component.Damage, component.IgnoreResistances, + targetPart: component.TargetParts is not null + ? component.TargetParts[_random.Next(component.TargetParts.Count)] + : null); } } } diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 5f9ef727d6..b7cbbacff9 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -229,6 +229,9 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) profile.Age, sex, gender, + profile.DisplayPronouns, + profile.StationAiName, + profile.CyborgName, new HumanoidCharacterAppearance( profile.HairName, Color.FromHex(profile.HairColor), @@ -271,6 +274,9 @@ private static Profile ConvertProfiles(HumanoidCharacterProfile humanoid, int sl profile.Age = humanoid.Age; profile.Sex = humanoid.Sex.ToString(); profile.Gender = humanoid.Gender.ToString(); + profile.DisplayPronouns = humanoid.DisplayPronouns; + profile.StationAiName = humanoid.StationAiName; + profile.CyborgName = humanoid.CyborgName; profile.Height = humanoid.Height; profile.Width = humanoid.Width; profile.HairName = appearance.HairStyleId; diff --git a/Content.Server/Decals/DecalSystem.cs b/Content.Server/Decals/DecalSystem.cs index c8e062ce6f..d274bc7ccd 100644 --- a/Content.Server/Decals/DecalSystem.cs +++ b/Content.Server/Decals/DecalSystem.cs @@ -21,7 +21,6 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using static Content.Shared.Decals.DecalGridComponent; -using ChunkIndicesEnumerator = Robust.Shared.Map.Enumerators.ChunkIndicesEnumerator; namespace Content.Server.Decals { @@ -341,33 +340,6 @@ public override bool RemoveDecal(EntityUid gridId, uint decalId, DecalGridCompon return decalIds; } - public HashSet<(uint Index, Decal Decal)> GetDecalsIntersecting(EntityUid gridUid, Box2 bounds, DecalGridComponent? component = null) - { - var decalIds = new HashSet<(uint, Decal)>(); - var chunkCollection = ChunkCollection(gridUid, component); - - if (chunkCollection == null) - return decalIds; - - var chunks = new ChunkIndicesEnumerator(bounds, ChunkSize); - - while (chunks.MoveNext(out var chunkOrigin)) - { - if (!chunkCollection.TryGetValue(chunkOrigin.Value, out var chunk)) - continue; - - foreach (var (id, decal) in chunk.Decals) - { - if (!bounds.Contains(decal.Coordinates)) - continue; - - decalIds.Add((id, decal)); - } - } - - return decalIds; - } - /// /// Changes a decals position. Note this will actually result in a new decal being created, possibly on a new grid or chunk. /// diff --git a/Content.Server/DeltaV/Objectives/Components/TeachLessonConditionComponent.cs b/Content.Server/DeltaV/Objectives/Components/TeachLessonConditionComponent.cs new file mode 100644 index 0000000000..d6c57129d5 --- /dev/null +++ b/Content.Server/DeltaV/Objectives/Components/TeachLessonConditionComponent.cs @@ -0,0 +1,20 @@ +using Content.Server.DeltaV.Objectives.Systems; +using Content.Server.Objectives.Components; + +namespace Content.Server.DeltaV.Objectives.Components; + +/// +/// Requires that a target dies once and only once. +/// Depends on to function. +/// +[RegisterComponent, Access(typeof(TeachLessonConditionSystem))] +public sealed partial class TeachLessonConditionComponent : Component +{ + /// + /// How close the assassin must be to the person "Being given a lesson", to ensure that the kill is reasonably + /// something that could be the assassin's doing. This way the objective isn't resolved by the target getting killed + /// by a space tick while on expedition. + /// + [DataField] + public float MaxDistance = 30f; +} diff --git a/Content.Server/DeltaV/Objectives/Systems/TeachLessonConditionSystem.cs b/Content.Server/DeltaV/Objectives/Systems/TeachLessonConditionSystem.cs new file mode 100644 index 0000000000..4beff20fef --- /dev/null +++ b/Content.Server/DeltaV/Objectives/Systems/TeachLessonConditionSystem.cs @@ -0,0 +1,60 @@ +using Content.Server.DeltaV.Objectives.Components; +using Content.Server.Objectives.Components; +using Content.Server.Objectives.Systems; +using Content.Shared.Mind.Components; +using Content.Shared.Mobs; + +namespace Content.Server.DeltaV.Objectives.Systems; + +/// +/// Handles teach a lesson condition logic, does not assign target. +/// +public sealed class TeachLessonConditionSystem : EntitySystem +{ + [Dependency] private readonly CodeConditionSystem _codeCondition = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMobStateChanged); + } + + private void OnMobStateChanged(MobStateChangedEvent args) + { + if (args.NewMobState != MobState.Critical || args.OldMobState >= args.NewMobState + || !TryComp(args.Target, out var mc) || mc.OriginalMind is not { } mindId) + return; + + // If the attacker actually has the objective, we can just skip any enumeration outright. + if (args.Origin is not null + && HasComp(args.Origin) + && TryComp(args.Origin, out var targetComp) + && targetComp.Target == mindId) + { + _codeCondition.SetCompleted(args.Origin!.Value); + return; + } + + // Get all TeachLessonConditionComponent entities + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var ent, out var conditionComp, out var targetObjective)) + { + // Check if this objective's target matches the entity that died + if (targetObjective.Target != mindId) + continue; + + var userWorldPos = _transform.GetWorldPosition(ent); + var targetWorldPos = _transform.GetWorldPosition(args.Target); + + var distance = (userWorldPos - targetWorldPos).Length(); + if (distance > conditionComp.MaxDistance + || Transform(ent).MapID != Transform(args.Target).MapID) + continue; + + _codeCondition.SetCompleted(ent); + } + } +} diff --git a/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs b/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs index 142669f84a..a81bab2ebc 100644 --- a/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs +++ b/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Clothing.Systems; using Content.Server.DeltaV.ParadoxAnomaly.Components; using Content.Server.DetailExaminable; using Content.Server.GenericAntag; @@ -37,6 +38,7 @@ public sealed class ParadoxAnomalySystem : EntitySystem [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; + [Dependency] private readonly LoadoutSystem _loadout = default!; public override void Initialize() { @@ -147,6 +149,7 @@ private bool TrySpawnParadoxAnomaly(string rule, [NotNullWhen(true)] out EntityU profile.Name, job, station); + _loadout.ApplyCharacterLoadout(spawned, job, profile, [], false); // TODO: find a way to get playtimes and whitelisted } foreach (var special in job.Special) diff --git a/Content.Server/Effects/ColorFlashEffectSystem.cs b/Content.Server/Effects/ColorFlashEffectSystem.cs index 2d29134657..40e7060a1a 100644 --- a/Content.Server/Effects/ColorFlashEffectSystem.cs +++ b/Content.Server/Effects/ColorFlashEffectSystem.cs @@ -5,8 +5,8 @@ namespace Content.Server.Effects; public sealed class ColorFlashEffectSystem : SharedColorFlashEffectSystem { - public override void RaiseEffect(Color color, List entities, Filter filter) + public override void RaiseEffect(Color color, List entities, Filter filter, float? animationLength = null) { - RaiseNetworkEvent(new ColorFlashEffectEvent(color, GetNetEntityList(entities)), filter); + RaiseNetworkEvent(new ColorFlashEffectEvent(color, GetNetEntityList(entities), animationLength), filter); } } diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index 4c454fb189..9556a07bbd 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -44,6 +44,7 @@ private bool StartPreset(ICommonSession[] origReadyPlayers, bool force) return true; var presetTitle = CurrentPreset != null ? Loc.GetString(CurrentPreset.ModeTitle) : string.Empty; + _sawmill.Info($"Round starting with preset {presetTitle}"); void FailedPresetRestart() { @@ -82,6 +83,8 @@ void FailedPresetRestart() if (startFailed) { + var mapName = _gameMapManager.GetSelectedMap()?.MapName ?? "Unknown"; + _sawmill.Info($"Failed starting preset {presetTitle} on map {mapName}"); FailedPresetRestart(); return false; } diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 2e1d2e614c..f8cad3d55c 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -4,17 +4,20 @@ using Content.Server.Administration.Managers; using Content.Server.GameTicking.Events; using Content.Server.Ghost; +using Content.Server.RandomMetadata; using Content.Server.Spawners.Components; using Content.Server.Speech.Components; using Content.Server.Station.Components; using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Database; +using Content.Shared.Dataset; using Content.Shared.Mind; using Content.Shared.Players; using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; +using Content.Shared.Silicon.Components; using JetBrains.Annotations; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -37,6 +40,12 @@ public sealed partial class GameTicker [ValidatePrototypeId] public const string AdminObserverPrototypeName = "AdminObserver"; + [ValidatePrototypeId] + public const string AiNamesDataset = "NamesAI"; + + [ValidatePrototypeId] + public const string CyborgJobPrototypeName = "Borg"; + /// /// How many players have joined the round through normal methods. /// Useful for game rules to look at. Doesn't count observers, people in lobby, etc. @@ -257,7 +266,21 @@ private void SpawnPlayer(ICommonSession player, DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; - _stationSpawning.EquipJobName(mob, jobPrototype); + if (jobPrototype.NameDataset == AiNamesDataset) + { + if (character.StationAiName != null) + _metaData.SetEntityName(mob, character.StationAiName); + else + _stationSpawning.EquipJobName(mob, jobPrototype); + } + + if (jobPrototype.ID == CyborgJobPrototypeName + && character.CyborgName != null) + { + EnsureComp(mob); + _metaData.SetEntityName(mob, character.CyborgName); + } + _mind.TransferTo(newMind, mob); if (lateJoin && !silent) diff --git a/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs b/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs index 9ba0ee4b00..2a494ca211 100644 --- a/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs +++ b/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs @@ -29,6 +29,7 @@ public bool TryAdjustBloodstream(Entity ent) { if (!TryComp(ent, out var bloodstream) || !_solutionContainer.TryGetSolution(ent.Owner, bloodstream.BloodSolutionName, out var bloodSolutionEnt) + || bloodstream.BloodMaxVolume == 0 || !_config.GetCVar(CCVars.HeightAdjustModifiesBloodstream)) return false; diff --git a/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs b/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs index 872df8eae8..ada65fe6e7 100644 --- a/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs +++ b/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Humanoid.Components; using Content.Server.RandomMetadata; using Content.Shared.Humanoid.Prototypes; @@ -19,6 +20,8 @@ public sealed class RandomHumanoidSystem : EntitySystem [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; + private HashSet _notRoundStartSpecies = new(); + /// public override void Initialize() { @@ -31,6 +34,13 @@ private void OnMapInit(EntityUid uid, RandomHumanoidSpawnerComponent component, QueueDel(uid); if (component.SettingsPrototypeId != null) SpawnRandomHumanoid(component.SettingsPrototypeId, Transform(uid).Coordinates, MetaData(uid).EntityName); + + var speciesList = _prototypeManager.EnumeratePrototypes() + .Where(x => !x.RoundStart) + .Select(x => x.Prototype.Id) + .ToHashSet(); + + _notRoundStartSpecies = speciesList; } public EntityUid SpawnRandomHumanoid(string prototypeId, EntityCoordinates coordinates, string name) @@ -38,7 +48,12 @@ public EntityUid SpawnRandomHumanoid(string prototypeId, EntityCoordinates coord if (!_prototypeManager.TryIndex(prototypeId, out var prototype)) throw new ArgumentException("Could not get random humanoid settings"); - var profile = HumanoidCharacterProfile.Random(prototype.SpeciesBlacklist); + var blacklist = prototype.SpeciesBlacklist; + + if (!prototype.SpeciesBlacklist.Any()) + blacklist = _notRoundStartSpecies; + + var profile = HumanoidCharacterProfile.Random(blacklist); var speciesProto = _prototypeManager.Index(profile.Species); var humanoid = EntityManager.CreateEntityUninitialized(speciesProto.Prototype, coordinates); diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index 1a2cdcce51..65b951dadf 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -1,6 +1,7 @@ using Content.Server.Access.Systems; using Content.Server.Administration.Logs; using Content.Server.CriminalRecords.Systems; +using Content.Server.PsionicsRecords.Systems; using Content.Server.Humanoid; using Content.Shared.Clothing; using Content.Shared.Database; @@ -27,6 +28,8 @@ public sealed class IdentitySystem : SharedIdentitySystem [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; [Dependency] private readonly CriminalRecordsConsoleSystem _criminalRecordsConsole = default!; + [Dependency] private readonly PsionicsRecordsConsoleSystem _psionicsRecordsConsole = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; // Goobstation - Update component state on component toggle private HashSet _queuedIdentityUpdates = new(); @@ -39,7 +42,11 @@ public override void Initialize() SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); + SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); SubscribeLocalEvent(OnMapInit); + + SubscribeLocalEvent(BlockerUpdateIdentity); // Goobstation - Update component state on component toggle + SubscribeLocalEvent(BlockerUpdateIdentity); // Goobstation - Update component state on component toggle } public override void Update(float frameTime) @@ -112,7 +119,7 @@ private void UpdateIdentityInfo(EntityUid uid, IdentityComponent identity) _adminLog.Add(LogType.Identity, LogImpact.Medium, $"{ToPrettyString(uid)} changed identity to {name}"); var identityChangedEvent = new IdentityChangedEvent(uid, ident); RaiseLocalEvent(uid, ref identityChangedEvent); - SetIdentityCriminalIcon(uid); + SetIdentityRecordsIcon(uid); } private string GetIdentityName(EntityUid target, IdentityRepresentation representation) @@ -124,13 +131,14 @@ private string GetIdentityName(EntityUid target, IdentityRepresentation represen } /// - /// When the identity of a person is changed, searches the criminal records to see if the name of the new identity - /// has a record. If the new name has a criminal status attached to it, the person will get the criminal status - /// until they change identity again. + /// When the identity of a person is changed, searches the criminal records and psionics records to see if the name + /// of the new identity has a record. If the new name has a criminal status or psionics status attached to it, the + /// person will get the criminal status and/or psionics status until they change identity again. /// - private void SetIdentityCriminalIcon(EntityUid uid) + private void SetIdentityRecordsIcon(EntityUid uid) { _criminalRecordsConsole.CheckNewIdentity(uid); + _psionicsRecordsConsole.CheckNewIdentity(uid); } /// @@ -172,5 +180,16 @@ private IdentityRepresentation GetIdentityRepresentation(EntityUid target, return new(trueName, gender, ageString, presumedName, presumedJob); } + // Goobstation - Update component state on component toggle + private void BlockerUpdateIdentity(EntityUid uid, IdentityBlockerComponent component, EntityEventArgs args) + { + var target = uid; + + if (_inventorySystem.TryGetContainingEntity(uid, out var containing)) + target = containing.Value; + + QueueIdentityUpdate(target); + } + #endregion } diff --git a/Content.Server/Jobs/ModifyEnvirohelmSpecial.cs b/Content.Server/Jobs/ModifyEnvirohelmSpecial.cs new file mode 100644 index 0000000000..28ad9db094 --- /dev/null +++ b/Content.Server/Jobs/ModifyEnvirohelmSpecial.cs @@ -0,0 +1,52 @@ +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Humanoid; +using Content.Shared.Humanoid.Prototypes; +using Content.Shared.Inventory; +using Content.Shared.Roles; +using Content.Shared.Tag; +using JetBrains.Annotations; +using Robust.Shared.Prototypes; + +namespace Content.Server.Jobs; + +[UsedImplicitly] +public sealed partial class ModifyEnvirohelmSpecial : JobSpecial +{ + // + // The new power cell of the envirohelm. + // + [DataField(required: true)] + public ProtoId PowerCell { get; private set; } + + [ValidatePrototypeId] + private const string Species = "Plasmaman"; + + [ValidatePrototypeId] + private const string Tag = "Envirohelm"; + + private const string Slot = "head"; + + private const string ItemSlot = "cell_slot"; + + public override void AfterEquip(EntityUid mob) + { + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(mob, out var appearanceComp) || + appearanceComp.Species != Species || + !entMan.System().TryGetSlotEntity(mob, Slot, out var helmet) || + helmet is not { } envirohelm || + !entMan.System().HasTag(envirohelm, Tag) || + !entMan.TryGetComponent(envirohelm, out var itemSlotsComp)) + return; + + var itemSlotsSystem = entMan.System(); + + if (itemSlotsSystem.GetItemOrNull(envirohelm, ItemSlot, itemSlotsComp) is { } powerCellToDelete) + entMan.DeleteEntity(powerCellToDelete); + + var powerCell = entMan.Spawn(PowerCell); + + if (!itemSlotsSystem.TryInsert(envirohelm, ItemSlot, powerCell, null, itemSlotsComp, excludeUserAudio: true)) + entMan.DeleteEntity(powerCell); + } +} diff --git a/Content.Server/Jobs/ModifyEnvirosuitSpecial.cs b/Content.Server/Jobs/ModifyEnvirosuitSpecial.cs new file mode 100644 index 0000000000..ff03f5debd --- /dev/null +++ b/Content.Server/Jobs/ModifyEnvirosuitSpecial.cs @@ -0,0 +1,36 @@ +using Content.Shared.Humanoid; +using Content.Shared.Humanoid.Prototypes; +using Content.Shared.Inventory; +using Content.Shared.Roles; +using Content.Shared.SelfExtinguisher; +using JetBrains.Annotations; + +namespace Content.Server.Jobs; + +[UsedImplicitly] +public sealed partial class ModifyEnvirosuitSpecial : JobSpecial +{ + // + // The new charges of the envirosuit's self-extinguisher. + // + [DataField(required: true)] + public int Charges { get; private set; } + + [ValidatePrototypeId] + private const string Species = "Plasmaman"; + + private const string Slot = "jumpsuit"; + + public override void AfterEquip(EntityUid mob) + { + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(mob, out var appearance) || + appearance.Species != Species || + !entMan.System().TryGetSlotEntity(mob, Slot, out var jumpsuit) || + jumpsuit is not { } envirosuit || + !entMan.TryGetComponent(envirosuit, out var selfExtinguisher)) + return; + + entMan.System().SetCharges(envirosuit, Charges, Charges, selfExtinguisher); + } +} diff --git a/Content.Server/Mapping/MappingManager.cs b/Content.Server/Mapping/MappingManager.cs index e8c6eca204..ae924da152 100644 --- a/Content.Server/Mapping/MappingManager.cs +++ b/Content.Server/Mapping/MappingManager.cs @@ -1,12 +1,18 @@ using System.IO; +using System.Linq; using Content.Server.Administration.Managers; using Content.Shared.Administration; using Content.Shared.Mapping; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.ContentPack; using Robust.Shared.Map; using Robust.Shared.Network; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Serialization.Markdown.Mapping; using Robust.Shared.Utility; using YamlDotNet.Core; using YamlDotNet.RepresentationModel; @@ -21,18 +27,27 @@ public sealed class MappingManager : IPostInjectInit [Dependency] private readonly IServerNetManager _net = default!; [Dependency] private readonly IPlayerManager _players = default!; [Dependency] private readonly IEntitySystemManager _systems = default!; + [Dependency] private readonly ISerializationManager _serialization = default!; + [Dependency] private readonly IResourceManager _resourceMan = default!; private ISawmill _sawmill = default!; private ZStdCompressionContext _zstd = default!; + private const string FavoritesPath = "/mapping_editor_favorites.yml"; + public void PostInject() { + _net.RegisterNetMessage(OnMappingFavoritesSave); + _net.RegisterNetMessage(OnMappingFavoritesLoad); + _net.RegisterNetMessage(); + + _sawmill = _log.GetSawmill("mapping"); + #if !FULL_RELEASE _net.RegisterNetMessage(OnMappingSaveMap); _net.RegisterNetMessage(); _net.RegisterNetMessage(); - _sawmill = _log.GetSawmill("mapping"); _zstd = new ZStdCompressionContext(); #endif } @@ -73,4 +88,45 @@ private void OnMappingSaveMap(MappingSaveMapMessage message) } #endif } + + private void OnMappingFavoritesSave(MappingFavoritesSaveMessage message) + { + var mapping = new MappingDataNode(); + mapping.Add("prototypes", _serialization.WriteValue(message.PrototypeIDs, notNullableOverride: true)); + + var path = new ResPath(FavoritesPath); + using var writer = _resourceMan.UserData.OpenWriteText(path); + var stream = new YamlStream {new(mapping.ToYaml())}; + stream.Save(new YamlMappingFix(new Emitter(writer)), false); + } + + private void OnMappingFavoritesLoad(MappingFavoritesLoadMessage message) + { + var path = new ResPath(FavoritesPath); + + if (!_resourceMan.UserData.Exists(path)) + return; + + try + { + var reader = _resourceMan.UserData.OpenText(path); + var documents = DataNodeParser.ParseYamlStream(reader).First(); + var mapping = (MappingDataNode) documents.Root; + + if (!mapping.TryGet("prototypes", out var prototypesNode)) + return; + + var ids = _serialization.Read(prototypesNode, notNullableOverride: true).ToList(); + + var msg = new MappingFavoritesDataMessage() + { + PrototypeIDs = ids, + }; + _net.ServerSendMessage(msg, message.MsgChannel); + } + catch (Exception e) + { + _sawmill.Error("Failed to load user favorite objects: " + e); + } + } } diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index b738d28b46..b7bbc4ad47 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -234,7 +234,6 @@ private void OnMechEntry(EntityUid uid, MechComponent component, MechEntryEvent TryInsert(uid, args.Args.User, component); _actionBlocker.UpdateCanMove(uid); - args.Handled = true; } @@ -244,7 +243,6 @@ private void OnMechExit(EntityUid uid, MechComponent component, MechExitEvent ar return; TryEject(uid, component); - args.Handled = true; } diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 91e8b2bf98..07c1140f16 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -247,7 +247,7 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s _solutionContainerSystem.ResolveSolution(target, bloodstream.BloodSolutionName, ref bloodstream.BloodSolution, out var bloodSolution)) { - bloodAmount = bloodSolution.FillFraction; + bloodAmount = bloodSolution.MaxVolume != 0 ? bloodSolution.FillFraction : 0; bleeding = bloodstream.BleedAmount > 0; } diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index 2e7c31ec7a..4934fb8bcc 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -264,6 +264,7 @@ public override void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostC if (entity != null) { component!.Mind = mindId; + component.OriginalMind ??= mindId; // DeltaV mind.OwnedEntity = entity; mind.OriginalOwnedEntity ??= GetNetEntity(mind.OwnedEntity); Entity mindEnt = (mindId, mind); diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.Melee.cs b/Content.Server/NPC/Systems/NPCCombatSystem.Melee.cs index 2ae20817e2..a5279ae857 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.Melee.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.Melee.cs @@ -1,5 +1,6 @@ using System.Numerics; using Content.Server.NPC.Components; +using Content.Server.NPC.HTN; using Content.Shared.CombatMode; using Content.Shared.NPC; using Robust.Shared.Map; @@ -10,6 +11,7 @@ namespace Content.Server.NPC.Systems; public sealed partial class NPCCombatSystem { + [Dependency] private readonly IRobustRandom _rng = default!; private const float TargetMeleeLostRange = 14f; private void InitializeMelee() @@ -114,5 +116,8 @@ private void Attack(EntityUid uid, NPCMeleeCombatComponent component, TimeSpan c { _melee.AttemptLightAttack(uid, weaponUid, weapon, component.Target); } + + if (Comp(uid).Blackboard.TryGetValue("AttackDelayDeviation", out var dev, EntityManager)) + weapon.NextAttack += TimeSpan.FromSeconds(_rng.NextFloat(-dev, dev)); } } diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs index ec1b81cfb3..b56e8e9abe 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs @@ -214,7 +214,7 @@ private void CookItem(EntityUid uid, DeepFryerComponent component, EntityUid ite if (TryComp(item, out var tempComp)) { // Push the temperature towards what it should be but no higher. - var delta = (component.PoweredTemperature - tempComp.CurrentTemperature) * tempComp.HeatCapacity; + var delta = (component.PoweredTemperature - tempComp.CurrentTemperature) * _temperature.GetHeatCapacity(item, tempComp); if (delta > 0f) _temperature.ChangeHeat(item, delta, false, tempComp); diff --git a/Content.Server/Objectives/Components/PickRandomPersonComponent.cs b/Content.Server/Objectives/Components/PickRandomPersonComponent.cs index 4188b1da3d..7de6cb7146 100644 --- a/Content.Server/Objectives/Components/PickRandomPersonComponent.cs +++ b/Content.Server/Objectives/Components/PickRandomPersonComponent.cs @@ -8,4 +8,6 @@ namespace Content.Server.Objectives.Components; [RegisterComponent, Access(typeof(KillPersonConditionSystem))] public sealed partial class PickRandomPersonComponent : Component { + [DataField] + public bool NeedsOrganic; // Goobstation: Only pick non-silicon players. } diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index c1caa819e4..7afc74af4d 100644 --- a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs +++ b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Objectives.Components; using Content.Server.Shuttles.Systems; using Content.Shared.CCVar; @@ -54,7 +55,7 @@ private void OnPersonAssigned(EntityUid uid, PickRandomPersonComponent comp, ref return; // no other humans to kill - var allHumans = _mind.GetAliveHumansExcept(args.MindId); + var allHumans = _mind.GetAliveHumans(args.MindId, comp.NeedsOrganic); if (allHumans.Count == 0) { args.Cancelled = true; @@ -78,7 +79,7 @@ private void OnHeadAssigned(EntityUid uid, PickRandomHeadComponent comp, ref Obj return; // no other humans to kill - var allHumans = _mind.GetAliveHumansExcept(args.MindId); + var allHumans = _mind.GetAliveHumans(args.MindId); if (allHumans.Count == 0) { args.Cancelled = true; @@ -94,7 +95,7 @@ private void OnHeadAssigned(EntityUid uid, PickRandomHeadComponent comp, ref Obj } if (allHeads.Count == 0) - allHeads = allHumans; // fallback to non-head target + allHeads = allHumans.Select(human => human.Owner).ToList(); // fallback to non-head target _target.SetTarget(uid, _random.Pick(allHeads), target); } diff --git a/Content.Server/Paint/PaintSystem.cs b/Content.Server/Paint/PaintSystem.cs index 89d39e9e49..cf4b83ca75 100644 --- a/Content.Server/Paint/PaintSystem.cs +++ b/Content.Server/Paint/PaintSystem.cs @@ -160,7 +160,8 @@ public void Paint(Entity entity, EntityUid target, EntityUid use public void Paint(EntityWhitelist? whitelist, EntityWhitelist? blacklist, EntityUid target, Color color) { if (_whitelist.IsWhitelistFail(whitelist, target) - || _whitelist.IsBlacklistPass(blacklist, target)) + || _whitelist.IsBlacklistPass(blacklist, target) + || !HasComp(target)) // TODO: FIND THE STUPID RACE CONDITION THAT IS MAKING ME CHECK FOR THIS. return; EnsureComp(target, out var paint); diff --git a/Content.Server/Power/Components/CableComponent.cs b/Content.Server/Power/Components/CableComponent.cs index 7398bc0616..63899735b5 100644 --- a/Content.Server/Power/Components/CableComponent.cs +++ b/Content.Server/Power/Components/CableComponent.cs @@ -18,8 +18,11 @@ public sealed partial class CableComponent : Component [DataField] public EntProtoId CableDroppedOnCutPrototype = "CableHVStack1"; + /// + /// The tool quality needed to cut the cable. Setting to null prevents cutting. + /// [DataField] - public ProtoId CuttingQuality = SharedToolSystem.CutQuality; + public ProtoId? CuttingQuality = SharedToolSystem.CutQuality; /// /// Checked by to determine if there is diff --git a/Content.Server/Power/EntitySystems/CableSystem.cs b/Content.Server/Power/EntitySystems/CableSystem.cs index 62eb08d7cb..dfa73783de 100644 --- a/Content.Server/Power/EntitySystems/CableSystem.cs +++ b/Content.Server/Power/EntitySystems/CableSystem.cs @@ -36,7 +36,10 @@ private void OnInteractUsing(EntityUid uid, CableComponent cable, InteractUsingE if (args.Handled) return; - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, cable.CuttingDelay, cable.CuttingQuality, new CableCuttingFinishedEvent()); + if (cable.CuttingQuality != null) + { + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, cable.CuttingDelay, cable.CuttingQuality, new CableCuttingFinishedEvent()); + } } private void OnCableCut(EntityUid uid, CableComponent cable, DoAfterEvent args) diff --git a/Content.Server/Power/EntitySystems/ChargerSystem.cs b/Content.Server/Power/EntitySystems/ChargerSystem.cs index 40b998a95d..c686906f4e 100644 --- a/Content.Server/Power/EntitySystems/ChargerSystem.cs +++ b/Content.Server/Power/EntitySystems/ChargerSystem.cs @@ -11,6 +11,8 @@ using Content.Shared.Storage.Components; using Robust.Server.Containers; using Content.Shared.Whitelist; +using Content.Shared.Inventory; +using Content.Shared._Goobstation.Clothing.Systems; namespace Content.Server.Power.EntitySystems; @@ -22,6 +24,7 @@ internal sealed class ChargerSystem : EntitySystem [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; public override void Initialize() { @@ -256,15 +259,45 @@ private void TransferPower(EntityUid uid, EntityUid targetEntity, ChargerCompone UpdateStatus(uid, component); } + // Goobstation - Modsuits - Changed charger logic to work with suits in cyborg charger private bool SearchForBattery(EntityUid uid, [NotNullWhen(true)] out EntityUid? batteryUid, [NotNullWhen(true)] out BatteryComponent? component) { + batteryUid = null; + component = null; + // try get a battery directly on the inserted entity - if (!TryComp(uid, out component)) + if (TryComp(uid, out component)) { - // or by checking for a power cell slot on the inserted entity - return _powerCell.TryGetBatteryFromSlot(uid, out batteryUid, out component); + batteryUid = uid; + return true; } - batteryUid = uid; - return true; + + // Try to get the battery by checking for a power cell slot on the inserted entity + if (_powerCell.TryGetBatteryFromSlot(uid, out batteryUid, out component)) + return true; + + if (TryComp(uid, out var inventory)) + { + var relayEv = new FindInventoryBatteryEvent(); + _inventorySystem.RelayEvent((uid, inventory), ref relayEv); + + if (relayEv.FoundBattery != null) + { + batteryUid = relayEv.FoundBattery.Value.Owner; + component = relayEv.FoundBattery.Value.Comp; + return true; + } + } + + return false; } } + +// Goobstation - Modsuits stuff +[ByRefEvent] +public record struct FindInventoryBatteryEvent() : IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + + public Entity? FoundBattery { get; set; } +} diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index f7b4cf0249..221a3909e2 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -228,8 +228,8 @@ private void OnCellEmpAttempt(EntityUid uid, PowerCellComponent component, EmpAt private void OnCellSlotExamined(EntityUid uid, PowerCellSlotComponent component, ExaminedEvent args) { - TryGetBatteryFromSlot(uid, out var battery); - OnBatteryExamined(uid, battery, args); + TryGetBatteryFromSlot(uid, out var batteryEnt, out var battery); // Goobstation + OnBatteryExamined(batteryEnt.GetValueOrDefault(uid), battery, args); // Goobstation } private void OnBatteryExamined(EntityUid uid, BatteryComponent? component, ExaminedEvent args) diff --git a/Content.Server/Psionics/PsionicsSystem.cs b/Content.Server/Psionics/PsionicsSystem.cs index 9f30f7f80a..f8a37c6cd3 100644 --- a/Content.Server/Psionics/PsionicsSystem.cs +++ b/Content.Server/Psionics/PsionicsSystem.cs @@ -82,7 +82,6 @@ public override void Initialize() SubscribeLocalEvent(OnMobstateChanged); SubscribeLocalEvent(OnDamageChanged); SubscribeLocalEvent(OnAttackAttempt); - SubscribeLocalEvent(OnManaUpdate); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnRemove); @@ -180,8 +179,6 @@ private void CheckAntiPsionic(EntityUid entity, AntiPsionicWeaponComponent compo private void OnInit(EntityUid uid, PsionicComponent component, ComponentStartup args) { - UpdateManaAlert(uid, component); - component.AmplificationSources.Add(BaselineAmplification, _random.NextFloat(component.BaselineAmplification.Item1, component.BaselineAmplification.Item2)); component.DampeningSources.Add(BaselineDampening, _random.NextFloat(component.BaselineDampening.Item1, component.BaselineDampening.Item2)); @@ -195,25 +192,12 @@ private void OnInit(EntityUid uid, PsionicComponent component, ComponentStartup private void OnRemove(EntityUid uid, PsionicComponent component, ComponentRemove args) { - _alerts.ClearAlert(uid, component.ManaAlert); - if (!HasComp(uid)) return; _npcFactonSystem.RemoveFaction(uid, "PsionicInterloper"); } - public void UpdateManaAlert(EntityUid uid, PsionicComponent component) - { - var severity = (short) ContentHelpers.RoundToLevels(component.Mana, component.MaxMana, 8); - _alerts.ShowAlert(uid, component.ManaAlert, severity); - } - - private void OnManaUpdate(EntityUid uid, PsionicComponent component, ref OnManaUpdateEvent args) - { - UpdateManaAlert(uid, component); - } - private void OnStamHit(EntityUid uid, AntiPsionicWeaponComponent component, TakeStaminaDamageEvent args) { if (!HasComp(args.Target)) diff --git a/Content.Server/PsionicsRecords/Systems/PsionicsRecordsConsoleSystem.cs b/Content.Server/PsionicsRecords/Systems/PsionicsRecordsConsoleSystem.cs new file mode 100644 index 0000000000..a847d45ce9 --- /dev/null +++ b/Content.Server/PsionicsRecords/Systems/PsionicsRecordsConsoleSystem.cs @@ -0,0 +1,234 @@ +using Content.Server.Popups; +using Content.Server.Radio.EntitySystems; +using Content.Server.Station.Systems; +using Content.Server.StationRecords; +using Content.Server.StationRecords.Systems; +using Content.Shared.Access.Systems; +using Content.Shared.PsionicsRecords; +using Content.Shared.PsionicsRecords.Components; +using Content.Shared.PsionicsRecords.Systems; +using Content.Shared.Psionics; +using Content.Shared.StationRecords; +using Robust.Server.GameObjects; +using System.Diagnostics.CodeAnalysis; +using Content.Shared.IdentityManagement; +using Content.Shared.Psionics.Components; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Server.PsionicsRecords.Systems; + +/// +/// Handles all UI for Psionics records console +/// +public sealed class PsionicsRecordsConsoleSystem : SharedPsionicsRecordsConsoleSystem +{ + [Dependency] private readonly AccessReaderSystem _access = default!; + [Dependency] private readonly PsionicsRecordsSystem _psionicsRecords = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly RadioSystem _radio = default!; + [Dependency] private readonly SharedIdCardSystem _idCard = default!; + [Dependency] private readonly StationRecordsSystem _stationRecords = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + public override void Initialize() + { + SubscribeLocalEvent(UpdateUserInterface); + SubscribeLocalEvent(UpdateUserInterface); + + Subs.BuiEvents(PsionicsRecordsConsoleKey.Key, subs => + { + subs.Event(UpdateUserInterface); + subs.Event(OnKeySelected); + subs.Event(OnFiltersChanged); + subs.Event(OnChangeStatus); + }); + } + + private void UpdateUserInterface(Entity ent, ref T args) + { + // TODO: this is probably wasteful, maybe better to send a message to modify the exact state? + UpdateUserInterface(ent); + } + + private void OnKeySelected(Entity ent, ref SelectStationRecord msg) + { + // no concern of sus client since record retrieval will fail if invalid id is given + ent.Comp.ActiveKey = msg.SelectedKey; + UpdateUserInterface(ent); + } + + private void OnFiltersChanged(Entity ent, ref SetStationRecordFilter msg) + { + if (ent.Comp.Filter == null || + ent.Comp.Filter.Type != msg.Type || ent.Comp.Filter.Value != msg.Value) + { + ent.Comp.Filter = new StationRecordsFilter(msg.Type, msg.Value); + UpdateUserInterface(ent); + } + } + + private void OnChangeStatus(Entity ent, ref PsionicsRecordChangeStatus msg) + { + // prevent malf client violating registered/reason nullability + if (msg.Status == PsionicsStatus.Registered != (msg.Reason != null) && + msg.Status == PsionicsStatus.Suspected != (msg.Reason != null) && + msg.Status == PsionicsStatus.Abusing != (msg.Reason != null)) + return; + + if (!CheckSelected(ent, msg.Actor, out var mob, out var key)) + return; + + if (!_stationRecords.TryGetRecord(key.Value, out var record) || record.Status == msg.Status) + return; + + // validate the reason + string? reason = null; + if (msg.Reason != null) + { + reason = msg.Reason.Trim(); + if (reason.Length < 1 || reason.Length > ent.Comp.MaxStringLength) + return; + } + + var oldStatus = record.Status; + + // will probably never fail given the checks above + _psionicsRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason); + + var name = RecordName(key.Value); + var officer = Loc.GetString("psionics-records-console-unknown-officer"); + + var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, mob.Value); + RaiseLocalEvent(tryGetIdentityShortInfoEvent); + if (tryGetIdentityShortInfoEvent.Title != null) + { + officer = tryGetIdentityShortInfoEvent.Title; + } + + (string, object)[] args; + if (reason != null) + args = new (string, object)[] { ("name", name), ("officer", officer), ("reason", reason) }; + else + args = new (string, object)[] { ("name", name), ("officer", officer) }; + + // figure out which radio message to send depending on transition + var statusString = (oldStatus, msg.Status) switch + { + // person has been registered + (_, PsionicsStatus.Registered) => "registered", + // person did something suspicious + (_, PsionicsStatus.Suspected) => "suspected", + // person is abusing + (_, PsionicsStatus.Abusing) => "abusing", + // person is no longer suspicious + (PsionicsStatus.Suspected, PsionicsStatus.None) => "not-suspected", + // person is no longer registered + (PsionicsStatus.Registered, PsionicsStatus.None) => "not-registered", + // person is no longer abusing + (PsionicsStatus.Abusing, PsionicsStatus.None) => "not-abusing", + // this is impossible + _ => "not-wanted" + }; + _radio.SendRadioMessage(ent, Loc.GetString($"psionics-records-console-{statusString}", args), + ent.Comp.RadioChannel, ent); + + UpdateUserInterface(ent); + UpdatePsionicsIdentity(name, msg.Status); + } + + private void UpdateUserInterface(Entity ent) + { + var (uid, console) = ent; + var owningStation = _station.GetOwningStation(uid); + + if (!TryComp(owningStation, out var stationRecords)) + { + _ui.SetUiState(uid, PsionicsRecordsConsoleKey.Key, new PsionicsRecordsConsoleState()); + return; + } + + var listing = _stationRecords.BuildListing((owningStation.Value, stationRecords), console.Filter); + + var state = new PsionicsRecordsConsoleState(listing, console.Filter); + if (console.ActiveKey is { } id) + { + // get records to display when a crewmember is selected + var key = new StationRecordKey(id, owningStation.Value); + _stationRecords.TryGetRecord(key, out state.StationRecord, stationRecords); + _stationRecords.TryGetRecord(key, out state.PsionicsRecord, stationRecords); + state.SelectedKey = id; + } + + _ui.SetUiState(uid, PsionicsRecordsConsoleKey.Key, state); + } + + /// + /// Boilerplate that most actions use, if they require that a record be selected. + /// Obviously shouldn't be used for selecting records. + /// + private bool CheckSelected(Entity ent, EntityUid user, + [NotNullWhen(true)] out EntityUid? mob, [NotNullWhen(true)] out StationRecordKey? key) + { + key = null; + mob = null; + + if (!_access.IsAllowed(user, ent)) + { + _popup.PopupEntity(Loc.GetString("psionics-records-permission-denied"), ent, user); + return false; + } + + if (ent.Comp.ActiveKey is not { } id) + return false; + + // checking the console's station since the user might be off-grid using on-grid console + if (_station.GetOwningStation(ent) is not { } station) + return false; + + key = new StationRecordKey(id, station); + mob = user; + return true; + } + + /// + /// Gets the name from a record, or empty string if this somehow fails. + /// + private string RecordName(StationRecordKey key) + { + if (!_stationRecords.TryGetRecord(key, out var record)) + return ""; + + return record.Name; + } + + /// + /// Checks if the new identity's name has a psionics record attached to it, and gives the entity the icon that + /// belongs to the status if it does. + /// + public void CheckNewIdentity(EntityUid uid) + { + var name = Identity.Name(uid, EntityManager); + var xform = Transform(uid); + + // TODO use the entity's station? Not the station of the map that it happens to currently be on? + var station = _station.GetStationInMap(xform.MapID); + + if (station != null && _stationRecords.GetRecordByName(station.Value, name) is { } id) + { + if (_stationRecords.TryGetRecord(new StationRecordKey(id, station.Value), + out var record)) + { + if (record.Status != PsionicsStatus.None) + { + SetPsionicsIcon(name, record.Status, uid); + return; + } + } + } + RemComp(uid); + } +} diff --git a/Content.Server/PsionicsRecords/Systems/PsionicsRecordsSystem.cs b/Content.Server/PsionicsRecords/Systems/PsionicsRecordsSystem.cs new file mode 100644 index 0000000000..c30851316f --- /dev/null +++ b/Content.Server/PsionicsRecords/Systems/PsionicsRecordsSystem.cs @@ -0,0 +1,59 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Server.StationRecords.Systems; +using Content.Shared.PsionicsRecords; +using Content.Shared.Psionics; +using Content.Shared.StationRecords; +using Content.Server.GameTicking; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Server.PsionicsRecords.Systems; + +/// +/// Psionics records +/// +/// Psionics Records inherit Station Records' core and add role-playing tools for Epistemics: +/// - Ability to track a person's status (None/Suspected/Registered/Abusing) +/// - See cataloguers' actions in Psionics Records in the radio +/// - See reasons for any action with no need to ask the officer personally +/// +public sealed class PsionicsRecordsSystem : EntitySystem +{ + [Dependency] private readonly GameTicker _ticker = default!; + [Dependency] private readonly StationRecordsSystem _stationRecords = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGeneralRecordCreated); + } + + private void OnGeneralRecordCreated(AfterGeneralRecordCreatedEvent ev) + { + _stationRecords.AddRecordEntry(ev.Key, new PsionicsRecord()); + _stationRecords.Synchronize(ev.Key); + } + + /// + /// Tries to change the status of the record found by the StationRecordKey. + /// Reason should only be passed if status is not None. + /// + /// True if the status is changed, false if not + public bool TryChangeStatus(StationRecordKey key, PsionicsStatus status, string? reason) + { + // don't do anything if its the same status + if (!_stationRecords.TryGetRecord(key, out var record) + || status == record.Status) + return false; + + record.Status = status; + record.Reason = reason; + + _stationRecords.Synchronize(key); + + return true; + } +} diff --git a/Content.Server/RandomMetadata/RandomMetadataExcludedComponent.cs b/Content.Server/RandomMetadata/RandomMetadataExcludedComponent.cs new file mode 100644 index 0000000000..d7de9f16f9 --- /dev/null +++ b/Content.Server/RandomMetadata/RandomMetadataExcludedComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server.RandomMetadata; + + +/// +/// This is used for excluding specific entities from receiving a RandomMetadata pre-spawn. +/// +[RegisterComponent] +public sealed partial class RandomMetadataExcludedComponent : Component { } diff --git a/Content.Server/RandomMetadata/RandomMetadataSystem.cs b/Content.Server/RandomMetadata/RandomMetadataSystem.cs index abab5e5fc3..a091ec3aa2 100644 --- a/Content.Server/RandomMetadata/RandomMetadataSystem.cs +++ b/Content.Server/RandomMetadata/RandomMetadataSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Dataset; +using Content.Shared.Humanoid; using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -23,10 +24,9 @@ private void OnMapInit(EntityUid uid, RandomMetadataComponent component, MapInit { var meta = MetaData(uid); - if (component.NameSegments != null) - { + if (component.NameSegments != null + && !HasComp(uid)) _metaData.SetEntityName(uid, GetRandomFromSegments(component.NameSegments, component.NameSeparator), meta); - } if (component.DescriptionSegments != null) { diff --git a/Content.Server/SelfExtinguisher/SelfExtinguisherSystem.cs b/Content.Server/SelfExtinguisher/SelfExtinguisherSystem.cs new file mode 100644 index 0000000000..b4d5a63c72 --- /dev/null +++ b/Content.Server/SelfExtinguisher/SelfExtinguisherSystem.cs @@ -0,0 +1,130 @@ +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Actions; +using Content.Shared.Charges.Components; +using Content.Shared.Charges.Systems; +using Content.Shared.Effects; +using Content.Shared.IdentityManagement; +using Content.Shared.Popups; +using Content.Shared.SelfExtinguisher; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Player; +using Robust.Shared.Timing; + +namespace Content.Server.SelfExtinguisher; + +public sealed partial class SelfExtinguisherSystem : SharedSelfExtinguisherSystem +{ + [Dependency] private readonly FlammableSystem _flammable = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedChargesSystem _charges = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + + // Same color as the water reagent + private readonly Color ExtinguishColor = Color.FromHex("#75b1f0"); + private const float ExtinguishAnimationLength = 0.45f; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSelfExtinguish); + } + + private void OnSelfExtinguish(EntityUid uid, SelfExtinguisherComponent component, SelfExtinguishEvent args) + { + TryExtinguish(args.Performer, uid, component); + } + + private void TryExtinguish(EntityUid user, EntityUid uid, SelfExtinguisherComponent? selfExtinguisher = null) + { + if (!_container.TryGetContainingContainer((uid, null, null), out var container) || + !TryComp(container.Owner, out var flammable) || + !Resolve(uid, ref selfExtinguisher)) + return; + + var target = container.Owner; + var targetIdentity = Identity.Entity(target, EntityManager); + var locSuffix = user == target ? "self" : "other"; + + var curTime = _timing.CurTime; + if (TryComp(uid, out var charges) && + _charges.IsEmpty(uid, charges)) + { + if (!SetPopupCooldown((uid, selfExtinguisher), curTime)) + return; + + _popup.PopupEntity(Loc.GetString("self-extinguisher-no-charges", ("item", uid)), + target, user, !flammable.OnFire ? PopupType.Small : PopupType.MediumCaution); + return; + } + + if (selfExtinguisher.NextExtinguish > curTime) + { + if (!SetPopupCooldown((uid, selfExtinguisher), curTime)) + return; + + _popup.PopupEntity(Loc.GetString($"self-extinguisher-on-cooldown", ("item", uid)), + target, user, !flammable.OnFire ? PopupType.Small : PopupType.MediumCaution); + return; + } + + if (!flammable.OnFire) + { + if (!SetPopupCooldown((uid, selfExtinguisher), curTime)) + return; + + _popup.PopupEntity(Loc.GetString($"self-extinguisher-not-on-fire-{locSuffix}", ("item", uid), ("target", targetIdentity)), + target, user); + return; + } + + if (selfExtinguisher.RequiresIgniteFromGasImmune && + // Non-self-igniters can use the self-extinguish whenever, but self-igniters must have + // all ignitable body parts covered up + TryComp(target, out var ignite) && !ignite.HasImmunity) + { + if (!SetPopupCooldown((uid, selfExtinguisher), curTime)) + return; + + _popup.PopupEntity(Loc.GetString($"self-extinguisher-not-immune-to-fire-{locSuffix}", ("item", uid), ("target", targetIdentity)), + target, user, PopupType.MediumCaution); + return; + } + + _flammable.Extinguish(target, flammable); + _color.RaiseEffect(ExtinguishColor, [target], Filter.Pvs(target, entityManager: EntityManager), ExtinguishAnimationLength); + _audio.PlayPvs(selfExtinguisher.Sound, uid, selfExtinguisher.Sound.Params.WithVariation(0.125f)); + + _popup.PopupPredicted( + Loc.GetString("self-extinguisher-extinguish-other", ("item", uid), ("target", targetIdentity)), + target, target, PopupType.Medium + ); + _popup.PopupEntity( + Loc.GetString("self-extinguisher-extinguish-self", ("item", uid)), + target, target, PopupType.Medium + ); + + if (charges != null) + { + _charges.UseCharge(uid, charges); + _actions.RemoveCharges(selfExtinguisher.ActionEntity, 1); + + if (_actions.GetCharges(selfExtinguisher.ActionEntity) == 0) + { + _actions.SetEnabled(selfExtinguisher.ActionEntity, false); + return; // Don't set cooldown when out of charges, they can't use it anymore anyways + } + } + + selfExtinguisher.NextExtinguish = curTime + selfExtinguisher.Cooldown; + _actions.StartUseDelay(selfExtinguisher.ActionEntity); + + Dirty(uid, selfExtinguisher); + } +} diff --git a/Content.Server/Shadowkin/EtherealStunItemSystem.cs b/Content.Server/Shadowkin/EtherealStunItemSystem.cs index f7f735a052..69561519b6 100644 --- a/Content.Server/Shadowkin/EtherealStunItemSystem.cs +++ b/Content.Server/Shadowkin/EtherealStunItemSystem.cs @@ -29,9 +29,6 @@ private void OnUseInHand(EntityUid uid, EtherealStunItemComponent component, Use if (TryComp(ent, out var stamina)) _stamina.TakeStaminaDamage(ent, stamina.CritThreshold, stamina, ent); - - if (TryComp(ent, out var magic)) - magic.Mana = 0; } if (!component.DeleteOnUse) diff --git a/Content.Server/Shadowkin/ShadowkinSystem.cs b/Content.Server/Shadowkin/ShadowkinSystem.cs index b2b8019189..fabae303a8 100644 --- a/Content.Server/Shadowkin/ShadowkinSystem.cs +++ b/Content.Server/Shadowkin/ShadowkinSystem.cs @@ -28,9 +28,7 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnMindbreak); - SubscribeLocalEvent(OnManaUpdate); SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnEyeColorChange); } @@ -47,47 +45,9 @@ private void OnEyeColorChange(EntityUid uid, ShadowkinComponent component, EyeCo return; component.OldEyeColor = humanoid.EyeColor; - humanoid.EyeColor = component.BlackEyeColor; Dirty(uid, humanoid); } - private void OnExamined(EntityUid uid, ShadowkinComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange - || !TryComp(uid, out var magic) - || HasComp(uid)) - return; - - var severity = "shadowkin-power-" + ContentHelpers.RoundToLevels(magic.Mana, magic.MaxMana, 6); - var powerType = Loc.GetString(severity); - - if (args.Examined == args.Examiner) - args.PushMarkup(Loc.GetString("shadowkin-power-examined-self", - ("power", Math.Floor(magic.Mana)), - ("powerMax", Math.Floor(magic.MaxMana)), - ("powerType", powerType) - )); - else - args.PushMarkup(Loc.GetString("shadowkin-power-examined-other", - ("target", uid), - ("powerType", powerType) - )); - } - - private void OnManaUpdate(EntityUid uid, ShadowkinComponent component, ref OnManaUpdateEvent args) - { - if (!TryComp(uid, out var magic)) - return; - - if (component.SleepManaRegen - && TryComp(uid, out var sleep)) - magic.ManaGainMultiplier = component.SleepManaRegenMultiplier; - else - magic.ManaGainMultiplier = 1; - - Dirty(uid, magic); // Update Shadowkin Overlay. - } - private void OnMindbreak(EntityUid uid, ShadowkinComponent component, ref OnMindbreakEvent args) { if (TryComp(uid, out var mindbreak)) @@ -117,13 +77,7 @@ private void OnRejuvenate(EntityUid uid, ShadowkinComponent component, Rejuvenat Dirty(uid, humanoid); } - EnsureComp(uid, out var magic); - magic.Mana = 200; - magic.MaxMana = 200; - magic.ManaGain = 0.25f; - magic.MindbreakingFeedback = "shadowkin-blackeye"; - magic.NoMana = "shadowkin-tired"; - + EnsureComp(uid, out _); if (_prototypeManager.TryIndex("ShadowkinPowers", out var shadowkinPowers)) _psionicAbilitiesSystem.InitializePsionicPower(uid, shadowkinPowers); } diff --git a/Content.Server/Shuttles/Components/StationCentcommComponent.cs b/Content.Server/Shuttles/Components/StationCentcommComponent.cs index 421f564880..e07278952a 100644 --- a/Content.Server/Shuttles/Components/StationCentcommComponent.cs +++ b/Content.Server/Shuttles/Components/StationCentcommComponent.cs @@ -16,7 +16,10 @@ public sealed partial class StationCentcommComponent : Component public float ShuttleIndex; [DataField] - public ResPath Map = new("/Maps/Deep-Space-Central-Command.yml"); + public List Maps = new() + { + new("/Maps/Deep-Space-Central-Command.yml") + }; /// /// Centcomm entity that was loaded. diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 90be263ae2..8ceee270c7 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -69,6 +69,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly AnnouncerSystem _announcer = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; private const float ShuttleSpawnBuffer = 1f; @@ -430,29 +431,37 @@ private void AddCentcomm(EntityUid station, StationCentcommComponent component) return; } - if (string.IsNullOrEmpty(component.Map.ToString())) + var mapPath = _random.Pick(component.Maps).ToString(); + AddSingleCentcomm(station, component, mapPath); + } + + private void AddSingleCentcomm(EntityUid station, StationCentcommComponent component, string mapPath) + { + if (string.IsNullOrEmpty(mapPath)) { Log.Warning("No CentComm map found, skipping setup."); return; } - var mapId = _mapManager.CreateMap(); - var grid = _map.LoadGrid(mapId, component.Map.ToString(), new MapLoadOptions() - { - LoadMap = false, - }); - var map = _mapManager.GetMapEntityId(mapId); + var map = _mapSystem.CreateMap(out var mapId); + var grid = _map.LoadGrid( + mapId, + mapPath, + new() + { + LoadMap = false, + }); - if (!Exists(map)) + if (!Exists(map) || map == EntityUid.Invalid) { - Log.Error($"Failed to set up centcomm map!"); + Log.Error("Failed to set up centcomm map!"); QueueDel(grid); return; } if (!Exists(grid)) { - Log.Error($"Failed to set up centcomm grid!"); + Log.Error("Failed to set up centcomm grid!"); QueueDel(map); return; } diff --git a/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs b/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs index 444b65530b..b1fef0f1d3 100644 --- a/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs +++ b/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs @@ -182,8 +182,9 @@ private float SiliconHeatEffects(EntityUid silicon, SiliconComponent siliconComp if (!_random.Prob(Math.Clamp(temperComp.CurrentTemperature / (upperThresh * 5), 0.001f, 0.9f))) return hotTempMulti; - _flammable.AdjustFireStacks(silicon, Math.Clamp(siliconComp.FireStackMultiplier, -10, 10), flamComp); - _flammable.Ignite(silicon, silicon, flamComp); + // Goobstation: Replaced by KillOnOverheatSystem + //_flammable.AdjustFireStacks(silicon, Math.Clamp(siliconComp.FireStackMultiplier, -10, 10), flamComp); + //_flammable.Ignite(silicon, silicon, flamComp); return hotTempMulti; } diff --git a/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs b/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs index df7ac7ac0f..70f5c063f5 100644 --- a/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs +++ b/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs @@ -6,6 +6,9 @@ using Content.Shared.Damage; using Content.Shared.Interaction; using Content.Shared.Popups; +using Content.Shared.Tools; +using Content.Shared._Shitmed.Targeting; +using Content.Shared.Body.Systems; using Content.Shared.Tools.Components; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; @@ -17,7 +20,7 @@ public sealed class WeldingHealableSystem : SharedWeldingHealableSystem [Dependency] private readonly DamageableSystem _damageableSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - + [Dependency] private readonly SharedBodySystem _bodySystem = default!; public override void Initialize() { SubscribeLocalEvent(Repair); @@ -31,7 +34,7 @@ private void OnRepairFinished(EntityUid uid, WeldingHealableComponent healableCo || !TryComp(args.Used, out var component) || damageable.DamageContainerID is null || !component.DamageContainers.Contains(damageable.DamageContainerID) - || !HasDamage(damageable, component) + || !HasDamage((args.Target.Value, damageable), component, args.User) || !TryComp(args.Used, out var welder) || !TryComp(args.Used, out var solutionContainer)) return; @@ -70,7 +73,7 @@ private async void Repair(EntityUid uid, WeldingHealableComponent healableCompon || !EntityManager.TryGetComponent(args.Target, out DamageableComponent? damageable) || damageable.DamageContainerID is null || !component.DamageContainers.Contains(damageable.DamageContainerID) - || !HasDamage(damageable, component) + || !HasDamage((args.Target, damageable), component, args.User) || !_toolSystem.HasQuality(args.Used, component.QualityNeeded) || args.User == args.Target && !component.AllowSelfHeal) return; @@ -79,8 +82,8 @@ private async void Repair(EntityUid uid, WeldingHealableComponent healableCompon ? component.DoAfterDelay * component.SelfHealPenalty : component.DoAfterDelay; - args.Handled = _toolSystem.UseTool - (args.Used, + args.Handled = _toolSystem.UseTool( + args.Used, args.User, args.Target, delay, @@ -91,15 +94,26 @@ private async void Repair(EntityUid uid, WeldingHealableComponent healableCompon }); } - private bool HasDamage(DamageableComponent component, WeldingHealingComponent healable) + private bool HasDamage(Entity damageable, WeldingHealingComponent healable, EntityUid user) { if (healable.Damage.DamageDict is null) return false; foreach (var type in healable.Damage.DamageDict) - if (component.Damage.DamageDict[type.Key].Value > 0) + if (damageable.Comp.Damage.DamageDict[type.Key].Value > 0) return true; + + // In case the healer is a humanoid entity with targeting, we run the check on the targeted parts. + if (!TryComp(user, out TargetingComponent? targeting)) + return false; + + var (targetType, targetSymmetry) = _bodySystem.ConvertTargetBodyPart(targeting.Target); + foreach (var part in _bodySystem.GetBodyChildrenOfType(damageable, targetType, symmetry: targetSymmetry)) + if (TryComp(part.Id, out var damageablePart)) + foreach (var type in healable.Damage.DamageDict) + if (damageablePart.Damage.DamageDict[type.Key].Value > 0) + return true; + return false; } } - diff --git a/Content.Server/Singularity/Components/GravityWellComponent.cs b/Content.Server/Singularity/Components/GravityWellComponent.cs index 58a314fa8b..f16327ad1a 100644 --- a/Content.Server/Singularity/Components/GravityWellComponent.cs +++ b/Content.Server/Singularity/Components/GravityWellComponent.cs @@ -67,5 +67,17 @@ public sealed partial class GravityWellComponent : Component [Access(typeof(GravityWellSystem))] public TimeSpan LastPulseTime { get; internal set; } = default!; + /// + /// Whether to also apply Newton's third law. + /// + [DataField] + public bool ApplyCounterforce; + + /// + /// If is true, how much to pull self to static objects. Does not pull static objects if null. + /// + [DataField] + public float? StaticAttraction = null; + #endregion Update Timing } diff --git a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs index e57a59475f..35ac28df84 100644 --- a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs @@ -11,9 +11,11 @@ using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; +using Robust.Shared.Physics.Systems; using Robust.Shared.Timing; -using Content.Shared.Abilities.Psionics; //Nyano - Summary: for the telegnostic projection. +using Content.Shared.Abilities.Psionics; namespace Content.Server.Singularity.EntitySystems; @@ -29,17 +31,22 @@ public sealed class EventHorizonSystem : SharedEventHorizonSystem [Dependency] private readonly IMapManager _mapMan = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; [Dependency] private readonly TagSystem _tagSystem = default!; #endregion Dependencies + private EntityQuery _physicsQuery; + public override void Initialize() { base.Initialize(); + _physicsQuery = GetEntityQuery(); + SubscribeLocalEvent(PreventConsume); SubscribeLocalEvent(PreventConsume); - SubscribeLocalEvent(PreventConsume); ///Nyano - Summary: the telegnositic projection has the same trait as ghosts. + SubscribeLocalEvent(PreventConsume); ///Nyano - Summary: the telegnositic projection has the same trait as ghosts. SubscribeLocalEvent(PreventConsume); SubscribeLocalEvent(OnHorizonMapInit); SubscribeLocalEvent(OnStartCollide); @@ -127,6 +134,15 @@ public void ConsumeEntity(EntityUid hungry, EntityUid morsel, EventHorizonCompon } EntityManager.QueueDeleteEntity(morsel); + + if (eventHorizon.InheritMomentum && TryComp(hungry, out var thisPhysics) && TryComp(morsel, out var otherPhysics)) + { + var impulse = (otherPhysics.LinearVelocity - thisPhysics.LinearVelocity) + * otherPhysics.FixturesMass + * thisPhysics.FixturesMass / (thisPhysics.FixturesMass + otherPhysics.FixturesMass); // Accounts for the expected mass change from consuming the object + _physics.ApplyLinearImpulse(hungry, impulse, body: thisPhysics); + } + var evSelf = new EntityConsumedByEventHorizonEvent(morsel, hungry, eventHorizon, outerContainer); var evEaten = new EventHorizonConsumedEntityEvent(morsel, hungry, eventHorizon, outerContainer); RaiseLocalEvent(hungry, ref evSelf); @@ -159,24 +175,19 @@ public bool CanConsumeEntity(EntityUid hungry, EntityUid uid, EventHorizonCompon /// Attempts to consume all entities within a given distance of an entity; /// Excludes the center entity. /// - public void ConsumeEntitiesInRange(EntityUid uid, float range, TransformComponent? xform = null, EventHorizonComponent? eventHorizon = null) + public void ConsumeEntitiesInRange(EntityUid uid, float range, PhysicsComponent? body = null, EventHorizonComponent? eventHorizon = null) { - if (!Resolve(uid, ref xform, ref eventHorizon)) + if (!Resolve(uid, ref body, ref eventHorizon)) return; - var range2 = range * range; - var xformQuery = EntityManager.GetEntityQuery(); - var epicenter = _xformSystem.GetWorldPosition(xform, xformQuery); - foreach (var entity in _lookup.GetEntitiesInRange(_xformSystem.GetMapCoordinates(uid, xform), range, flags: LookupFlags.Uncontained)) + // TODO: Should be sundries + static-sundries but apparently this is load-bearing for SpawnAndDeleteAllEntitiesInTheSameSpot so go figure. + foreach (var entity in _lookup.GetEntitiesInRange(uid, range, flags: LookupFlags.Uncontained)) { if (entity == uid) continue; - if (!xformQuery.TryGetComponent(entity, out var entityXform)) - continue; - // GetEntitiesInRange gets everything in a _square_ centered on the given position, but we are a _circle_. If we don't have this check and the station is rotated it is possible for the singularity to reach _outside of the containment field_ and eat the emitters. - var displacement = _xformSystem.GetWorldPosition(entityXform, xformQuery) - epicenter; - if (displacement.LengthSquared() > range2) + // See TODO above + if (_physicsQuery.TryComp(entity, out var otherBody) && !_physics.IsHardCollidable((uid, null, body), (entity, null, otherBody))) continue; AttemptConsumeEntity(uid, entity, eventHorizon); @@ -318,11 +329,11 @@ public void ConsumeTilesInRange(EntityUid uid, float range, TransformComponent? /// public void ConsumeEverythingInRange(EntityUid uid, float range, TransformComponent? xform = null, EventHorizonComponent? eventHorizon = null) { - if (!Resolve(uid, ref xform, ref eventHorizon)) + if (!Resolve(uid, ref eventHorizon)) return; if (eventHorizon.ConsumeEntities) - ConsumeEntitiesInRange(uid, range, xform, eventHorizon); + ConsumeEntitiesInRange(uid, range, null, eventHorizon); if (eventHorizon.ConsumeTiles) ConsumeTilesInRange(uid, range, xform, eventHorizon); } diff --git a/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs b/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs index f53d658ebd..9c1c53cb98 100644 --- a/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs +++ b/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Singularity.Components; using Content.Shared.Atmos.Components; using Content.Shared.Ghost; +using Content.Shared.Physics; using Content.Shared.Singularity.EntitySystems; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -33,9 +34,18 @@ public sealed class GravityWellSystem : SharedGravityWellSystem /// public const float MinGravPulseRange = 0.00001f; + private EntityQuery _wellQuery; + private EntityQuery _mapQuery; + private EntityQuery _gridQuery; + private EntityQuery _physicsQuery; + public override void Initialize() { base.Initialize(); + _wellQuery = GetEntityQuery(); + _mapQuery = GetEntityQuery(); + _gridQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); SubscribeLocalEvent(OnGravityWellStartup); var vvHandle = _vvManager.GetTypeHandler(); @@ -99,7 +109,10 @@ private void Update(EntityUid uid, TimeSpan frameTime, GravityWellComponent? gra return; var scale = (float)frameTime.TotalSeconds; - GravPulse(uid, gravWell.MaxRange, gravWell.MinRange, gravWell.BaseRadialAcceleration * scale, gravWell.BaseTangentialAcceleration * scale, xform); + GravPulse(uid, out var appliedImpulse, gravWell.MaxRange, gravWell.MinRange, gravWell.BaseRadialAcceleration * scale, gravWell.BaseTangentialAcceleration * scale, xform, gravWell.StaticAttraction); + + if (gravWell.ApplyCounterforce && TryComp(uid, out var physics)) + _physics.ApplyLinearImpulse(uid, -appliedImpulse, body: physics); } #region GravPulse @@ -111,11 +124,15 @@ private void Update(EntityUid uid, TimeSpan frameTime, GravityWellComponent? gra /// The entity to check. private bool CanGravPulseAffect(EntityUid entity) { - return !( - EntityManager.HasComponent(entity) || - EntityManager.HasComponent(entity) || - EntityManager.HasComponent(entity) || - EntityManager.HasComponent(entity) + if (_physicsQuery.TryComp(entity, out var physics)) + { + if (physics.CollisionLayer == (int) CollisionGroup.GhostImpassable) + return false; + } + + return !(_gridQuery.HasComp(entity) || + _mapQuery.HasComp(entity) || + _wellQuery.HasComp(entity) ); } @@ -123,29 +140,36 @@ private bool CanGravPulseAffect(EntityUid entity) /// Greates a gravitational pulse, shoving around all entities within some distance of an epicenter. /// /// The entity at the epicenter of the gravity pulse. + /// The state of the gravity well that is pulsing. /// The maximum distance at which entities can be affected by the gravity pulse. /// The minimum distance at which entities can be affected by the gravity pulse. /// The base velocity added to any entities within affected by the gravity pulse scaled by the displacement of those entities from the epicenter. /// (optional) The transform of the entity at the epicenter of the gravitational pulse. - public void GravPulse(EntityUid uid, float maxRange, float minRange, in Matrix3x2 baseMatrixDeltaV, TransformComponent? xform = null) + public void GravPulse(EntityUid uid, out Vector2 appliedImpulse, float maxRange, float minRange, in Matrix3x2 baseMatrixDeltaV, TransformComponent? xform = null, float? staticImpulse = null) { if (Resolve(uid, ref xform)) - GravPulse(xform.Coordinates, maxRange, minRange, in baseMatrixDeltaV); + GravPulse(uid, out appliedImpulse, xform.Coordinates, maxRange, minRange, in baseMatrixDeltaV, staticImpulse); + else + appliedImpulse = new Vector2(0f, 0f); } + /// /// Greates a gravitational pulse, shoving around all entities within some distance of an epicenter. /// /// The entity at the epicenter of the gravity pulse. + /// The state of the gravity well that is pulsing. /// The maximum distance at which entities can be affected by the gravity pulse. /// The minimum distance at which entities can be affected by the gravity pulse. /// The base radial velocity that will be added to entities within range towards the center of the gravitational pulse. /// The base tangential velocity that will be added to entities within countrclockwise around the center of the gravitational pulse. /// (optional) The transform of the entity at the epicenter of the gravitational pulse. - public void GravPulse(EntityUid uid, float maxRange, float minRange, float baseRadialDeltaV = 0.0f, float baseTangentialDeltaV = 0.0f, TransformComponent? xform = null) + public void GravPulse(EntityUid uid, out Vector2 appliedImpulse, float maxRange, float minRange, float baseRadialDeltaV = 0.0f, float baseTangentialDeltaV = 0.0f, TransformComponent? xform = null, float? staticImpulse = null) { if (Resolve(uid, ref xform)) - GravPulse(xform.Coordinates, maxRange, minRange, baseRadialDeltaV, baseTangentialDeltaV); + GravPulse(uid, out appliedImpulse, xform.Coordinates, maxRange, minRange, baseRadialDeltaV, baseTangentialDeltaV, staticImpulse); + else + appliedImpulse = new Vector2(0f, 0f); } /// @@ -155,8 +179,8 @@ public void GravPulse(EntityUid uid, float maxRange, float minRange, float baseR /// The maximum distance at which entities can be affected by the gravity pulse. /// The minimum distance at which entities can be affected by the gravity pulse. /// The base velocity added to any entities within affected by the gravity pulse scaled by the displacement of those entities from the epicenter. - public void GravPulse(EntityCoordinates entityPos, float maxRange, float minRange, in Matrix3x2 baseMatrixDeltaV) - => GravPulse(entityPos.ToMap(EntityManager, _transform), maxRange, minRange, in baseMatrixDeltaV); + public void GravPulse(EntityUid uid, out Vector2 appliedImpulse, EntityCoordinates entityPos, float maxRange, float minRange, in Matrix3x2 baseMatrixDeltaV, float? staticImpulse = null) + => GravPulse(uid, out appliedImpulse, _transform.ToMapCoordinates(entityPos), maxRange, minRange, in baseMatrixDeltaV, staticImpulse); /// /// Greates a gravitational pulse, shoving around all entities within some distance of an epicenter. @@ -166,18 +190,22 @@ public void GravPulse(EntityCoordinates entityPos, float maxRange, float minRang /// The minimum distance at which entities can be affected by the gravity pulse. /// The base radial velocity that will be added to entities within range towards the center of the gravitational pulse. /// The base tangential velocity that will be added to entities within countrclockwise around the center of the gravitational pulse. - public void GravPulse(EntityCoordinates entityPos, float maxRange, float minRange, float baseRadialDeltaV = 0.0f, float baseTangentialDeltaV = 0.0f) - => GravPulse(entityPos.ToMap(EntityManager, _transform), maxRange, minRange, baseRadialDeltaV, baseTangentialDeltaV); + public void GravPulse(EntityUid uid, out Vector2 appliedImpulse, EntityCoordinates entityPos, float maxRange, float minRange, float baseRadialDeltaV = 0.0f, float baseTangentialDeltaV = 0.0f, float? staticImpulse = null) + => GravPulse(uid, out appliedImpulse, _transform.ToMapCoordinates(entityPos), maxRange, minRange, baseRadialDeltaV, baseTangentialDeltaV, staticImpulse); /// /// Causes a gravitational pulse, shoving around all entities within some distance of an epicenter. /// + /// The entity at the epicenter of the gravity pulse. + /// The state of the gravity well that is pulsing. /// The epicenter of the gravity pulse. /// The maximum distance at which entities can be affected by the gravity pulse. /// The minimum distance at which entities can be affected by the gravity pulse. Exists to prevent div/0 errors. /// The base velocity added to any entities within affected by the gravity pulse scaled by the displacement of those entities from the epicenter. - public void GravPulse(MapCoordinates mapPos, float maxRange, float minRange, in Matrix3x2 baseMatrixDeltaV) + public void GravPulse(EntityUid uid, out Vector2 appliedImpulse, MapCoordinates mapPos, float maxRange, float minRange, in Matrix3x2 baseMatrixDeltaV, float? staticImpulse = null) { + appliedImpulse = new Vector2(0f, 0f); + if (mapPos == MapCoordinates.Nullspace) return; // No gravpulses in nullspace please. @@ -186,43 +214,57 @@ public void GravPulse(MapCoordinates mapPos, float maxRange, float minRange, in var bodyQuery = GetEntityQuery(); var xformQuery = GetEntityQuery(); - foreach(var entity in _lookup.GetEntitiesInRange(mapPos.MapId, epicenter, maxRange, flags: LookupFlags.Dynamic | LookupFlags.Sundries)) + var countStatic = staticImpulse is not null; + + var flags = LookupFlags.Dynamic | LookupFlags.Sundries; + if (countStatic) + flags |= LookupFlags.Static; + + foreach(var entity in _lookup.GetEntitiesInRange(mapPos.MapId, epicenter, maxRange, flags: flags)) { - if (!bodyQuery.TryGetComponent(entity, out var physics) - || physics.BodyType == BodyType.Static) - { + if (!bodyQuery.TryGetComponent(entity, out var physics)) continue; - } - - if (TryComp(entity, out var movedPressure) && !movedPressure.Enabled) //Ignore magboots users + bool isStatic = physics.BodyType == BodyType.Static; + if (!countStatic && isStatic) continue; - if(!CanGravPulseAffect(entity)) + if (!CanGravPulseAffect(entity)) continue; + isStatic |= TryComp(entity, out var movedPressure) && !movedPressure.Enabled; // Treat magboots users as static + var displacement = epicenter - _transform.GetWorldPosition(entity, xformQuery); var distance2 = displacement.LengthSquared(); if (distance2 < minRange2) continue; - var scaling = (1f / distance2) * physics.Mass; // TODO: Variable falloff gradiants. - _physics.ApplyLinearImpulse(entity, Vector2.Transform(displacement, baseMatrixDeltaV) * scaling, body: physics); + var scaling = (1f / distance2) * physics.FixturesMass; // TODO: Variable falloff gradients + if (isStatic) + scaling *= staticImpulse ?? 1f; + + var impulse = Vector2.Transform(displacement, baseMatrixDeltaV) * scaling; + if (!isStatic) // Impulse shouldn't be applied to static entities + _physics.ApplyLinearImpulse(entity, impulse, body: physics); + + appliedImpulse += impulse; } } /// /// Causes a gravitational pulse, shoving around all entities within some distance of an epicenter. /// + /// The entity at the epicenter of the gravity pulse. + /// The state of the gravity well that is pulsing. /// The epicenter of the gravity pulse. /// The maximum distance at which entities can be affected by the gravity pulse. /// The minimum distance at which entities can be affected by the gravity pulse. Exists to prevent div/0 errors. /// The base amount of velocity that will be added to entities in range towards the epicenter of the pulse. /// The base amount of velocity that will be added to entities in range counterclockwise relative to the epicenter of the pulse. - public void GravPulse(MapCoordinates mapPos, float maxRange, float minRange = 0.0f, float baseRadialDeltaV = 0.0f, float baseTangentialDeltaV = 0.0f) - => GravPulse(mapPos, maxRange, minRange, new Matrix3x2( - baseRadialDeltaV, -baseTangentialDeltaV, 0.0f, - +baseTangentialDeltaV, baseRadialDeltaV, 0.0f - )); + public void GravPulse(EntityUid uid, out Vector2 appliedImpulse, MapCoordinates mapPos, float maxRange, float minRange = 0.0f, float baseRadialDeltaV = 0.0f, float baseTangentialDeltaV = 0.0f, float? staticImpulse = null) + => GravPulse(uid, out appliedImpulse, mapPos, maxRange, minRange, new Matrix3x2( + baseRadialDeltaV, +baseTangentialDeltaV, 0.0f, + -baseTangentialDeltaV, baseRadialDeltaV, 0.0f + ), staticImpulse); #endregion GravPulse diff --git a/Content.Server/Speech/EntitySystems/SkeletonAccentSystem.cs b/Content.Server/Speech/EntitySystems/SkeletonAccentSystem.cs index d143c25fdb..d832629530 100644 --- a/Content.Server/Speech/EntitySystems/SkeletonAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/SkeletonAccentSystem.cs @@ -1,4 +1,4 @@ -using System.Text.RegularExpressions; +using System.Text.RegularExpressions; using Content.Server.Speech.Components; using Robust.Shared.Random; @@ -27,7 +27,8 @@ public sealed partial class SkeletonAccentSystem : EntitySystem { "killed", "skeletonized"}, { "humorous", "humerus"}, { "to be a", "tibia"}, - { "under", "ulna"} + { "under", "ulna"}, + { "narrow", "marrow"}, }; public override void Initialize() diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 85f5662b42..f44416d0c9 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.CCVar; +using Content.Shared.Customization.Systems; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; using Content.Shared.PDA; @@ -50,6 +51,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem [Dependency] private readonly InternalEncryptionKeySpawner _internalEncryption = default!; [Dependency] private readonly ArrivalsSystem _arrivalsSystem = default!; [Dependency] private readonly ContainerSpawnPointSystem _containerSpawnPointSystem = default!; + [Dependency] private readonly CharacterRequirementsSystem _characterRequirements = default!; private bool _randomizeCharacters; @@ -142,6 +144,9 @@ public EntityUid SpawnPlayerMob( if (prototype?.StartingGear != null) { var startingGear = _prototypeManager.Index(prototype.StartingGear); + if (profile != null) + startingGear = ApplySubGear(startingGear, profile, prototype); + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); if (profile != null) EquipIdCard(entity.Value, profile.Name, prototype, station); diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs index 7a62eba6f7..36ae2646b8 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs @@ -14,7 +14,7 @@ public sealed partial class SupermatterSystem /// /// Handle power and radiation output depending on atmospheric things. /// - private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) + private void ProcessAtmos(EntityUid uid, SupermatterComponent sm, float frameTime) { var mix = _atmosphere.GetContainingMixture(uid, true, true); @@ -104,7 +104,9 @@ private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) * _config.GetCVar(CCVars.SupermatterRadsModifier); // Power * 0.55 * 0.8~1 - var energy = sm.Power * sm.ReactionPowerModifier; + // This has to be differentiated with respect to time, since its going to be interacting with systems + // that also differentiate. Basically, if we don't multiply by 2 * frameTime, the supermatter will explode faster if your server's tickrate is higher. + var energy = 2 * sm.Power * sm.ReactionPowerModifier * frameTime; // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock is on. // An increase of 4°C at 25% efficiency here results in an increase of 1°C / (#tilesincore) overall. @@ -193,6 +195,9 @@ private void HandleDamage(EntityUid uid, SupermatterComponent sm) totalDamage += healHeatDamage; } + // Return the manipulated gas back to the mix + _atmosphere.Merge(mix, absorbedGas); + // Check for space tiles next to SM //TODO: Change moles out for checking if adjacent tiles exist var enumerator = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); @@ -409,4 +414,4 @@ private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) if (ambient.Sound != sm.CurrentSoundLoop) _ambient.SetSound(uid, sm.CurrentSoundLoop, ambient); } -} \ No newline at end of file +} diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 24039a50c2..7521b42c48 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -71,18 +71,18 @@ public override void Update(float frameTime) if (sm.UpdateAccumulator >= sm.UpdateTimer) { sm.UpdateAccumulator -= sm.UpdateTimer; - Cycle(uid, sm); + Cycle(uid, sm, frameTime); } } } - public void Cycle(EntityUid uid, SupermatterComponent sm) + public void Cycle(EntityUid uid, SupermatterComponent sm, float frameTime) { sm.ZapAccumulator++; sm.YellAccumulator++; - ProcessAtmos(uid, sm); + ProcessAtmos(uid, sm, frameTime); HandleDamage(uid, sm); if (sm.Damage >= sm.DamageDelaminationPoint || sm.Delamming) diff --git a/Content.Server/Temperature/Components/TemperatureComponent.cs b/Content.Server/Temperature/Components/TemperatureComponent.cs index 3bfa12f269..ae2c373b14 100644 --- a/Content.Server/Temperature/Components/TemperatureComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureComponent.cs @@ -1,4 +1,3 @@ -using Content.Server.Temperature.Systems; using Content.Shared.Alert; using Content.Shared.Atmos; using Content.Shared.Damage; @@ -51,15 +50,6 @@ public sealed partial class TemperatureComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite)] public float AtmosTemperatureTransferEfficiency = 0.1f; - [Obsolete("Use system method")] - public float HeatCapacity - { - get - { - return IoCManager.Resolve().System().GetHeatCapacity(Owner, this); - } - } - [DataField, ViewVariables(VVAccess.ReadWrite)] public DamageSpecifier ColdDamage = new(); @@ -71,7 +61,7 @@ public float HeatCapacity /// /// /// Okay it genuinely reaches this basically immediately for a plasma fire. - /// + /// [DataField, ViewVariables(VVAccess.ReadWrite)] public FixedPoint2 DamageCap = FixedPoint2.New(8); @@ -79,7 +69,7 @@ public float HeatCapacity /// Used to keep track of when damage starts/stops. Useful for logs. /// [DataField] - public bool TakingDamage = false; + public bool TakingDamage; [DataField] public ProtoId HotAlert = "Hot"; diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index ee13cb96a5..be6dc78240 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -208,11 +208,18 @@ private void ServerAlert(EntityUid uid, AlertsComponent status, OnTemperatureCha if (args.CurrentTemperature <= idealTemp) { + // If there's no risk to being cold there's no reason to show a Cold alert + if (!temperature.ColdDamage.AnyPositive()) + return; + type = temperature.ColdAlert; threshold = temperature.ColdDamageThreshold; } else { + if (!temperature.HeatDamage.AnyPositive()) + return; + type = temperature.HotAlert; threshold = temperature.HeatDamageThreshold; } @@ -414,17 +421,3 @@ private void RecalculateAndApplyParentThresholds(EntityUid uid, return (newHeatThreshold, newColdThreshold); } } - -public sealed class OnTemperatureChangeEvent : EntityEventArgs -{ - public float CurrentTemperature { get; } - public float LastTemperature { get; } - public float TemperatureDelta { get; } - - public OnTemperatureChangeEvent(float current, float last, float delta) - { - CurrentTemperature = current; - LastTemperature = last; - TemperatureDelta = delta; - } -} diff --git a/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs b/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs index 133876bd75..8ff49b4d10 100644 --- a/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs +++ b/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs @@ -1,8 +1,12 @@ using Content.Server.Thief.Components; +using Content.Shared.Customization.Systems; +using Content.Shared.Humanoid; +using Content.Shared.Roles; using Content.Shared.Item; using Content.Shared.Thief; using Robust.Server.GameObjects; using Robust.Server.Audio; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; namespace Content.Server.Thief.Systems; @@ -15,8 +19,10 @@ public sealed class ThiefUndeterminedBackpackSystem : EntitySystem { [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly CharacterRequirementsSystem _characterRequirements = default!; private const int MaxSelectedSets = 2; public override void Initialize() @@ -30,7 +36,7 @@ public override void Initialize() private void OnUIOpened(Entity backpack, ref BoundUIOpenedEvent args) { - UpdateUI(backpack.Owner, backpack.Comp); + UpdateUI(backpack.Owner, args.Actor, backpack.Comp); } private void OnApprove(Entity backpack, ref ThiefBackpackApproveMessage args) @@ -57,10 +63,10 @@ private void OnChangeSet(Entity backpack, re if (!backpack.Comp.SelectedSets.Remove(args.SetNumber)) backpack.Comp.SelectedSets.Add(args.SetNumber); - UpdateUI(backpack.Owner, backpack.Comp); + UpdateUI(backpack.Owner, args.Actor, backpack.Comp); } - private void UpdateUI(EntityUid uid, ThiefUndeterminedBackpackComponent? component = null) + private void UpdateUI(EntityUid uid, EntityUid user, ThiefUndeterminedBackpackComponent? component = null) { if (!Resolve(uid, ref component)) return; @@ -70,6 +76,15 @@ private void UpdateUI(EntityUid uid, ThiefUndeterminedBackpackComponent? compone for (int i = 0; i < component.PossibleSets.Count; i++) { var set = _proto.Index(component.PossibleSets[i]); + + if (set.Requirements.Count != 0 && + TryComp(user, out var appearance) && + appearance.LastProfileLoaded != null && + !_characterRequirements.CheckRequirementsValid( + set.Requirements, new JobPrototype() /* not gonna bother with jobs */, + appearance.LastProfileLoaded, new(), false, set, EntityManager, _proto, _config, out _)) + continue; + var selected = component.SelectedSets.Contains(i); var info = new ThiefBackpackSetInfo( set.Name, diff --git a/Content.Server/Traits/TraitSystem.Functions.cs b/Content.Server/Traits/TraitSystem.Functions.cs index 8306105b93..deb3102d4b 100644 --- a/Content.Server/Traits/TraitSystem.Functions.cs +++ b/Content.Server/Traits/TraitSystem.Functions.cs @@ -673,5 +673,7 @@ public override void OnPlayerSpawn(EntityUid uid, if (AttackRateModifier != null) melee.AttackRate *= AttackRateModifier.Value; + + entityManager.Dirty(uid, melee); } } diff --git a/Content.Server/Traits/TraitSystem.cs b/Content.Server/Traits/TraitSystem.cs index 57103c4a5d..608dd0e649 100644 --- a/Content.Server/Traits/TraitSystem.cs +++ b/Content.Server/Traits/TraitSystem.cs @@ -9,11 +9,13 @@ using Content.Shared.Customization.Systems; using Content.Shared.Database; using Content.Shared.Players; +using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Traits; using Robust.Server.Player; using Robust.Shared.Configuration; using Content.Shared.Whitelist; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization.Manager; @@ -44,15 +46,25 @@ public override void Initialize() } // When the player is spawned in, add all trait components selected during character creation - private void OnPlayerSpawnComplete(PlayerSpawnCompleteEvent args) + private void OnPlayerSpawnComplete(PlayerSpawnCompleteEvent args) => + ApplyTraits(args.Mob, args.JobId, args.Profile, + _playTimeTracking.GetTrackerTimes(args.Player), args.Player.ContentData()?.Whitelisted ?? false); + + /// + /// Adds the traits selected by a player to an entity. + /// + public void ApplyTraits(EntityUid uid, ProtoId? jobId, HumanoidCharacterProfile profile, + Dictionary playTimes, bool whitelisted, bool punishCheater = true) { var pointsTotal = _configuration.GetCVar(CCVars.GameTraitsDefaultPoints); var traitSelections = _configuration.GetCVar(CCVars.GameTraitsMax); - if (args.JobId is not null && !_prototype.TryIndex(args.JobId, out var jobPrototype) + if (jobId is not null && !_prototype.TryIndex(jobId, out var jobPrototype) && jobPrototype is not null && !jobPrototype.ApplyTraits) return; - foreach (var traitId in args.Profile.TraitPreferences) + var jobPrototypeToUse = _prototype.Index(jobId ?? _prototype.EnumeratePrototypes().First().ID); + + foreach (var traitId in profile.TraitPreferences) { if (!_prototype.TryIndex(traitId, out var traitPrototype)) { @@ -62,8 +74,8 @@ private void OnPlayerSpawnComplete(PlayerSpawnCompleteEvent args) if (!_characterRequirements.CheckRequirementsValid( traitPrototype.Requirements, - _prototype.Index(args.JobId ?? _prototype.EnumeratePrototypes().First().ID), - args.Profile, _playTimeTracking.GetTrackerTimes(args.Player), args.Player.ContentData()?.Whitelisted ?? false, traitPrototype, + jobPrototypeToUse, + profile, playTimes, whitelisted, traitPrototype, EntityManager, _prototype, _configuration, out _)) continue; @@ -72,11 +84,11 @@ private void OnPlayerSpawnComplete(PlayerSpawnCompleteEvent args) pointsTotal += traitPrototype.Points; --traitSelections; - AddTrait(args.Mob, traitPrototype); + AddTrait(uid, traitPrototype); } - if (pointsTotal < 0 || traitSelections < 0) - PunishCheater(args.Mob); + if (punishCheater && (pointsTotal < 0 || traitSelections < 0)) + PunishCheater(uid); } /// diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 7fe34516fe..8e1ddba7f1 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using System.Numerics; using Content.Server.Cargo.Systems; +using Content.Shared.Contests; using Content.Server.Power.EntitySystems; using Content.Server.Weapons.Ranged.Components; using Content.Shared.Damage; @@ -35,6 +36,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly StaminaSystem _stamina = default!; [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly ContestsSystem _contests = default!; private const float DamagePitchVariation = 0.05f; @@ -80,7 +82,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? var toMap = toCoordinates.ToMapPos(EntityManager, TransformSystem); var mapDirection = toMap - fromMap.Position; var mapAngle = mapDirection.ToAngle(); - var angle = GetRecoilAngle(Timing.CurTime, gun, mapDirection.ToAngle()); + var angle = GetRecoilAngle(Timing.CurTime, gun, mapDirection.ToAngle(), user); // If applicable, this ensures the projectile is parented to grid on spawn, instead of the map. var fromEnt = MapManager.TryFindGridAt(fromMap, out var gridUid, out var grid) @@ -334,7 +336,7 @@ private Angle[] LinearSpread(Angle start, Angle end, int intervals) return angles; } - private Angle GetRecoilAngle(TimeSpan curTime, GunComponent component, Angle direction) + private Angle GetRecoilAngle(TimeSpan curTime, GunComponent component, Angle direction, EntityUid? user) { var timeSinceLastFire = (curTime - component.LastFire).TotalSeconds; var newTheta = MathHelper.Clamp(component.CurrentAngle.Theta + component.AngleIncreaseModified.Theta - component.AngleDecayModified.Theta * timeSinceLastFire, component.MinAngleModified.Theta, component.MaxAngleModified.Theta); @@ -342,7 +344,7 @@ private Angle GetRecoilAngle(TimeSpan curTime, GunComponent component, Angle dir component.LastFire = component.NextFire; // Convert it so angle can go either side. - var random = Random.NextFloat(-0.5f, 0.5f); + var random = Random.NextFloat(-0.5f, 0.5f) / _contests.MassContest(user); var spread = component.CurrentAngle.Theta * random; var angle = new Angle(direction.Theta + component.CurrentAngle.Theta * random); DebugTools.Assert(spread <= component.MaxAngleModified.Theta); diff --git a/Content.Server/_DV/Abilities/Chitinid/BlockInjectionComponent.cs b/Content.Server/_DV/Abilities/Chitinid/BlockInjectionComponent.cs new file mode 100644 index 0000000000..8ba332ce76 --- /dev/null +++ b/Content.Server/_DV/Abilities/Chitinid/BlockInjectionComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.Abilities.Chitinid; + + +[RegisterComponent] +public sealed partial class BlockInjectionComponent : Component +{ + [DataField] + public string BlockReason { get; set; } = string.Empty; +} diff --git a/Content.Server/_DV/Abilities/Chitinid/ChitinidComponent.cs b/Content.Server/_DV/Abilities/Chitinid/ChitinidComponent.cs new file mode 100644 index 0000000000..871d10a7c2 --- /dev/null +++ b/Content.Server/_DV/Abilities/Chitinid/ChitinidComponent.cs @@ -0,0 +1,41 @@ +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Abilities.Chitinid; + +[RegisterComponent] +public sealed partial class ChitinidComponent : Component +{ + [DataField] + public EntProtoId ChitzitePrototype = "Chitzite"; + + [DataField] + public EntProtoId ChitziteActionId = "ActionChitzite"; + + [DataField] + public EntityUid? ChitziteAction; + + [DataField] + public FixedPoint2 AmountAbsorbed = 0f; + + [DataField] + public DamageSpecifier Healing = new() + { + DamageDict = new() + { + { "Radiation", -0.5 }, + } + }; + + [DataField] + public FixedPoint2 MaximumAbsorbed = 30f; + + [DataField] + public TimeSpan UpdateInterval = TimeSpan.FromSeconds(1); + + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextUpdate; +} diff --git a/Content.Server/_DV/Abilities/Chitinid/ChitinidSystem.cs b/Content.Server/_DV/Abilities/Chitinid/ChitinidSystem.cs new file mode 100644 index 0000000000..34d8244d5c --- /dev/null +++ b/Content.Server/_DV/Abilities/Chitinid/ChitinidSystem.cs @@ -0,0 +1,97 @@ +using Content.Server.Nutrition.Components; +using Content.Shared.Actions; +using Content.Shared.Actions.Events; +using Content.Shared.Audio; +using Content.Shared.Damage; +using Content.Shared.IdentityManagement; +using Content.Shared.Inventory; +using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; + +namespace Content.Server.Abilities.Chitinid; + +public sealed partial class ChitinidSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnChitzite); + SubscribeLocalEvent(OnMapInit); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var chitinid, out var damageable)) + { + if (_timing.CurTime < chitinid.NextUpdate) + continue; + + chitinid.NextUpdate += chitinid.UpdateInterval; + + if (chitinid.AmountAbsorbed >= chitinid.MaximumAbsorbed || _mobState.IsDead(uid)) + continue; + + if (_damageable.TryChangeDamage(uid, chitinid.Healing, damageable: damageable) is {} delta) + { + chitinid.AmountAbsorbed += -delta.GetTotal().Float(); + if (chitinid.ChitziteAction != null && chitinid.AmountAbsorbed >= chitinid.MaximumAbsorbed) + { + _actions.SetCharges(chitinid.ChitziteAction, 1); // You get the charge back and that's it. Tough. + _actions.SetEnabled(chitinid.ChitziteAction, true); + } + } + } + + var entQuery = EntityQueryEnumerator(); + while (entQuery.MoveNext(out var ent, out var chitzite, out var chitinid)) + { + if (_timing.CurTime < chitzite.NextCough) + continue; + + Spawn(chitinid.ChitzitePrototype, Transform(ent).Coordinates); + chitinid.AmountAbsorbed = 0f; + RemCompDeferred(ent, chitzite); + } + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + if (ent.Comp.ChitziteAction != null) + return; + + ent.Comp.NextUpdate = _timing.CurTime + ent.Comp.UpdateInterval; + + _actions.AddAction(ent, ref ent.Comp.ChitziteAction, ent.Comp.ChitziteActionId); + } + + private void OnChitzite(Entity ent, ref ChitziteActionEvent args) + { + if (_inventory.TryGetSlotEntity(ent, "mask", out var maskUid) && + TryComp(maskUid, out var blocker) && + blocker.Enabled) + { + _popup.PopupEntity(Loc.GetString("chitzite-mask", ("mask", maskUid)), ent, ent); + return; + } + + _popup.PopupEntity(Loc.GetString("chitzite-cough", ("name", Identity.Entity(ent, EntityManager))), ent); + _audio.PlayPvs("/Audio/Animals/cat_hiss.ogg", ent, AudioHelpers.WithVariation(0.15f)); + + var chitzite = EnsureComp(ent); + chitzite.NextCough = _timing.CurTime + chitzite.CoughUpTime; + args.Handled = true; + } +} diff --git a/Content.Server/_DV/Abilities/Chitinid/CoughingUpChitziteComponent.cs b/Content.Server/_DV/Abilities/Chitinid/CoughingUpChitziteComponent.cs new file mode 100644 index 0000000000..1dae46b943 --- /dev/null +++ b/Content.Server/_DV/Abilities/Chitinid/CoughingUpChitziteComponent.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Abilities.Chitinid; + +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class CoughingUpChitziteComponent : Component +{ + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoPausedField] + public TimeSpan NextCough; + + [DataField] + public TimeSpan CoughUpTime = TimeSpan.FromSeconds(2.15); +} diff --git a/Content.Server/_EstacaoPirata/OpenTriggeredStorageFill/OpenTriggeredStorageFillComponent.cs b/Content.Server/_EstacaoPirata/OpenTriggeredStorageFill/OpenTriggeredStorageFillComponent.cs new file mode 100644 index 0000000000..5af24b34d8 --- /dev/null +++ b/Content.Server/_EstacaoPirata/OpenTriggeredStorageFill/OpenTriggeredStorageFillComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + +namespace Content.Server._EstacaoPirata.OpenTriggeredStorageFill; + +/// +/// This is used for storing an item prototype to be inserted into a container when the trigger is activated. This is deleted from the entity after the item is inserted. +/// +[RegisterComponent] +public sealed partial class OpenTriggeredStorageFillComponent : Component +{ + [DataField] + public List Contents = new(); +} diff --git a/Content.Server/_EstacaoPirata/OpenTriggeredStorageFill/OpenTriggeredStorageFillSystem.cs b/Content.Server/_EstacaoPirata/OpenTriggeredStorageFill/OpenTriggeredStorageFillSystem.cs new file mode 100644 index 0000000000..bb2123cc89 --- /dev/null +++ b/Content.Server/_EstacaoPirata/OpenTriggeredStorageFill/OpenTriggeredStorageFillSystem.cs @@ -0,0 +1,67 @@ +using Content.Server.Popups; +using Content.Server.Spawners.Components; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Item; +using Content.Shared.Localizations; +using Content.Shared.Prototypes; +using Content.Shared.Storage; +using Content.Shared.Storage.EntitySystems; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Server._EstacaoPirata.OpenTriggeredStorageFill; + +/// +/// This handles... +/// +public sealed class OpenTriggeredStorageFillSystem : EntitySystem +{ + + [Dependency] private readonly SharedStorageSystem _storage = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnOpenEvent); + SubscribeLocalEvent(OnExamineEvent); + } + + private void OnExamineEvent(EntityUid uid, OpenTriggeredStorageFillComponent component, ExaminedEvent args) + { + args.PushText(Loc.GetString("container-sealed")); + } + + //Yes, that's a copy of StorageSystem StorageFill method + private void OnOpenEvent(EntityUid uid, OpenTriggeredStorageFillComponent comp, ActivateInWorldEvent args) + { + Log.Debug($"Processing storage fill trigger for entity {ToPrettyString(uid)}"); + + var coordinates = Transform(uid).Coordinates; + + var spawnItems = EntitySpawnCollection.GetSpawns(comp.Contents); + foreach (var item in spawnItems) + { + DebugTools.Assert(!_prototype.Index(item) + .HasComponent(typeof(RandomSpawnerComponent))); + var ent = Spawn(item, coordinates); + + if (!TryComp(ent, out var itemComp)) + { + Log.Error($"Tried to fill {ToPrettyString(uid)} with non-item {item}."); + Del(ent); + continue; + } + if (!_storage.Insert(uid, ent, out var remainingEnt, out var reason, playSound: false)) + { + Log.Error($"Failed to fill {ToPrettyString(uid)} with {ToPrettyString(ent)}. Reason: {reason}"); + // Clean up the spawned entity if insertion fails + Del(ent); + } + } + _popup.PopupEntity(Loc.GetString("container-unsealed"), args.Target); + RemComp(uid, comp); + } +} diff --git a/Content.Server/_Goobstation/Clothing/Systems/PoweredSealableClothingSystem.cs b/Content.Server/_Goobstation/Clothing/Systems/PoweredSealableClothingSystem.cs new file mode 100644 index 0000000000..3e7a9d7d9f --- /dev/null +++ b/Content.Server/_Goobstation/Clothing/Systems/PoweredSealableClothingSystem.cs @@ -0,0 +1,112 @@ +using Content.Server.Power.EntitySystems; +using Content.Server.PowerCell; +using Content.Shared._Goobstation.Clothing.Components; +using Content.Shared._Goobstation.Clothing.Systems; +using Content.Shared.Alert; +using Content.Shared.Inventory; +using Content.Shared.Movement.Systems; +using Content.Shared.PowerCell; +using Content.Shared.PowerCell.Components; +using Content.Shared.Rounding; + +namespace Content.Server._Goobstation.Clothing.Systems; + +public sealed partial class PoweredSealableClothingSystem : SharedPoweredSealableClothingSystem +{ + [Dependency] private readonly AlertsSystem _alertsSystem = default!; + [Dependency] private readonly PowerCellSystem _powerCellSystem = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnMovementSpeedChange); + SubscribeLocalEvent(OnPowerCellChanged); + SubscribeLocalEvent(OnPowerCellEmpty); + SubscribeLocalEvent(OnRequiresPowerSealCompleteEvent); + SubscribeLocalEvent>(OnFindInventoryBatteryEvent); + } + + private void OnPowerCellChanged(Entity entity, ref PowerCellChangedEvent args) + { + if (!entity.Comp.IsPowered && _powerCellSystem.HasDrawCharge(entity)) + { + entity.Comp.IsPowered = true; + Dirty(entity); + + ModifySpeed(entity); + } + + UpdateClothingPowerAlert(entity); + } + + private void OnPowerCellEmpty(Entity entity, ref PowerCellSlotEmptyEvent args) + { + entity.Comp.IsPowered = false; + Dirty(entity); + + ModifySpeed(entity); + } + + /// Enables or disables power cell draw on seal/unseal complete + private void OnRequiresPowerSealCompleteEvent(Entity entity, ref ClothingControlSealCompleteEvent args) + { + if (!TryComp(entity, out PowerCellDrawComponent? drawComp)) + return; + + _powerCellSystem.SetDrawEnabled((entity.Owner, drawComp), args.IsSealed); + + UpdateClothingPowerAlert(entity); + ModifySpeed(entity); + } + + private void OnMovementSpeedChange(Entity entity, ref InventoryRelayedEvent args) + { + if (!TryComp(entity, out SealableClothingControlComponent? controlComp)) + return; + + // If suit is unsealed - don't care about penalty + if (!controlComp.IsCurrentlySealed) + return; + + if (!entity.Comp.IsPowered) + args.Args.ModifySpeed(entity.Comp.MovementSpeedPenalty); + } + + private void ModifySpeed(EntityUid uid) + { + if (!TryComp(uid, out SealableClothingControlComponent? controlComp) || controlComp.WearerEntity == null) + return; + + _movementSpeed.RefreshMovementSpeedModifiers(controlComp.WearerEntity.Value); + } + + /// Sets power alert to wearer when clothing is sealed + private void UpdateClothingPowerAlert(Entity entity) + { + var (uid, comp) = entity; + + if (!TryComp(uid, out var controlComp) || controlComp.WearerEntity == null) + return; + + if (!_powerCellSystem.TryGetBatteryFromSlot(entity, out var battery) || !controlComp.IsCurrentlySealed) + { + _alertsSystem.ClearAlert(controlComp.WearerEntity.Value, comp.SuitPowerAlert); + return; + } + + var severity = ContentHelpers.RoundToLevels(MathF.Max(0f, battery.CurrentCharge), battery.MaxCharge, 6); + _alertsSystem.ShowAlert(controlComp.WearerEntity.Value, comp.SuitPowerAlert, (short) severity); + } + + /// Tries to find battery for charger + private void OnFindInventoryBatteryEvent(Entity entity, ref InventoryRelayedEvent args) + { + if (args.Args.FoundBattery != null) + return; + + if (_powerCellSystem.TryGetBatteryFromSlot(entity, out var batteryEnt, out var battery)) + args.Args.FoundBattery = (batteryEnt.Value, battery); + } +} diff --git a/Content.Server/_Goobstation/Clothing/Systems/SealableClothingSystem.cs b/Content.Server/_Goobstation/Clothing/Systems/SealableClothingSystem.cs new file mode 100644 index 0000000000..09f0d9dbfc --- /dev/null +++ b/Content.Server/_Goobstation/Clothing/Systems/SealableClothingSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared._Goobstation.Clothing.Systems; + +namespace Content.Server._Goobstation.Clothing.Systems; + +public sealed partial class SealableClothingSystem : SharedSealableClothingSystem { } diff --git a/Content.Server/_Goobstation/Ghostbar/Components/GhostBarPlayerComponent.cs b/Content.Server/_Goobstation/Ghostbar/Components/GhostBarPlayerComponent.cs new file mode 100644 index 0000000000..ff86fdc65d --- /dev/null +++ b/Content.Server/_Goobstation/Ghostbar/Components/GhostBarPlayerComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server._Goobstation.Ghostbar.Components; + +/// +/// Tracker for ghostbar players +/// +[RegisterComponent] +public sealed partial class GhostBarPlayerComponent : Component +{ + +} diff --git a/Content.Server/_Goobstation/Ghostbar/Components/GhostBarSpawnComponent.cs b/Content.Server/_Goobstation/Ghostbar/Components/GhostBarSpawnComponent.cs new file mode 100644 index 0000000000..3fedde8ea4 --- /dev/null +++ b/Content.Server/_Goobstation/Ghostbar/Components/GhostBarSpawnComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server._Goobstation.Ghostbar.Components; + +/// +/// Target for ghosts to spawn at +/// +[RegisterComponent] +public sealed partial class GhostBarSpawnComponent : Component +{ + +} diff --git a/Content.Server/_Goobstation/Ghostbar/GhostBarSystem.cs b/Content.Server/_Goobstation/Ghostbar/GhostBarSystem.cs new file mode 100644 index 0000000000..8fce377a7d --- /dev/null +++ b/Content.Server/_Goobstation/Ghostbar/GhostBarSystem.cs @@ -0,0 +1,132 @@ +using Robust.Server.GameObjects; +using Content.Server.Clothing.Systems; // Einstein Engines +using Content.Server.GameTicking; +using Content.Server.GameTicking.Events; +using Content.Server.Players.PlayTimeTracking; // Einstein Engines +using Content.Server.Station.Systems; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Server.Maps; +using Robust.Shared.Random; +using Content.Shared.Ghost; +using Content.Server._Goobstation.Ghostbar.Components; +using Content.Server.Mind; +using Content.Shared.Mind.Components; +using Content.Shared.Roles; +using Content.Server.Antag.Components; +using Content.Server.Traits; // Einstein Engines +using Content.Shared.Mindshield.Components; +using Content.Shared.Players; +using Content.Shared.Roles.Jobs; // Einstein Engines - use JobComponent + +namespace Content.Server._Goobstation.Ghostbar; + +public sealed class GhostBarSystem : EntitySystem +{ + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly MapLoaderSystem _mapLoader = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly GameTicker _ticker = default!; + [Dependency] private readonly StationSpawningSystem _spawningSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + // Einstein Engines start + [Dependency] private readonly PlayTimeTrackingManager _playTimeTracking = default!; + [Dependency] private readonly LoadoutSystem _loadout = default!; + [Dependency] private readonly TraitSystem _trait = default!; + // Einstein Engines end + + [ValidatePrototypeId] // Einstein Engines - validate job prototypes + private static readonly List> _jobComponents = new() + { + "Passenger", "Bartender", "Botanist", "Chef", "Janitor" + }; + + public override void Initialize() + { + SubscribeLocalEvent(OnRoundStart); + SubscribeNetworkEvent(SpawnPlayer); + SubscribeLocalEvent(OnPlayerGhosted); + } + + const string MapPath = "Maps/_Goobstation/Nonstations/ghostbar.yml"; + private void OnRoundStart(RoundStartingEvent ev) + { + _mapSystem.CreateMap(out var mapId); + var options = new MapLoadOptions { LoadMap = true }; + + if (_mapLoader.TryLoad(mapId, MapPath, out _, options)) + _mapSystem.SetPaused(mapId, false); + } + + public void SpawnPlayer(GhostBarSpawnEvent msg, EntitySessionEventArgs args) + { + var player = args.SenderSession; + + if (!_mindSystem.TryGetMind(player, out var mindId, out var mind)) + { + Log.Warning($"Failed to find mind for player {player.Name}."); + return; + } + + if (!_entityManager.HasComponent(player.AttachedEntity)) + { + Log.Warning($"User {player.Name} tried to spawn at ghost bar without being a ghost."); + return; + } + + var spawnPoints = new List(); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out _)) + { + spawnPoints.Add(_entityManager.GetComponent(ent).Coordinates); + } + + if (spawnPoints.Count == 0) + { + Log.Warning("No spawn points found for ghost bar."); + return; + } + + var data = player.ContentData(); + + if (data == null) + { + Log.Warning($"ContentData was null when trying to spawn {player.Name} in ghost bar."); + return; + } + + var randomSpawnPoint = _random.Pick(spawnPoints); + var randomJob = _random.Pick(_jobComponents); + var profile = _ticker.GetPlayerProfile(args.SenderSession); + var mobUid = _spawningSystem.SpawnPlayerMob(randomSpawnPoint, new JobComponent { Prototype = randomJob }, profile, null); // Einstein Engines - pass in JobComponent + + // Einstein Engines start - apply loadouts and traits + var playTimes = _playTimeTracking.GetTrackerTimes(player); + var whitelisted = player.ContentData()?.Whitelisted ?? false; + + _loadout.ApplyCharacterLoadout( + mobUid, randomJob, profile, playTimes, whitelisted + ); + _trait.ApplyTraits( + mobUid, randomJob, profile, playTimes, whitelisted, punishCheater: false + ); + // Einstein Engines end - apply loadouts and traits + + _entityManager.EnsureComponent(mobUid); + _entityManager.EnsureComponent(mobUid); + _entityManager.EnsureComponent(mobUid); + _entityManager.EnsureComponent(mobUid); + + if (mind.Objectives.Count == 0) + _mindSystem.WipeMind(player); + mindId = _mindSystem.CreateMind(data.UserId, profile.Name).Owner; + _mindSystem.TransferTo(mindId, mobUid, true); + } + + private void OnPlayerGhosted(EntityUid uid, GhostBarPlayerComponent component, MindRemovedMessage args) + { + _entityManager.DeleteEntity(uid); + } +} + diff --git a/Content.Server/_Goobstation/Mech/Equipment/EntitySystems/MechGunSystem.cs b/Content.Server/_Goobstation/Mech/Equipment/EntitySystems/MechGunSystem.cs new file mode 100644 index 0000000000..014204582c --- /dev/null +++ b/Content.Server/_Goobstation/Mech/Equipment/EntitySystems/MechGunSystem.cs @@ -0,0 +1,76 @@ +using Content.Server.Mech.Systems; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Mech.Components; +using Content.Shared.Mech.EntitySystems; +using Content.Shared.Mech.Equipment.Components; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Ranged.Components; +using Robust.Shared.Random; + +namespace Content.Server.Mech.Equipment.EntitySystems; +public sealed class MechGunSystem : EntitySystem +{ + [Dependency] private readonly MechSystem _mech = default!; + [Dependency] private readonly BatterySystem _battery = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnHandleMechEquipmentBattery); + SubscribeLocalEvent(OnCheckBattery); + SubscribeLocalEvent(OnCheckBattery); + } + + private void OnHandleMechEquipmentBattery(EntityUid uid, MechEquipmentComponent component, HandleMechEquipmentBatteryEvent args) + { + if (!component.EquipmentOwner.HasValue) + return; + + if (!TryComp(component.EquipmentOwner.Value, out var mech)) + return; + + if (TryComp(uid, out var battery)) + { + var ev = new CheckMechWeaponBatteryEvent(battery); + RaiseLocalEvent(uid, ref ev); + + if (ev.Cancelled) + return; + + ChargeGunBattery(uid, battery); + } + } + + private void OnCheckBattery(EntityUid uid, BatteryAmmoProviderComponent component, CheckMechWeaponBatteryEvent args) + { + if (args.Battery.CurrentCharge > component.FireCost) + args.Cancelled = true; + } + + private void ChargeGunBattery(EntityUid uid, BatteryComponent component) + { + if (!TryComp(uid, out var mechEquipment) || !mechEquipment.EquipmentOwner.HasValue) + return; + + if (!TryComp(mechEquipment.EquipmentOwner.Value, out var mech)) + return; + + var maxCharge = component.MaxCharge; + var currentCharge = component.CurrentCharge; + + var chargeDelta = maxCharge - currentCharge; + + // TODO: The battery charge of the mech would be spent directly when fired. + if (chargeDelta <= 0 || mech.Energy - chargeDelta < 0) + return; + + if (!_mech.TryChangeEnergy(mechEquipment.EquipmentOwner.Value, -chargeDelta, mech)) + return; + + _battery.SetCharge(uid, component.MaxCharge, component); + } +} + +[ByRefEvent] +public record struct CheckMechWeaponBatteryEvent(BatteryComponent Battery, bool Cancelled = false); \ No newline at end of file diff --git a/Content.Server/_Goobstation/Temperature/KillOnOverheatComponent.cs b/Content.Server/_Goobstation/Temperature/KillOnOverheatComponent.cs new file mode 100644 index 0000000000..fc4e615539 --- /dev/null +++ b/Content.Server/_Goobstation/Temperature/KillOnOverheatComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Atmos; + +namespace Content.Server._Goobstation.Temperature; + +/// +/// Kills an entity when its temperature goes over a threshold. +/// +[RegisterComponent, Access(typeof(KillOnOverheatSystem))] +public sealed partial class KillOnOverheatComponent : Component +{ + [DataField] + public float OverheatThreshold = Atmospherics.T0C + 110f; + + [DataField] + public LocId OverheatPopup = "ipc-overheat-popup"; +} diff --git a/Content.Server/_Goobstation/Temperature/KillOnOverheatSystem.cs b/Content.Server/_Goobstation/Temperature/KillOnOverheatSystem.cs new file mode 100644 index 0000000000..9b32e34437 --- /dev/null +++ b/Content.Server/_Goobstation/Temperature/KillOnOverheatSystem.cs @@ -0,0 +1,33 @@ +using Content.Server.Temperature.Components; +using Content.Shared.IdentityManagement; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; +using Content.Shared.Damage.Components; + +namespace Content.Server._Goobstation.Temperature; + +public sealed class KillOnOverheatSystem : EntitySystem +{ + [Dependency] private readonly MobStateSystem _mob = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var temp, out var mob)) + { + if (mob.CurrentState == MobState.Dead + || temp.CurrentTemperature < comp.OverheatThreshold + || HasComp(uid)) + continue; + + var msg = Loc.GetString(comp.OverheatPopup, ("name", Identity.Name(uid, EntityManager))); + _popup.PopupEntity(msg, uid, PopupType.LargeCaution); + _mob.ChangeMobState(uid, MobState.Dead, mob); + } + } +} diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index 720900b784..481c4e8075 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Audio; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Utility; @@ -26,6 +26,16 @@ public abstract partial class BaseActionComponent : Component /// [DataField("iconOn")] public SpriteSpecifier? IconOn; + /// + /// For actions with a cooldown, icon to show when the action is on cooldown. + /// + [DataField] public SpriteSpecifier? IconCooldown; + + /// + /// For actions with a cooldown, icon to show when the action is disabled. + /// + [DataField] public SpriteSpecifier? IconDisabled; + /// /// For toggle actions only, background to show when toggled on. /// diff --git a/Content.Shared/Actions/ConfirmableActionComponent.cs b/Content.Shared/Actions/ConfirmableActionComponent.cs index 6c208f47c6..ca7a15eb5a 100644 --- a/Content.Shared/Actions/ConfirmableActionComponent.cs +++ b/Content.Shared/Actions/ConfirmableActionComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Popups; using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; @@ -15,8 +16,15 @@ public sealed partial class ConfirmableActionComponent : Component /// /// Warning popup shown when priming the action. /// - [DataField(required: true)] - public LocId Popup = string.Empty; + // Goobstation - Modsuits - Removed required string + [DataField] + public LocId? Popup = null; + + /// + /// Type of warning popup - Goobstaiton - Modsuits + /// + [DataField("popupType")] + public PopupType PopupFontType = PopupType.LargeCaution; /// /// If not null, this is when the action can be confirmed at. diff --git a/Content.Shared/Actions/ConfirmableActionSystem.cs b/Content.Shared/Actions/ConfirmableActionSystem.cs index 26cc7111d2..8a567fa971 100644 --- a/Content.Shared/Actions/ConfirmableActionSystem.cs +++ b/Content.Shared/Actions/ConfirmableActionSystem.cs @@ -10,6 +10,7 @@ namespace Content.Shared.Actions; public sealed class ConfirmableActionSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; // Goobstation [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() @@ -67,7 +68,12 @@ private void Prime(Entity ent, EntityUid user) comp.NextUnprime = comp.NextConfirm + comp.PrimeTime; Dirty(uid, comp); - _popup.PopupClient(Loc.GetString(comp.Popup), user, user, PopupType.LargeCaution); + // Goobstation - Confirmable action with changed icon - Start + if (!string.IsNullOrEmpty(comp.Popup)) + _popup.PopupClient(Loc.GetString(comp.Popup), user, user, comp.PopupFontType); + + _actions.SetToggled(ent, true); + // Goobstation - Confirmable action with changed icon - End } private void Unprime(Entity ent) @@ -75,6 +81,9 @@ private void Unprime(Entity ent) var (uid, comp) = ent; comp.NextConfirm = null; comp.NextUnprime = null; + + _actions.SetToggled(ent, false); // Goobstation - Confirmable action with changed icon + Dirty(uid, comp); } } diff --git a/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs b/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs index a234521ecb..f9a889e29e 100644 --- a/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs +++ b/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs @@ -76,8 +76,6 @@ public partial record struct AnomalyPowerSettings() { public string PowerName = string.Empty; - public float ManaCost; - public bool CheckInsulation; /// diff --git a/Content.Shared/Actions/Events/DarkSwapActionEvent.cs b/Content.Shared/Actions/Events/DarkSwapActionEvent.cs index ad60d0ede4..9e04feb2ce 100644 --- a/Content.Shared/Actions/Events/DarkSwapActionEvent.cs +++ b/Content.Shared/Actions/Events/DarkSwapActionEvent.cs @@ -1,9 +1,6 @@ namespace Content.Shared.Actions.Events; public sealed partial class DarkSwapActionEvent : InstantActionEvent { - [DataField] - public float ManaCost; - [DataField] public bool CheckInsulation; -} \ No newline at end of file +} diff --git a/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs b/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs index 0df9d86f51..e5b25ade8a 100644 --- a/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs +++ b/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs @@ -16,12 +16,6 @@ public sealed partial class SummonPsionicFamiliarActionEvent : InstantActionEven [DataField] public string PowerName; - /// - /// How much Mana this power should cost, if any. - /// - [DataField] - public float ManaCost; - /// /// Whether this power checks if the wearer is psionically insulated. /// diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 8cede391a8..3181635e41 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -340,6 +340,17 @@ public void ResetCharges(EntityUid? actionId) Dirty(actionId.Value, action); } + public void SetMaxCharges(EntityUid? actionId, int? maxCharges) + { + if (!TryGetActionData(actionId, out var action) || + action.MaxCharges == maxCharges) + return; + + action.MaxCharges = maxCharges; + UpdateAction(actionId, action); + Dirty(actionId.Value, action); + } + private void OnActionsGetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) { args.State = new ActionsComponentState(GetNetEntitySet(component.Actions)); diff --git a/Content.Shared/Armor/ArmorComponent.cs b/Content.Shared/Armor/ArmorComponent.cs index fd04c5d29c..06e4c48e87 100644 --- a/Content.Shared/Armor/ArmorComponent.cs +++ b/Content.Shared/Armor/ArmorComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Damage; using Robust.Shared.GameStates; +using Robust.Shared.Serialization; using Robust.Shared.Utility; namespace Content.Shared.Armor; @@ -7,20 +8,20 @@ namespace Content.Shared.Armor; /// /// Used for clothing that reduces damage when worn. /// -[RegisterComponent, NetworkedComponent, Access(typeof(SharedArmorSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] // Goobstation - remove access restrictions public sealed partial class ArmorComponent : Component { /// /// The damage reduction /// - [DataField(required: true)] + [DataField(required: true), AutoNetworkedField] public DamageModifierSet Modifiers = default!; /// /// A multiplier applied to the calculated point value /// to determine the monetary value of the armor /// - [DataField] + [DataField, AutoNetworkedField] public float PriceMultiplier = 1; } diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 78b692d52d..896da677e4 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -145,6 +145,22 @@ public static class Atmospherics /// 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 /// 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/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 733454d46b..517b5e662b 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -346,7 +346,6 @@ private void Buckle(Entity buckle, Entity strap _audio.PlayPredicted(strap.Comp.BuckleSound, strap, user); - SetBuckledTo(buckle, strap!); Appearance.SetData(strap, StrapVisuals.State, true); Appearance.SetData(buckle, BuckleVisuals.Buckled, true); _rotationVisuals.SetHorizontalAngle(buckle.Owner, strap.Comp.Rotation); @@ -367,6 +366,8 @@ private void Buckle(Entity buckle, Entity strap break; } + SetBuckledTo(buckle, strap!); // DeltaV - Allow standing system to handle Down/Stand before buckling + var ev = new StrappedEvent(strap, buckle); RaiseLocalEvent(strap, ref ev); diff --git a/Content.Shared/CCVar/CCVars.Cloning.cs b/Content.Shared/CCVar/CCVars.Cloning.cs index 72472b1f6a..29daaedc20 100644 --- a/Content.Shared/CCVar/CCVars.Cloning.cs +++ b/Content.Shared/CCVar/CCVars.Cloning.cs @@ -57,4 +57,10 @@ public sealed partial class CCVars /// public static readonly CVarDef CloningPreserveFlavorText = CVarDef.Create("cloning.preserve_flavor_text", true, CVar.SERVERONLY); + + /// + /// Controls whether or not living people can be cloned. + /// + public static readonly CVarDef CloningAllowLivingPeople = + CVarDef.Create("cloning.allow_living_people", true, CVar.SERVERONLY); } diff --git a/Content.Shared/CCVar/CCVars.Customize.cs b/Content.Shared/CCVar/CCVars.Customize.cs new file mode 100644 index 0000000000..7212389b39 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Customize.cs @@ -0,0 +1,25 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Allow players to add extra pronouns to their examine window. + /// It looks something like "She also goes by they/them pronouns." + /// + public static readonly CVarDef AllowCosmeticPronouns = + CVarDef.Create("customize.allow_cosmetic_pronouns", false, CVar.REPLICATED); + + /// + /// Allow players to set their own Station AI names. + /// + public static readonly CVarDef AllowCustomStationAiName = + CVarDef.Create("customize.allow_custom_station_ai_name", false, CVar.REPLICATED); + + /// + /// Allow players to set their own cyborg names. (borgs, mediborgs, etc) + /// + public static readonly CVarDef AllowCustomCyborgName = + CVarDef.Create("customize.allow_custom_cyborg_name", false, CVar.REPLICATED); +} diff --git a/Content.Shared/CCVar/CCVars.Game.cs b/Content.Shared/CCVar/CCVars.Game.cs index a1ee8ef8e6..fd45000bb0 100644 --- a/Content.Shared/CCVar/CCVars.Game.cs +++ b/Content.Shared/CCVar/CCVars.Game.cs @@ -45,7 +45,7 @@ public static readonly CVarDef /// The preset for the game to fall back to if the selected preset could not be used, and fallback is enabled. /// public static readonly CVarDef - GameLobbyFallbackPreset = CVarDef.Create("game.fallbackpreset", "Traitor,Extended", CVar.ARCHIVE); + GameLobbyFallbackPreset = CVarDef.Create("game.fallbackpreset", "Extended", CVar.ARCHIVE); /// /// Controls if people can win the game in Suspicion or Deathmatch. diff --git a/Content.Shared/CCVar/CCVars.Hud.cs b/Content.Shared/CCVar/CCVars.Hud.cs index f1adbb1851..cf3a8e995f 100644 --- a/Content.Shared/CCVar/CCVars.Hud.cs +++ b/Content.Shared/CCVar/CCVars.Hud.cs @@ -24,4 +24,7 @@ public sealed partial class CCVars public static readonly CVarDef HudFpsCounterVisible = CVarDef.Create("hud.fps_counter_visible", false, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ModernProgressBar = + CVarDef.Create("hud.modern_progress_bar", true, CVar.CLIENTONLY | CVar.ARCHIVE); } diff --git a/Content.Shared/CartridgeLoader/Cartridges/PsiWatchUiState.cs b/Content.Shared/CartridgeLoader/Cartridges/PsiWatchUiState.cs new file mode 100644 index 0000000000..7dae7df5a6 --- /dev/null +++ b/Content.Shared/CartridgeLoader/Cartridges/PsiWatchUiState.cs @@ -0,0 +1,24 @@ +using Content.Shared.Psionics; +using Robust.Shared.Serialization; + +namespace Content.Shared.CartridgeLoader.Cartridges; + +/// +/// Show a list of wanted and suspected people from psionics records. +/// +[Serializable, NetSerializable] +public sealed class PsiWatchUiState : BoundUserInterfaceState +{ + public readonly List Entries; + + public PsiWatchUiState(List entries) + { + Entries = entries; + } +} + +/// +/// Entry for a person who is suspected, registered, or abusing. +/// +[Serializable, NetSerializable] +public record struct PsiWatchEntry(string Name, string Job, PsionicsStatus Status, string? Reason); diff --git a/Content.Shared/Charges/Systems/SharedChargesSystem.cs b/Content.Shared/Charges/Systems/SharedChargesSystem.cs index 7f95ef184e..ce47fee4f4 100644 --- a/Content.Shared/Charges/Systems/SharedChargesSystem.cs +++ b/Content.Shared/Charges/Systems/SharedChargesSystem.cs @@ -80,6 +80,23 @@ public bool TryUseCharge(Entity ent) return true; } + /// + /// Sets the charges and max charges. + /// + public void SetCharges(Entity ent, int? charges, int? maxCharges) + { + if (!Query.Resolve(ent, ref ent.Comp, false)) + return; + + if (charges != null) + ent.Comp.Charges = charges.Value; + + if (maxCharges != null) + ent.Comp.MaxCharges = maxCharges.Value; + + Dirty(ent, ent.Comp); + } + /// /// Gets the limited charges component and returns true if the number of charges remaining is less than the specified value. /// Will return false if there is no limited charges component. diff --git a/Content.Shared/Chat/SharedSuicideSystem.cs b/Content.Shared/Chat/SharedSuicideSystem.cs index 15f75c526b..19a61c9dbc 100644 --- a/Content.Shared/Chat/SharedSuicideSystem.cs +++ b/Content.Shared/Chat/SharedSuicideSystem.cs @@ -50,7 +50,7 @@ public void ApplyLethalDamage(Entity target, ProtoId crit -> dead, // grabbing the last key will give us how much damage is needed to kill a target from zero // The exact lethal damage amount is adjusted based on their current damage taken - var lethalAmountOfDamage = mobThresholds.Thresholds.Keys.Last() - target.Comp.TotalDamage; + var lethalAmountOfDamage = mobThresholds.Thresholds.Keys.Last() - target.Comp.Damage.GetTotal(); // We don't want structural damage for the same reasons listed above if (!_prototypeManager.TryIndex(damageType, out var damagePrototype) || damagePrototype.ID == "Structural") diff --git a/Content.Shared/Chemistry/SharedChemMaster.cs b/Content.Shared/Chemistry/SharedChemMaster.cs index b98a337204..c79a362a9d 100644 --- a/Content.Shared/Chemistry/SharedChemMaster.cs +++ b/Content.Shared/Chemistry/SharedChemMaster.cs @@ -11,6 +11,7 @@ public sealed class SharedChemMaster { public const uint PillTypes = 20; public const string BufferSolutionName = "buffer"; + public const string PillBufferSolutionName = "pillBuffer"; public const string InputSlotName = "beakerSlot"; public const string OutputSlotName = "outputSlot"; public const string PillSolutionName = "food"; @@ -46,12 +47,14 @@ public sealed class ChemMasterReagentAmountButtonMessage : BoundUserInterfaceMes public readonly ReagentId ReagentId; public readonly int Amount; public readonly bool FromBuffer; + public readonly bool IsOutput; - public ChemMasterReagentAmountButtonMessage(ReagentId reagentId, int amount, bool fromBuffer) + public ChemMasterReagentAmountButtonMessage(ReagentId reagentId, int amount, bool fromBuffer, bool isOutput) { ReagentId = reagentId; Amount = amount; FromBuffer = fromBuffer; + IsOutput = isOutput; } } @@ -101,34 +104,6 @@ public enum ChemMasterMode Discard, } - public enum ChemMasterReagentAmount - { - U1 = 1, - U5 = 5, - U10 = 10, - U15 = 15, - U20 = 20, - U25 = 25, - U30 = 30, - U45 = 45, - U50 = 50, - U75 = 75, - U90 = 90, - U100 = 100, - All, - } - - public static class ChemMasterReagentAmountToFixedPoint - { - public static FixedPoint2 GetFixedPoint(this ChemMasterReagentAmount amount) - { - if (amount == ChemMasterReagentAmount.All) - return FixedPoint2.MaxValue; - else - return FixedPoint2.New((int)amount); - } - } - /// /// Information about the capacity and contents of a container for display in the UI /// @@ -166,44 +141,44 @@ public ContainerInfo(string displayName, FixedPoint2 currentVolume, FixedPoint2 } [Serializable, NetSerializable] - public sealed class ChemMasterBoundUserInterfaceState : BoundUserInterfaceState + public sealed class ChemMasterBoundUserInterfaceState( + ChemMasterMode mode, + ContainerInfo? containerInfo, + IReadOnlyList bufferReagents, + IReadOnlyList pillBufferReagents, + FixedPoint2 bufferCurrentVolume, + FixedPoint2 pillBufferCurrentVolume, + uint selectedPillType, + uint pillDosageLimit, + bool updateLabel, + int sortMethod, + int transferringAmount) + : BoundUserInterfaceState { - public readonly ContainerInfo? InputContainerInfo; - public readonly ContainerInfo? OutputContainerInfo; + public readonly ContainerInfo? ContainerInfo = containerInfo; /// /// A list of the reagents and their amounts within the buffer, if applicable. /// - public readonly IReadOnlyList BufferReagents; + public readonly IReadOnlyList BufferReagents = bufferReagents; - public readonly ChemMasterMode Mode; + /// + /// A list of the reagents and their amounts within the buffer, if applicable. + /// + public readonly IReadOnlyList PillBufferReagents = pillBufferReagents; - public readonly FixedPoint2? BufferCurrentVolume; - public readonly uint SelectedPillType; + public readonly ChemMasterMode Mode = mode; - public readonly uint PillDosageLimit; + public readonly FixedPoint2? BufferCurrentVolume = bufferCurrentVolume; + public readonly FixedPoint2? PillBufferCurrentVolume = pillBufferCurrentVolume; + public readonly uint SelectedPillType = selectedPillType; - public readonly bool UpdateLabel; + public readonly uint PillDosageLimit = pillDosageLimit; - public readonly int SortMethod; - public readonly int TransferringAmount; + public readonly bool UpdateLabel = updateLabel; - public ChemMasterBoundUserInterfaceState( - ChemMasterMode mode, ContainerInfo? inputContainerInfo, ContainerInfo? outputContainerInfo, - IReadOnlyList bufferReagents, FixedPoint2 bufferCurrentVolume, - uint selectedPillType, uint pillDosageLimit, bool updateLabel, int sortMethod, int transferringAmount) - { - InputContainerInfo = inputContainerInfo; - OutputContainerInfo = outputContainerInfo; - BufferReagents = bufferReagents; - Mode = mode; - BufferCurrentVolume = bufferCurrentVolume; - SelectedPillType = selectedPillType; - PillDosageLimit = pillDosageLimit; - UpdateLabel = updateLabel; - SortMethod = sortMethod; - TransferringAmount = transferringAmount; - } + public readonly int SortMethod = sortMethod; + public readonly int TransferringAmount = transferringAmount; } [Serializable, NetSerializable] diff --git a/Content.Shared/Clothing/Components/AttachedClothingComponent.cs b/Content.Shared/Clothing/Components/AttachedClothingComponent.cs index c52c875952..fbe462ed42 100644 --- a/Content.Shared/Clothing/Components/AttachedClothingComponent.cs +++ b/Content.Shared/Clothing/Components/AttachedClothingComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Clothing.EntitySystems; +using Robust.Shared.Containers; using Robust.Shared.GameStates; namespace Content.Shared.Clothing.Components; @@ -13,9 +14,21 @@ namespace Content.Shared.Clothing.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class AttachedClothingComponent : Component { + // Goobstation - Modsuits changes this system entirely + public const string DefaultClothingContainerId = "replaced-clothing"; + /// /// The Id of the piece of clothing that this entity belongs to. /// [DataField, AutoNetworkedField] public EntityUid AttachedUid; + + /// + /// Container ID for clothing that will be replaced with this one + /// + [DataField, AutoNetworkedField] + public string ClothingContainerId = DefaultClothingContainerId; + + [ViewVariables, NonSerialized] + public ContainerSlot? ClothingContainer; } diff --git a/Content.Shared/Clothing/Components/EmitsSoundOnMoveComponent.cs b/Content.Shared/Clothing/Components/EmitsSoundOnMoveComponent.cs index 095b0daf38..8adb47ebb0 100644 --- a/Content.Shared/Clothing/Components/EmitsSoundOnMoveComponent.cs +++ b/Content.Shared/Clothing/Components/EmitsSoundOnMoveComponent.cs @@ -32,4 +32,22 @@ public sealed partial class EmitsSoundOnMoveComponent : Component /// [ViewVariables(VVAccess.ReadOnly)] public bool IsSlotValid = true; + + /// + /// If worn, how far the wearer has to walk in order to make a sound. + /// + [DataField] + public float DistanceWalking = 1.5f; + + /// + /// If worn, how far the wearer has to sprint in order to make a sound. + /// + [DataField] + public float DistanceSprinting = 2f; + + /// + /// Whether or not this item must be worn in order to make sounds. + /// + [DataField] + public bool RequiresWorn; } diff --git a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs index c76214f131..304dd2a3e8 100644 --- a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs +++ b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs @@ -16,6 +16,12 @@ public sealed partial class HideLayerClothingComponent : Component [DataField] public HashSet Slots = new(); + /// + /// The clothing layers to hide. + /// + [DataField] + public HashSet? ClothingSlots = new(); + /// /// If true, the layer will only hide when the item is in a toggled state (e.g. masks) /// diff --git a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs index 3053efe89a..4e9dd91e38 100644 --- a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization; namespace Content.Shared.Clothing.Components; @@ -25,18 +25,31 @@ public sealed partial class ToggleableClothingComponent : Component [DataField, AutoNetworkedField] public EntityUid? ActionEntity; + // Goobstation - ClothingPrototype and Slot Fields saved for compatibility with old prototype /// /// Default clothing entity prototype to spawn into the clothing container. /// - [DataField(required: true), AutoNetworkedField] - public EntProtoId ClothingPrototype = default!; + [DataField, AutoNetworkedField] + public EntProtoId? ClothingPrototype; /// /// The inventory slot that the clothing is equipped to. /// [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] - public string Slot = "head"; + public string Slot = string.Empty; + + /// + /// Dictionary of inventory slots and entity prototypes to spawn into the clothing container. + /// + [DataField, AutoNetworkedField] + public Dictionary ClothingPrototypes = new(); + + /// + /// Dictionary of clothing uids and slots + /// + [DataField, AutoNetworkedField] + public Dictionary ClothingUids = new(); /// /// The inventory slot flags required for this component to function. @@ -51,14 +64,7 @@ public sealed partial class ToggleableClothingComponent : Component public string ContainerId = DefaultClothingContainerId; [ViewVariables] - public ContainerSlot? Container; - - /// - /// The Id of the piece of clothing that belongs to this component. Required for map-saving if the clothing is - /// currently not inside of the container. - /// - [DataField, AutoNetworkedField] - public EntityUid? ClothingUid; + public Container? Container; /// /// Time it takes for this clothing to be toggled via the stripping menu verbs. Null prevents the verb from even showing up. @@ -71,4 +77,39 @@ public sealed partial class ToggleableClothingComponent : Component /// [DataField, AutoNetworkedField] public string? VerbText; + + /// + /// If true it will block unequip of this entity until all attached clothing are removed + /// + [DataField, AutoNetworkedField] + public bool BlockUnequipWhenAttached = false; + + /// + /// If true all attached will replace already equipped clothing on equip attempt + /// + [DataField, AutoNetworkedField] + public bool ReplaceCurrentClothing = false; + + [DataField, AutoNetworkedField] + public string AttachTooltip = "toggleable-clothing-attach-tooltip"; + + [DataField, AutoNetworkedField] + public string UnattachTooltip = "toggleable-clothing-unattach-tooltip"; +} + +[Serializable, NetSerializable] +public enum ToggleClothingUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class ToggleableClothingUiMessage : BoundUserInterfaceMessage +{ + public NetEntity AttachedClothingUid; + + public ToggleableClothingUiMessage(NetEntity attachedClothingUid) + { + AttachedClothingUid = attachedClothingUid; + } } diff --git a/Content.Shared/Clothing/EntitySystems/EmitsSoundOnMoveSystem.cs b/Content.Shared/Clothing/EntitySystems/EmitsSoundOnMoveSystem.cs index 3224b5bca3..452a3c3705 100644 --- a/Content.Shared/Clothing/EntitySystems/EmitsSoundOnMoveSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/EmitsSoundOnMoveSystem.cs @@ -54,7 +54,8 @@ public override void Update(float frameTime) private void UpdateSound(EntityUid uid, EmitsSoundOnMoveComponent component) { - if (!_physicsQuery.TryGetComponent(uid, out var physics)) + if (!_physicsQuery.TryGetComponent(uid, out var physics) + || !_timing.IsFirstTimePredicted) return; // Space does not transmit sound @@ -70,11 +71,15 @@ private void UpdateSound(EntityUid uid, EmitsSoundOnMoveComponent component) _clothingQuery.TryGetComponent(uid, out var clothing) && clothing.InSlot != null && component.IsSlotValid; + + if (component.RequiresWorn && !isWorn) + return; + // If this entity is worn by another entity, use that entity's coordinates var coordinates = isWorn ? Transform(parent).Coordinates : Transform(uid).Coordinates; var distanceNeeded = (isWorn && _moverQuery.TryGetComponent(parent, out var mover) && mover.Sprinting) - ? 1.5f // The parent is a mob that is currently sprinting - : 2f; // The parent is not a mob or is not sprinting + ? component.DistanceWalking // The parent is a mob that is currently sprinting + : component.DistanceSprinting; // The parent is not a mob or is not sprinting if (!coordinates.TryDistance(EntityManager, component.LastPosition, out var distance) || distance > distanceNeeded) component.SoundDistance = distanceNeeded; diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index 4cb127bb10..63f817f9bb 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -13,9 +13,11 @@ using Robust.Shared.Serialization; using Robust.Shared.Timing; using Robust.Shared.Utility; +using System.Linq; namespace Content.Shared.Clothing.EntitySystems; +// GOOBSTATION - MODSUITS - THIS SYSTEM FULLY CHANGED public sealed class ToggleableClothingSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; @@ -27,19 +29,22 @@ public sealed class ToggleableClothingSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedStrippableSystem _strippable = default!; - [Dependency] private readonly ThievingSystem _thieving = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnToggleableInit); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnToggleClothing); + SubscribeLocalEvent(OnToggleClothingAction); SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnRemoveToggleable); SubscribeLocalEvent(OnToggleableUnequip); + SubscribeLocalEvent(OnToggleClothingMessage); + SubscribeLocalEvent(OnToggleableUnequipAttempt); + SubscribeLocalEvent(OnAttachedInit); SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent(OnAttachedUnequip); SubscribeLocalEvent(OnRemoveAttached); @@ -51,62 +56,64 @@ public override void Initialize() SubscribeLocalEvent(OnDoAfterComplete); } - private void GetRelayedVerbs(EntityUid uid, ToggleableClothingComponent component, InventoryRelayedEvent> args) + private void GetRelayedVerbs(Entity toggleable, ref InventoryRelayedEvent> args) { - OnGetVerbs(uid, component, args.Args); + OnGetVerbs(toggleable, ref args.Args); } - private void OnGetVerbs(EntityUid uid, ToggleableClothingComponent component, GetVerbsEvent args) + private void OnGetVerbs(Entity toggleable, ref GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || component.ClothingUid == null || component.Container == null) + var comp = toggleable.Comp; + + if (!args.CanAccess || !args.CanInteract || args.Hands == null || comp.ClothingUids.Count == 0 || comp.Container == null) return; - var text = component.VerbText ?? (component.ActionEntity == null ? null : Name(component.ActionEntity.Value)); + var text = comp.VerbText ?? (comp.ActionEntity == null ? null : Name(comp.ActionEntity.Value)); if (text == null) return; - if (!_inventorySystem.InSlotWithFlags(uid, component.RequiredFlags)) + if (!_inventorySystem.InSlotWithFlags(toggleable.Owner, comp.RequiredFlags)) return; - var wearer = Transform(uid).ParentUid; - if (args.User != wearer && component.StripDelay == null) + var wearer = Transform(toggleable).ParentUid; + if (args.User != wearer && comp.StripDelay == null) return; + var user = args.User; + var verb = new EquipmentVerb() { Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/outfit.svg.192dpi.png")), Text = Loc.GetString(text), }; - if (args.User == wearer) + if (user == wearer) { - verb.EventTarget = uid; - verb.ExecutionEventArgs = new ToggleClothingEvent() { Performer = args.User }; + verb.Act = () => ToggleClothing(user, toggleable); } else { - verb.Act = () => StartDoAfter(args.User, uid, Transform(uid).ParentUid, component); + verb.Act = () => StartDoAfter(user, toggleable, wearer); } args.Verbs.Add(verb); } - private void StartDoAfter(EntityUid user, EntityUid item, EntityUid wearer, ToggleableClothingComponent component) + private void StartDoAfter(EntityUid user, Entity toggleable, EntityUid wearer) { - if (component.StripDelay == null) + var comp = toggleable.Comp; + + if (comp.StripDelay == null) return; - var (time, stealth) = _strippable.GetStripTimeModifiers(user, wearer, component.StripDelay.Value); + var (time, stealth) = _strippable.GetStripTimeModifiers(user, wearer, comp.StripDelay.Value); - bool hidden = (stealth == ThievingStealth.Hidden); + bool hidden = stealth == ThievingStealth.Hidden; - var args = new DoAfterArgs(EntityManager, user, time, new ToggleClothingDoAfterEvent(), item, wearer, item) + var args = new DoAfterArgs(EntityManager, user, time, new ToggleClothingDoAfterEvent(), toggleable, wearer, toggleable) { BreakOnDamage = true, BreakOnMove = true, - // This should just re-use the BUI range checks & cancel the do after if the BUI closes. But that is all - // server-side at the moment. - // TODO BUI REFACTOR. DistanceThreshold = 2, }; @@ -114,189 +121,404 @@ private void StartDoAfter(EntityUid user, EntityUid item, EntityUid wearer, Togg return; if (!hidden) - _strippable.StripPopup("strippable-component-alert-owner-interact", stealth, wearer, user: Identity.Entity(user, EntityManager), item: item); + { + var popup = Loc.GetString("strippable-component-alert-owner-interact", ("user", Identity.Entity(user, EntityManager)), ("item", toggleable)); + _popupSystem.PopupEntity(popup, wearer, wearer, PopupType.Large); + } } - private void OnGetAttachedStripVerbsEvent(EntityUid uid, AttachedClothingComponent component, GetVerbsEvent args) + private void OnGetAttachedStripVerbsEvent(Entity attached, ref GetVerbsEvent args) { + var comp = attached.Comp; + + if (!TryComp(comp.AttachedUid, out var toggleableComp)) + return; + // redirect to the attached entity. - OnGetVerbs(component.AttachedUid, Comp(component.AttachedUid), args); + OnGetVerbs((comp.AttachedUid, toggleableComp), ref args); } - private void OnDoAfterComplete(EntityUid uid, ToggleableClothingComponent component, ToggleClothingDoAfterEvent args) + private void OnDoAfterComplete(Entity toggleable, ref ToggleClothingDoAfterEvent args) { if (args.Cancelled) return; - ToggleClothing(args.User, uid, component); + ToggleClothing(args.User, toggleable); } - private void OnInteractHand(EntityUid uid, AttachedClothingComponent component, InteractHandEvent args) + private void OnInteractHand(Entity attached, ref InteractHandEvent args) { + var comp = attached.Comp; + if (args.Handled) return; - if (!TryComp(component.AttachedUid, out ToggleableClothingComponent? toggleCom) - || toggleCom.Container == null) + if (!TryComp(comp.AttachedUid, out ToggleableClothingComponent? toggleableComp) + || toggleableComp.Container == null) return; - if (!_inventorySystem.TryUnequip(Transform(uid).ParentUid, toggleCom.Slot, force: true)) + // Get slot from dictionary of uid-slot + if (!toggleableComp.ClothingUids.TryGetValue(attached.Owner, out var attachedSlot)) return; - _containerSystem.Insert(uid, toggleCom.Container); + if (!_inventorySystem.TryUnequip(Transform(attached.Owner).ParentUid, attachedSlot, force: true)) + return; + + _containerSystem.Insert(attached.Owner, toggleableComp.Container); args.Handled = true; } + /// + /// Prevents from unequipping entity if all attached not unequipped + /// + private void OnToggleableUnequipAttempt(Entity toggleable, ref BeingUnequippedAttemptEvent args) + { + var comp = toggleable.Comp; + + if (!comp.BlockUnequipWhenAttached) + return; + + if (GetAttachedToggleStatus(toggleable) == ToggleableClothingAttachedStatus.NoneToggled) + return; + + _popupSystem.PopupClient(Loc.GetString("toggleable-clothing-remove-all-attached-first"), args.Unequipee, args.Unequipee); + + args.Cancel(); + } + /// /// Called when the suit is unequipped, to ensure that the helmet also gets unequipped. /// - private void OnToggleableUnequip(EntityUid uid, ToggleableClothingComponent component, GotUnequippedEvent args) + private void OnToggleableUnequip(Entity toggleable, ref GotUnequippedEvent args) { + var comp = toggleable.Comp; + // If it's a part of PVS departure then don't handle it. if (_timing.ApplyingState) return; - // If the attached clothing is not currently in the container, this just assumes that it is currently equipped. - // This should maybe double check that the entity currently in the slot is actually the attached clothing, but - // if its not, then something else has gone wrong already... - if (component.Container != null && component.Container.ContainedEntity == null && component.ClothingUid != null) - _inventorySystem.TryUnequip(args.Equipee, component.Slot, force: true); + // Check if container exists and we have linked clothings + if (comp.Container == null || comp.ClothingUids.Count == 0) + return; + + var parts = comp.ClothingUids; + + foreach (var part in parts) + { + // Check if entity in container what means it already unequipped + if (comp.Container.Contains(part.Key) || part.Value == null) + continue; + + _inventorySystem.TryUnequip(args.Equipee, part.Value, force: true); + } } - private void OnRemoveToggleable(EntityUid uid, ToggleableClothingComponent component, ComponentRemove args) + private void OnRemoveToggleable(Entity toggleable, ref ComponentRemove args) { // If the parent/owner component of the attached clothing is being removed (entity getting deleted?) we will // delete the attached entity. We do this regardless of whether or not the attached entity is currently // "outside" of the container or not. This means that if a hardsuit takes too much damage, the helmet will also // automatically be deleted. - _actionsSystem.RemoveAction(component.ActionEntity); + var comp = toggleable.Comp; + + _actionsSystem.RemoveAction(comp.ActionEntity); + + if (comp.ClothingUids == null || _netMan.IsClient) + return; - if (component.ClothingUid != null && !_netMan.IsClient) - QueueDel(component.ClothingUid.Value); + foreach (var clothing in comp.ClothingUids.Keys) + QueueDel(clothing); } - private void OnAttachedUnequipAttempt(EntityUid uid, AttachedClothingComponent component, BeingUnequippedAttemptEvent args) + private void OnAttachedUnequipAttempt(Entity attached, ref BeingUnequippedAttemptEvent args) { args.Cancel(); } - private void OnRemoveAttached(EntityUid uid, AttachedClothingComponent component, ComponentRemove args) + private void OnRemoveAttached(Entity attached, ref ComponentRemove args) { // if the attached component is being removed (maybe entity is being deleted?) we will just remove the // toggleable clothing component. This means if you had a hard-suit helmet that took too much damage, you would // still be left with a suit that was simply missing a helmet. There is currently no way to fix a partially // broken suit like this. - if (!TryComp(component.AttachedUid, out ToggleableClothingComponent? toggleComp)) + var comp = attached.Comp; + + if (!TryComp(comp.AttachedUid, out ToggleableClothingComponent? toggleableComp) + || toggleableComp.LifeStage > ComponentLifeStage.Running) + return; + + var clothingUids = toggleableComp.ClothingUids; + + if (!clothingUids.Remove(attached.Owner) || clothingUids.Count > 0) return; - if (toggleComp.LifeStage > ComponentLifeStage.Running) + // If no attached clothing left - remove component and action + if (clothingUids.Count > 0) return; - _actionsSystem.RemoveAction(toggleComp.ActionEntity); - RemComp(component.AttachedUid, toggleComp); + _actionsSystem.RemoveAction(toggleableComp.ActionEntity); + RemComp(comp.AttachedUid, toggleableComp); } /// - /// Called if the helmet was unequipped, to ensure that it gets moved into the suit's container. + /// Called if the clothing was unequipped, to ensure that it gets moved into the suit's container. /// - private void OnAttachedUnequip(EntityUid uid, AttachedClothingComponent component, GotUnequippedEvent args) + private void OnAttachedUnequip(Entity attached, ref GotUnequippedEvent args) { - // Let containers worry about it. - if (_timing.ApplyingState) - return; - - if (component.LifeStage > ComponentLifeStage.Running) + var comp = attached.Comp; + + // Death told me to do this- if you need to figure out why each of these are here, idk, figure it out. + if (_timing.ApplyingState + || comp.LifeStage > ComponentLifeStage.Running + || !TryComp(comp.AttachedUid, out ToggleableClothingComponent? toggleableComp) + || toggleableComp.LifeStage > ComponentLifeStage.Running + || !toggleableComp.ClothingUids.ContainsKey(attached.Owner)) return; - if (!TryComp(component.AttachedUid, out ToggleableClothingComponent? toggleComp)) - return; + if (toggleableComp.Container != null) + _containerSystem.Insert(attached.Owner, toggleableComp.Container); + } - if (toggleComp.LifeStage > ComponentLifeStage.Running) - return; + /// + /// Equip or unequip toggle clothing with ui message + /// + private void OnToggleClothingMessage(Entity toggleable, ref ToggleableClothingUiMessage args) + { + var attachedUid = GetEntity(args.AttachedClothingUid); - // As unequipped gets called in the middle of container removal, we cannot call a container-insert without causing issues. - // So we delay it and process it during a system update: - if (toggleComp.ClothingUid != null && toggleComp.Container != null) - _containerSystem.Insert(toggleComp.ClothingUid.Value, toggleComp.Container); + ToggleClothing(args.Actor, toggleable, attachedUid); } /// /// Equip or unequip the toggleable clothing. /// - private void OnToggleClothing(EntityUid uid, ToggleableClothingComponent component, ToggleClothingEvent args) + private void OnToggleClothingAction(Entity toggleable, ref ToggleClothingEvent args) { + var comp = toggleable.Comp; + if (args.Handled) return; + if (comp.Container == null || comp.ClothingUids.Count == 0) + return; + args.Handled = true; - ToggleClothing(args.Performer, uid, component); + + // If clothing have only one attached clothing (like helmets) action will just toggle it + // If it have more attached clothings, it'll open radial menu + if (comp.ClothingUids.Count == 1) + ToggleClothing(args.Performer, toggleable, comp.ClothingUids.First().Key); + else + _uiSystem.OpenUi(toggleable.Owner, ToggleClothingUiKey.Key, args.Performer); } - private void ToggleClothing(EntityUid user, EntityUid target, ToggleableClothingComponent component) + /// + /// Toggle function for single clothing + /// + private void ToggleClothing(EntityUid user, Entity toggleable, EntityUid attachedUid) { - if (component.Container == null || component.ClothingUid == null) + var comp = toggleable.Comp; + var attachedClothings = comp.ClothingUids; + var container = comp.Container; + + if (!CanToggleClothing(user, toggleable)) return; - var parent = Transform(target).ParentUid; - if (component.Container.ContainedEntity == null) - _inventorySystem.TryUnequip(user, parent, component.Slot, force: true); - else if (_inventorySystem.TryGetSlotEntity(parent, component.Slot, out var existing)) - { - _popupSystem.PopupClient(Loc.GetString("toggleable-clothing-remove-first", ("entity", existing)), - user, user); - } + if (!attachedClothings.TryGetValue(attachedUid, out var slot) || string.IsNullOrEmpty(slot)) + return; + + if (!container!.Contains(attachedUid)) + UnequipClothing(user, toggleable, attachedUid, slot!); + else + EquipClothing(user, toggleable, attachedUid, slot!); + } + + /// + /// Toggle function for toggling multiple clothings at once + /// + private void ToggleClothing(EntityUid user, Entity toggleable) + { + var comp = toggleable.Comp; + var attachedClothings = comp.ClothingUids; + var container = comp.Container; + + if (!CanToggleClothing(user, toggleable)) + return; + + if (GetAttachedToggleStatus(toggleable, comp) == ToggleableClothingAttachedStatus.NoneToggled) + foreach (var clothing in attachedClothings) + EquipClothing(user, toggleable, clothing.Key, clothing.Value); else - _inventorySystem.TryEquip(user, parent, component.ClothingUid.Value, component.Slot); + foreach (var clothing in attachedClothings) + if (!container!.Contains(clothing.Key)) + UnequipClothing(user, toggleable, clothing.Key, clothing.Value); } - private void OnGetActions(EntityUid uid, ToggleableClothingComponent component, GetItemActionsEvent args) + private bool CanToggleClothing(EntityUid user, Entity toggleable) { - if (component.ClothingUid != null - && component.ActionEntity != null - && (args.SlotFlags & component.RequiredFlags) == component.RequiredFlags) + var comp = toggleable.Comp; + var attachedClothings = comp.ClothingUids; + var container = comp.Container; + + if (container == null || attachedClothings.Count == 0) + return false; + + var ev = new ToggleClothingAttemptEvent(user, toggleable); + RaiseLocalEvent(toggleable, ev); + + return !ev.Cancelled; + } + + private void UnequipClothing(EntityUid user, Entity toggleable, EntityUid clothing, string slot) + { + var parent = Transform(toggleable.Owner).ParentUid; + + _inventorySystem.TryUnequip(user, parent, slot, force: true); + + // If attached have clothing in container - equip it + if (!TryComp(clothing, out var attachedComp) || attachedComp.ClothingContainer == null) + return; + + var storedClothing = attachedComp.ClothingContainer.ContainedEntity; + + if (storedClothing != null) + _inventorySystem.TryEquip(parent, storedClothing.Value, slot, force: true); + } + private void EquipClothing(EntityUid user, Entity toggleable, EntityUid clothing, string slot) + { + var parent = Transform(toggleable.Owner).ParentUid; + var comp = toggleable.Comp; + + if (_inventorySystem.TryGetSlotEntity(parent, slot, out var currentClothing)) { - args.AddAction(component.ActionEntity.Value); + // Check if we need to replace current clothing + if (!TryComp(clothing, out var attachedComp) || !comp.ReplaceCurrentClothing) + { + _popupSystem.PopupClient(Loc.GetString("toggleable-clothing-remove-first", ("entity", currentClothing)), user, user); + return; + } + + // Check if attached clothing have container or this container not empty + if (attachedComp.ClothingContainer == null || attachedComp.ClothingContainer.ContainedEntity != null) + return; + + if (_inventorySystem.TryUnequip(user, parent, slot)) + _containerSystem.Insert(currentClothing.Value, attachedComp.ClothingContainer); } + + _inventorySystem.TryEquip(user, parent, clothing, slot); } - private void OnInit(EntityUid uid, ToggleableClothingComponent component, ComponentInit args) + private void OnGetActions(Entity toggleable, ref GetItemActionsEvent args) { - component.Container = _containerSystem.EnsureContainer(uid, component.ContainerId); + var comp = toggleable.Comp; + + if (comp.ClothingUids.Count == 0 || comp.ActionEntity == null || args.SlotFlags != comp.RequiredFlags) + return; + + args.AddAction(comp.ActionEntity.Value); + } + + private void OnToggleableInit(Entity toggleable, ref ComponentInit args) + { + var comp = toggleable.Comp; + + comp.Container = _containerSystem.EnsureContainer(toggleable, comp.ContainerId); + } + + private void OnAttachedInit(Entity attached, ref ComponentInit args) + { + var comp = attached.Comp; + + comp.ClothingContainer = _containerSystem.EnsureContainer(attached, comp.ClothingContainerId); } /// /// On map init, either spawn the appropriate entity into the suit slot, or if it already exists, perform some /// sanity checks. Also updates the action icon to show the toggled-entity. /// - private void OnMapInit(EntityUid uid, ToggleableClothingComponent component, MapInitEvent args) + private void OnMapInit(Entity toggleable, ref MapInitEvent args) { - if (component.Container!.ContainedEntity is {} ent) + var comp = toggleable.Comp; + + if (comp.Container!.Count != 0) { - DebugTools.Assert(component.ClothingUid == ent, "Unexpected entity present inside of a toggleable clothing container."); + DebugTools.Assert(comp.ClothingUids.Count != 0, "Unexpected entity present inside of a toggleable clothing container."); return; } - if (component.ClothingUid != null && component.ActionEntity != null) + if (comp.ClothingUids.Count != 0 && comp.ActionEntity != null) + return; + + // Add prototype from ClothingPrototype and Slot field to ClothingPrototypes dictionary + if (comp.ClothingPrototype != null && !string.IsNullOrEmpty(comp.Slot) && !comp.ClothingPrototypes.ContainsKey(comp.Slot)) { - DebugTools.Assert(Exists(component.ClothingUid), "Toggleable clothing is missing expected entity."); - DebugTools.Assert(TryComp(component.ClothingUid, out AttachedClothingComponent? comp), "Toggleable clothing is missing an attached component"); - DebugTools.Assert(comp?.AttachedUid == uid, "Toggleable clothing uid mismatch"); + comp.ClothingPrototypes.Add(comp.Slot, comp.ClothingPrototype.Value); } - else + + var xform = Transform(toggleable.Owner); + + if (comp.ClothingPrototypes == null) + return; + + var prototypes = comp.ClothingPrototypes; + + foreach (var prototype in prototypes) { - var xform = Transform(uid); - component.ClothingUid = Spawn(component.ClothingPrototype, xform.Coordinates); - var attachedClothing = EnsureComp(component.ClothingUid.Value); - attachedClothing.AttachedUid = uid; - Dirty(component.ClothingUid.Value, attachedClothing); - _containerSystem.Insert(component.ClothingUid.Value, component.Container, containerXform: xform); - Dirty(uid, component); + var spawned = Spawn(prototype.Value, xform.Coordinates); + var attachedClothing = EnsureComp(spawned); + attachedClothing.AttachedUid = toggleable; + EnsureComp(spawned); + + comp.ClothingUids.Add(spawned, prototype.Key); + _containerSystem.Insert(spawned, comp.Container, containerXform: xform); + + Dirty(spawned, attachedClothing); } - if (_actionContainer.EnsureAction(uid, ref component.ActionEntity, out var action, component.Action)) - _actionsSystem.SetEntityIcon(component.ActionEntity.Value, component.ClothingUid, action); + Dirty(toggleable, comp); + + if (_actionContainer.EnsureAction(toggleable, ref comp.ActionEntity, out var action, comp.Action)) + _actionsSystem.SetEntityIcon(comp.ActionEntity.Value, toggleable, action); + } + + // Checks status of all attached clothings toggle status + public ToggleableClothingAttachedStatus GetAttachedToggleStatus(EntityUid toggleable, ToggleableClothingComponent? component = null) + { + if (!Resolve(toggleable, ref component)) + return ToggleableClothingAttachedStatus.NoneToggled; + + var container = component.Container; + var attachedClothings = component.ClothingUids; + + // If entity don't have any attached clothings it means none toggled + if (container == null || attachedClothings.Count == 0) + return ToggleableClothingAttachedStatus.NoneToggled; + + var toggledCount = attachedClothings.Count(c => !container.Contains(c.Key)); + + if (toggledCount == 0) + return ToggleableClothingAttachedStatus.NoneToggled; + + if (toggledCount < attachedClothings.Count) + return ToggleableClothingAttachedStatus.PartlyToggled; + + return ToggleableClothingAttachedStatus.AllToggled; + } + + public List? GetAttachedClothingsList(EntityUid toggleable, ToggleableClothingComponent? component = null) + { + if (!Resolve(toggleable, ref component) || component.ClothingUids.Count == 0) + return null; + + var newList = new List(); + + foreach (var attachee in component.ClothingUids) + newList.Add(attachee.Key); + + return newList; } } @@ -308,3 +530,29 @@ public sealed partial class ToggleClothingEvent : InstantActionEvent public sealed partial class ToggleClothingDoAfterEvent : SimpleDoAfterEvent { } + +/// +/// Event raises on toggleable clothing when someone trying to toggle it +/// +public sealed class ToggleClothingAttemptEvent : CancellableEntityEventArgs +{ + public EntityUid User { get; } + public EntityUid Target { get; } + + public ToggleClothingAttemptEvent(EntityUid user, EntityUid target) + { + User = user; + Target = target; + } +} + +/// +/// Status of toggleable clothing attachee +/// +[Serializable, NetSerializable] +public enum ToggleableClothingAttachedStatus : byte +{ + NoneToggled, + PartlyToggled, + AllToggled +} diff --git a/Content.Shared/Clothing/Loadouts/Systems/SharedLoadoutSystem.cs b/Content.Shared/Clothing/Loadouts/Systems/SharedLoadoutSystem.cs index 865908c706..12466dcf89 100644 --- a/Content.Shared/Clothing/Loadouts/Systems/SharedLoadoutSystem.cs +++ b/Content.Shared/Clothing/Loadouts/Systems/SharedLoadoutSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Shared.Body.Systems; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.Loadouts.Prototypes; using Content.Shared.Customization.Systems; @@ -24,12 +25,18 @@ public sealed class SharedLoadoutSystem : EntitySystem [Dependency] private readonly CharacterRequirementsSystem _characterRequirements = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedTransformSystem _sharedTransformSystem = default!; + [Dependency] private readonly ILogManager _log = default!; + + private ISawmill _sawmill = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnMapInit); + // Wait until the character has all their organs before we give them their loadout to activate internals + SubscribeLocalEvent(OnMapInit, after: [typeof(SharedBodySystem)]); + + _sawmill = _log.GetSawmill("loadouts"); } private void OnMapInit(EntityUid uid, LoadoutComponent component, MapInitEvent args) @@ -100,8 +107,14 @@ private void OnMapInit(EntityUid uid, LoadoutComponent component, MapInitEvent a var i = 0; // If someone wants to add multi-item support to the editor foreach (var item in spawned) { + if (item == EntityUid.Invalid || !Exists(item)) + { + _sawmill.Warning($"Item {ToPrettyString(item)} failed to spawn or did not exist."); + continue; + } + allLoadouts.Add((item, loadout, i)); - if (loadout.CustomHeirloom == true) + if (i == 0 && loadout.CustomHeirloom == true) // Only the first item can be an heirloom heirlooms.Add((item, loadout)); // Equip it diff --git a/Content.Shared/Construction/Components/ComputerBoardComponent.cs b/Content.Shared/Construction/Components/ComputerBoardComponent.cs index 539e09245d..6e9bc3fd2b 100644 --- a/Content.Shared/Construction/Components/ComputerBoardComponent.cs +++ b/Content.Shared/Construction/Components/ComputerBoardComponent.cs @@ -11,5 +11,9 @@ public sealed partial class ComputerBoardComponent : Component { [DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? Prototype { get; private set; } + + [DataField] + + public EntProtoId? ModularComputerProgramPrototype; } } diff --git a/Content.Shared/Content.Shared.csproj b/Content.Shared/Content.Shared.csproj index 4cca399b28..c7f779f1c2 100644 --- a/Content.Shared/Content.Shared.csproj +++ b/Content.Shared/Content.Shared.csproj @@ -10,6 +10,7 @@ + diff --git a/Content.Shared/Customization/Systems/CharacterRequirementsSystem.cs b/Content.Shared/Customization/Systems/CharacterRequirementsSystem.cs index 586fc139a0..533975f740 100644 --- a/Content.Shared/Customization/Systems/CharacterRequirementsSystem.cs +++ b/Content.Shared/Customization/Systems/CharacterRequirementsSystem.cs @@ -92,6 +92,6 @@ public bool CanEntityWearItem(EntityUid dummy, EntityUid clothing, bool bypassAc { return _inventory.TryGetSlots(dummy, out var slots) && slots.Where(slot => !slot.SlotFlags.HasFlag(SlotFlags.POCKET)) - .Any(slot => _inventory.CanEquip(dummy, clothing, slot.Name, out _, bypassAccessCheck: bypassAccessCheck)); + .Any(slot => _inventory.CanEquip(dummy, clothing, slot.Name, out _, onSpawn: true, bypassAccessCheck: bypassAccessCheck)); } } diff --git a/Content.Shared/Decals/SharedDecalSystem.cs b/Content.Shared/Decals/SharedDecalSystem.cs index 0a2349ea29..35294aa828 100644 --- a/Content.Shared/Decals/SharedDecalSystem.cs +++ b/Content.Shared/Decals/SharedDecalSystem.cs @@ -6,6 +6,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using static Content.Shared.Decals.DecalGridComponent; +using ChunkIndicesEnumerator = Robust.Shared.Map.Enumerators.ChunkIndicesEnumerator; namespace Content.Shared.Decals { @@ -104,6 +105,33 @@ protected bool RemoveDecalInternal(EntityUid gridId, uint decalId, [NotNullWhen( return true; } + public HashSet<(uint Index, Decal Decal)> GetDecalsIntersecting(EntityUid gridUid, Box2 bounds, DecalGridComponent? component = null) + { + var decalIds = new HashSet<(uint, Decal)>(); + var chunkCollection = ChunkCollection(gridUid, component); + + if (chunkCollection == null) + return decalIds; + + var chunks = new ChunkIndicesEnumerator(bounds, ChunkSize); + + while (chunks.MoveNext(out var chunkOrigin)) + { + if (!chunkCollection.TryGetValue(chunkOrigin.Value, out var chunk)) + continue; + + foreach (var (id, decal) in chunk.Decals) + { + if (!bounds.Contains(decal.Coordinates)) + continue; + + decalIds.Add((id, decal)); + } + } + + return decalIds; + } + protected virtual void OnDecalRemoved(EntityUid gridId, uint decalId, DecalGridComponent component, Vector2i indices, DecalChunk chunk) { // used by client-side overlay code diff --git a/Content.Shared/DoAfter/DoAfterArgs.cs b/Content.Shared/DoAfter/DoAfterArgs.cs index d88f72c965..97d9e42d74 100644 --- a/Content.Shared/DoAfter/DoAfterArgs.cs +++ b/Content.Shared/DoAfter/DoAfterArgs.cs @@ -19,14 +19,14 @@ public sealed partial class DoAfterArgs /// /// How long does the do_after require to complete /// - [DataField("delay", required: true)] + [DataField(required: true)] public TimeSpan Delay; /// /// Applicable target (if relevant) /// [NonSerialized] - [DataField("target")] + [DataField] public EntityUid? Target; public NetEntity? NetTarget; @@ -40,17 +40,28 @@ public sealed partial class DoAfterArgs public NetEntity? NetUsed; + // Goobstation - Show doAfter progress bar to another entity + [NonSerialized] + [DataField] + public EntityUid? ShowTo; + + public NetEntity? NetShowTo; + /// /// Whether the progress bar for this DoAfter should be hidden from other players. /// [DataField] public bool Hidden; + /// Whether the delay multiplier event should be raised + [DataField] + public bool MultiplyDelay = true; + #region Event options /// /// The event that will get raised when the DoAfter has finished. If null, this will simply raise a /// - [DataField("event", required: true)] + [DataField(required: true)] public DoAfterEvent Event = default!; /// @@ -64,7 +75,7 @@ public sealed partial class DoAfterArgs /// Entity which will receive the directed event. If null, no directed event will be raised. /// [NonSerialized] - [DataField("eventTarget")] + [DataField] public EntityUid? EventTarget; public NetEntity? NetEventTarget; @@ -72,7 +83,7 @@ public sealed partial class DoAfterArgs /// /// Should the DoAfter event broadcast? If this is false, then should be a valid entity. /// - [DataField("broadcast")] + [DataField] public bool Broadcast; #endregion @@ -81,16 +92,24 @@ public sealed partial class DoAfterArgs /// /// Whether or not this do after requires the user to have hands. /// - [DataField("needHand")] + [DataField] public bool NeedHand; /// /// Whether we need to keep our active hand as is (i.e. can't change hand or change item). This also covers /// requiring the hand to be free (if applicable). This does nothing if is false. /// - [DataField("breakOnHandChange")] + [DataField] public bool BreakOnHandChange = true; + /// + /// Whether the do-after should get interrupted if we drop the + /// active item we started the do-after with + /// This does nothing if is false. + /// + [DataField] + public bool BreakOnDropItem = true; + /// /// If do_after stops when the user or target moves /// @@ -107,31 +126,31 @@ public sealed partial class DoAfterArgs /// /// Threshold for user and target movement /// - [DataField("movementThreshold")] + [DataField] public float MovementThreshold = 0.3f; /// /// Threshold for distance user from the used OR target entities. /// - [DataField("distanceThreshold")] + [DataField] public float? DistanceThreshold; /// /// Whether damage will cancel the DoAfter. See also . /// - [DataField("breakOnDamage")] + [DataField] public bool BreakOnDamage; /// /// Threshold for user damage. This damage has to be dealt in a single event, not over time. /// - [DataField("damageThreshold")] + [DataField] public FixedPoint2 DamageThreshold = 1; /// /// If true, this DoAfter will be canceled if the user can no longer interact with the target. /// - [DataField("requireCanInteract")] + [DataField] public bool RequireCanInteract = true; #endregion @@ -143,7 +162,7 @@ public sealed partial class DoAfterArgs /// Note that this will block even if the duplicate is cancelled because either DoAfter had /// enabled. /// - [DataField("blockDuplicate")] + [DataField] public bool BlockDuplicate = true; //TODO: User pref to not cancel on second use on specific doafters @@ -151,7 +170,7 @@ public sealed partial class DoAfterArgs /// If true, this will cancel any duplicate DoAfters when attempting to add a new DoAfter. See also /// . /// - [DataField("cancelDuplicate")] + [DataField] public bool CancelDuplicate = true; /// @@ -162,7 +181,7 @@ public sealed partial class DoAfterArgs /// Note that both DoAfters may have their own conditions, and they will be considered duplicated if either set /// of conditions is satisfied. /// - [DataField("duplicateCondition")] + [DataField] public DuplicateConditions DuplicateCondition = DuplicateConditions.All; #endregion @@ -184,6 +203,7 @@ public sealed partial class DoAfterArgs /// The entity at which the event will be directed. If null, the event will not be directed. /// The entity being targeted by the DoAFter. Not the same as . /// The entity being used during the DoAfter. E.g., a tool + /// Goobstation - The entity that should see doafter progress bar except doAfter entity public DoAfterArgs( IEntityManager entManager, EntityUid user, @@ -191,7 +211,8 @@ public DoAfterArgs( DoAfterEvent @event, EntityUid? eventTarget, EntityUid? target = null, - EntityUid? used = null) + EntityUid? used = null, + EntityUid? showTo = null) // Goobstation - Show doAfter popup to another entity { User = user; Delay = delay; @@ -199,18 +220,12 @@ public DoAfterArgs( Used = used; EventTarget = eventTarget; Event = @event; + ShowTo = showTo; // Goobstation NetUser = entManager.GetNetEntity(User); NetTarget = entManager.GetNetEntity(Target); NetUsed = entManager.GetNetEntity(Used); - } - - /// - /// An empty do-after constructor. This WILL cause runtime errors if used to create a do-after. Only use this if you really know what you're doing! - /// - [Obsolete("Use the other constructors if possible.")] - public DoAfterArgs() - { + NetShowTo = entManager.GetNetEntity(ShowTo); // Goobstation - Show doAfter popup to another entity } /// @@ -248,6 +263,7 @@ public DoAfterArgs(DoAfterArgs other) Broadcast = other.Broadcast; NeedHand = other.NeedHand; BreakOnHandChange = other.BreakOnHandChange; + BreakOnDropItem = other.BreakOnDropItem; BreakOnMove = other.BreakOnMove; BreakOnWeightlessMove = other.BreakOnWeightlessMove; MovementThreshold = other.MovementThreshold; @@ -259,12 +275,16 @@ public DoAfterArgs(DoAfterArgs other) BlockDuplicate = other.BlockDuplicate; CancelDuplicate = other.CancelDuplicate; DuplicateCondition = other.DuplicateCondition; + ShowTo = other.ShowTo; // Goobstation - Show doAfter popup to another entity + + MultiplyDelay = other.MultiplyDelay; // Goobstation // Networked NetUser = other.NetUser; NetTarget = other.NetTarget; NetUsed = other.NetUsed; NetEventTarget = other.NetEventTarget; + NetShowTo = other.NetShowTo; // Goobstation - Show doAfter popup to another entity Event = other.Event.Clone(); } diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index ed8be1ad65..48051e0a30 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -130,6 +130,7 @@ private void OnDoAfterHandleState(EntityUid uid, DoAfterComponent comp, ref Comp doAfterArgs.Used = EnsureEntity(doAfterArgs.NetUsed, uid); doAfterArgs.User = EnsureEntity(doAfterArgs.NetUser, uid); doAfterArgs.EventTarget = EnsureEntity(doAfterArgs.NetEventTarget, uid); + doAfterArgs.ShowTo = EnsureEntity(doAfterArgs.NetShowTo, uid); // Goobstation - Show doAfter popup to another entity } comp.NextId = state.NextId; diff --git a/Content.Shared/Effects/ColorFlashEffectEvent.cs b/Content.Shared/Effects/ColorFlashEffectEvent.cs index 06043d3c00..0a4e2c1812 100644 --- a/Content.Shared/Effects/ColorFlashEffectEvent.cs +++ b/Content.Shared/Effects/ColorFlashEffectEvent.cs @@ -15,9 +15,15 @@ public sealed class ColorFlashEffectEvent : EntityEventArgs public List Entities; - public ColorFlashEffectEvent(Color color, List entities) + /// + /// The length of the flash animation. + /// + public float? AnimationLength; + + public ColorFlashEffectEvent(Color color, List entities, float? animationLength = null) { Color = color; Entities = entities; + AnimationLength = animationLength; } } diff --git a/Content.Shared/Effects/SharedColorFlashEffectSystem.cs b/Content.Shared/Effects/SharedColorFlashEffectSystem.cs index e1d5735550..3b5940b677 100644 --- a/Content.Shared/Effects/SharedColorFlashEffectSystem.cs +++ b/Content.Shared/Effects/SharedColorFlashEffectSystem.cs @@ -4,5 +4,5 @@ namespace Content.Shared.Effects; public abstract class SharedColorFlashEffectSystem : EntitySystem { - public abstract void RaiseEffect(Color color, List entities, Filter filter); + public abstract void RaiseEffect(Color color, List entities, Filter filter, float? animationLength = null); } diff --git a/Content.Shared/Ghost/SharedGhostSystem.cs b/Content.Shared/Ghost/SharedGhostSystem.cs index 091775b6c2..f10ce162bf 100644 --- a/Content.Shared/Ghost/SharedGhostSystem.cs +++ b/Content.Shared/Ghost/SharedGhostSystem.cs @@ -70,6 +70,14 @@ public sealed class GhostWarpsRequestEvent : EntityEventArgs { } + /// + /// Goobstation - A server to client request for them to spawn at the ghost bar + /// + [Serializable, NetSerializable] + public sealed class GhostBarSpawnEvent : EntityEventArgs + { + } + /// /// An individual place a ghost can warp to. /// This is used as part of diff --git a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs index c0f9b8ac00..05eb50a7e6 100644 --- a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs +++ b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs @@ -29,6 +29,15 @@ public sealed partial class HumanoidAppearanceComponent : Component [DataField, AutoNetworkedField] public Gender Gender; + [DataField, AutoNetworkedField] + public string? DisplayPronouns; + + [DataField, AutoNetworkedField] + public string? StationAiName; + + [DataField, AutoNetworkedField] + public string? CyborgName; + [DataField, AutoNetworkedField] public int Age = 18; diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index 8c1ecf833c..86b7d3b44c 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; using Robust.Shared.Prototypes; @@ -106,6 +106,7 @@ public static HumanoidCharacterAppearance DefaultWithSpecies(string species) HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), HumanoidSkinColor.VoxFeathers => Humanoid.SkinColor.ClosestVoxColor(speciesPrototype.DefaultSkinTone), + HumanoidSkinColor.AnimalFur => Humanoid.SkinColor.ClosestAnimalFurColor(speciesPrototype.DefaultSkinTone), // Einstein Engines - Tajaran HumanoidSkinColor.TintedHuesSkin => Humanoid.SkinColor.TintedHuesSkin(speciesPrototype.DefaultSkinTone, speciesPrototype.DefaultSkinTone), _ => Humanoid.SkinColor.ValidHumanSkinTone, }; @@ -176,6 +177,9 @@ public static HumanoidCharacterAppearance Random(string species, Sex sex) case HumanoidSkinColor.VoxFeathers: newSkinColor = Humanoid.SkinColor.ProportionalVoxColor(newSkinColor); break; + case HumanoidSkinColor.AnimalFur: // Einstein Engines - Tajaran + newSkinColor = Humanoid.SkinColor.ProportionalAnimalFurColor(newSkinColor); + break; } return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); diff --git a/Content.Shared/Humanoid/HumanoidVisualLayers.cs b/Content.Shared/Humanoid/HumanoidVisualLayers.cs index bda75c12c2..2a2e67e922 100644 --- a/Content.Shared/Humanoid/HumanoidVisualLayers.cs +++ b/Content.Shared/Humanoid/HumanoidVisualLayers.cs @@ -1,4 +1,4 @@ -using Content.Shared.Humanoid.Markings; +using Content.Shared.Humanoid.Markings; using Robust.Shared.Serialization; namespace Content.Shared.Humanoid @@ -8,6 +8,7 @@ public enum HumanoidVisualLayers : byte { Face, Tail, + Wings, Hair, FacialHair, Chest, diff --git a/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs b/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs index 17912e400a..de5509f932 100644 --- a/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs +++ b/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs @@ -73,6 +73,7 @@ public static IEnumerable Sublayers(HumanoidVisualLayers l break; case HumanoidVisualLayers.Chest: yield return HumanoidVisualLayers.Chest; + yield return HumanoidVisualLayers.Wings; yield return HumanoidVisualLayers.Tail; break; default: diff --git a/Content.Shared/Humanoid/Markings/MarkingCategories.cs b/Content.Shared/Humanoid/Markings/MarkingCategories.cs index 77e1ebb305..3bddcb8522 100644 --- a/Content.Shared/Humanoid/Markings/MarkingCategories.cs +++ b/Content.Shared/Humanoid/Markings/MarkingCategories.cs @@ -21,6 +21,7 @@ public enum MarkingCategories : byte RightFoot, LeftLeg, LeftFoot, + Wings, Tail, Overlay } @@ -47,6 +48,7 @@ public static MarkingCategories FromHumanoidVisualLayers(HumanoidVisualLayers la HumanoidVisualLayers.RLeg => MarkingCategories.RightLeg, HumanoidVisualLayers.LFoot => MarkingCategories.LeftFoot, HumanoidVisualLayers.RFoot => MarkingCategories.RightFoot, + HumanoidVisualLayers.Wings => MarkingCategories.Wings, HumanoidVisualLayers.Tail => MarkingCategories.Tail, _ => MarkingCategories.Overlay }; diff --git a/Content.Shared/Humanoid/Markings/MarkingManager.cs b/Content.Shared/Humanoid/Markings/MarkingManager.cs index 7bf0be998b..a278e15fe2 100644 --- a/Content.Shared/Humanoid/Markings/MarkingManager.cs +++ b/Content.Shared/Humanoid/Markings/MarkingManager.cs @@ -121,8 +121,11 @@ public IReadOnlyDictionary MarkingsByCategoryAndSex(Ma /// Please make a pull request if you find a use case for that behavior. /// /// - public IReadOnlyDictionary MarkingsByCategoryAndSpeciesAndSex(MarkingCategories category, - string species, Sex sex) + public IReadOnlyDictionary MarkingsByCategoryAndSpeciesAndSex( + MarkingCategories category, + string species, + Sex sex + ) { var speciesProto = _prototypeManager.Index(species); var onlyWhitelisted = _prototypeManager.Index(speciesProto.MarkingPoints).OnlyWhitelisted; @@ -131,19 +134,10 @@ public IReadOnlyDictionary MarkingsByCategoryAndSpecie foreach (var (key, marking) in MarkingsByCategory(category)) { if (onlyWhitelisted && marking.SpeciesRestrictions == null) - { - continue; - } - - if (marking.SpeciesRestrictions != null && !marking.SpeciesRestrictions.Contains(species)) - { continue; - } - if (marking.SexRestriction != null && marking.SexRestriction != sex) - { + if (!IsSpeciesWhitelisted(species, marking) || !IsSexWhitelisted(sex, marking)) continue; - } res.Add(key, marking); } @@ -151,10 +145,8 @@ public IReadOnlyDictionary MarkingsByCategoryAndSpecie return res; } - public bool TryGetMarking(Marking marking, [NotNullWhen(true)] out MarkingPrototype? markingResult) - { - return Markings.TryGetValue(marking.MarkingId, out markingResult); - } + public bool TryGetMarking(Marking marking, [NotNullWhen(true)] out MarkingPrototype? markingResult) => + Markings.TryGetValue(marking.MarkingId, out markingResult); /// /// Check if a marking is valid according to the category, species, and current data this marking has. @@ -167,21 +159,15 @@ public bool TryGetMarking(Marking marking, [NotNullWhen(true)] out MarkingProtot public bool IsValidMarking(Marking marking, MarkingCategories category, string species, Sex sex) { if (!TryGetMarking(marking, out var proto)) - { return false; - } if (proto.MarkingCategory != category || - proto.SpeciesRestrictions != null && !proto.SpeciesRestrictions.Contains(species) || - proto.SexRestriction != null && proto.SexRestriction != sex) - { + !IsSpeciesWhitelisted(species, proto) || + !IsSexWhitelisted(sex, proto)) return false; - } if (marking.MarkingColors.Count != proto.Sprites.Count) - { return false; - } return true; } @@ -200,25 +186,13 @@ public bool CanBeApplied(string species, Sex sex, Marking marking, IPrototypeMan var onlyWhitelisted = prototypeManager.Index(speciesProto.MarkingPoints).OnlyWhitelisted; if (!TryGetMarking(marking, out var prototype)) - { return false; - } if (onlyWhitelisted && prototype.SpeciesRestrictions == null) - { return false; - } - if (prototype.SpeciesRestrictions != null - && !prototype.SpeciesRestrictions.Contains(species)) - { - return false; - } - - if (prototype.SexRestriction != null && prototype.SexRestriction != sex) - { + if (!IsSpeciesWhitelisted(species, prototype) || !IsSexWhitelisted(sex, prototype)) return false; - } return true; } @@ -231,20 +205,10 @@ public bool CanBeApplied(string species, Sex sex, MarkingPrototype prototype, IP var onlyWhitelisted = prototypeManager.Index(speciesProto.MarkingPoints).OnlyWhitelisted; if (onlyWhitelisted && prototype.SpeciesRestrictions == null) - { - return false; - } - - if (prototype.SpeciesRestrictions != null && - !prototype.SpeciesRestrictions.Contains(species)) - { return false; - } - if (prototype.SexRestriction != null && prototype.SexRestriction != sex) - { + if (!IsSpeciesWhitelisted(species, prototype) || !IsSexWhitelisted(sex, prototype)) return false; - } return true; } @@ -257,7 +221,6 @@ public bool MustMatchSkin(string species, HumanoidVisualLayers layer, out float !prototypeManager.TryIndex(speciesProto.SpriteSet, out HumanoidSpeciesBaseSpritesPrototype? baseSprites) || !baseSprites.Sprites.TryGetValue(layer, out var spriteName) || !prototypeManager.TryIndex(spriteName, out HumanoidSpeciesSpriteLayer? sprite) || - sprite == null || !sprite.MarkingsMatchSkin ) { @@ -268,5 +231,21 @@ public bool MustMatchSkin(string species, HumanoidVisualLayers layer, out float alpha = sprite.LayerAlpha; return true; } + + public bool IsSpeciesWhitelisted(string species, MarkingPrototype prototype) + { + if (prototype.SpeciesRestrictions == null) + return true; + + return prototype.InvertSpeciesRestriction ? !prototype.SpeciesRestrictions.Contains(species) : prototype.SpeciesRestrictions.Contains(species); + } + + public bool IsSexWhitelisted(Sex sex, MarkingPrototype prototype) + { + if (prototype.SexRestriction == null) + return true; + + return prototype.InvertSexRestriction ? sex != prototype.SexRestriction.Value : sex == prototype.SexRestriction.Value; + } } } diff --git a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs index dfb594db5f..5fec07d7fb 100644 --- a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs +++ b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs @@ -12,24 +12,30 @@ public sealed partial class MarkingPrototype : IPrototype public string Name { get; private set; } = default!; [DataField("bodyPart", required: true)] - public HumanoidVisualLayers BodyPart { get; private set; } = default!; + public HumanoidVisualLayers BodyPart { get; private set; } [DataField("markingCategory", required: true)] - public MarkingCategories MarkingCategory { get; private set; } = default!; + public MarkingCategories MarkingCategory { get; private set; } [DataField("speciesRestriction")] public List? SpeciesRestrictions { get; private set; } - [DataField("sexRestriction")] + [DataField] + public bool InvertSpeciesRestriction { get; private set; } + + [DataField] public Sex? SexRestriction { get; private set; } - [DataField("followSkinColor")] - public bool FollowSkinColor { get; private set; } = false; + [DataField] + public bool InvertSexRestriction { get; private set; } + + [DataField] + public bool FollowSkinColor { get; private set; } - [DataField("forcedColoring")] - public bool ForcedColoring { get; private set; } = false; + [DataField] + public bool ForcedColoring { get; private set; } - [DataField("coloring")] + [DataField] public MarkingColors Coloring { get; private set; } = new(); [DataField("sprites", required: true)] diff --git a/Content.Shared/Humanoid/Markings/MarkingsSet.cs b/Content.Shared/Humanoid/Markings/MarkingsSet.cs index 689b93bfd7..740e3a8105 100644 --- a/Content.Shared/Humanoid/Markings/MarkingsSet.cs +++ b/Content.Shared/Humanoid/Markings/MarkingsSet.cs @@ -169,8 +169,7 @@ public void EnsureSpecies(string species, Color? skinColor, MarkingManager? mark toRemove.Add((category, marking.MarkingId)); } - if (prototype.SpeciesRestrictions != null - && !prototype.SpeciesRestrictions.Contains(species)) + if (!markingManager.IsSpeciesWhitelisted(species, prototype)) { toRemove.Add((category, marking.MarkingId)); } @@ -220,10 +219,8 @@ public void EnsureSexes(Sex sex, MarkingManager? markingManager = null) continue; } - if (prototype.SexRestriction != null && prototype.SexRestriction != sex) - { + if (!markingManager.IsSexWhitelisted(sex, prototype)) toRemove.Add((category, marking.MarkingId)); - } } } diff --git a/Content.Shared/Humanoid/NamingSystem.Roman.cs b/Content.Shared/Humanoid/NamingSystem.Roman.cs new file mode 100644 index 0000000000..2c254fff90 --- /dev/null +++ b/Content.Shared/Humanoid/NamingSystem.Roman.cs @@ -0,0 +1,70 @@ +using System.Text; +using Robust.Shared.Random; + +namespace Content.Shared.Humanoid; + +public sealed partial class NamingSystem : EntitySystem +{ + private static readonly Dictionary RomanMap = new() + { + { "M", 1000 }, + { "CM", 900 }, + { "D", 500 }, + { "CD", 400 }, + { "C", 100 }, + { "XC", 90 }, + { "L", 50 }, + { "XL", 40 }, + { "X", 10 }, + { "IX", 9 }, + { "V", 5 }, + { "IV", 4 }, + { "I", 1 } + }; + + // + // Generates a random Roman numeral with a length not exceeding 8 characters. + // All possible Roman numerals from 1 to 3,999 can be generated, + // but numbers from 1 to 100 have a higher chance of being rolled. + // + private string GenerateRomanNumeral() + { + (int, int) range; + while (true) + { + if (_random.Prob(0.8f)) // 80% chance for 1-100 + range = (1, 101); + else if (_random.Prob(0.6f)) // 12% chance for 101-500 + range = (101, 501); + else if (_random.Prob(0.75f)) // 6% chance for 501-1,000 + range = (501, 1001); + else // 2% chance for 1,001-3,999 + range = (1001, 4000); + + var numeral = IntToRomanNumeral(_random.Next(range.Item1, range.Item2)); + + // Reroll when the numeral length is greater than 8 to prevent lengthy Roman numerals + if (numeral.Length > 8) + continue; + + return numeral; + } + } + + // + // Converts an integer to a Roman numeral. + // + private static string IntToRomanNumeral(int number) + { + var sb = new StringBuilder(); + foreach (var (letters, equivalentNumber) in RomanMap) + { + while (number >= equivalentNumber) + { + sb.Append(letters); + number -= equivalentNumber; + } + } + return sb.ToString(); + } +} diff --git a/Content.Shared/Humanoid/NamingSystem.cs b/Content.Shared/Humanoid/NamingSystem.cs index c1e861c0d6..d27411852b 100644 --- a/Content.Shared/Humanoid/NamingSystem.cs +++ b/Content.Shared/Humanoid/NamingSystem.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Humanoid /// /// Figure out how to name a humanoid with these extensions. /// - public sealed class NamingSystem : EntitySystem + public sealed partial class NamingSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; @@ -43,6 +43,9 @@ public string GetName(string species, Gender? gender = null) case SpeciesNaming.FirstDashLast: return Loc.GetString("namepreset-firstdashlast", ("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto))); + case SpeciesNaming.FirstRoman: + return Loc.GetString("namepreset-firstlast", + ("first", GetFirstName(speciesProto, gender)), ("last", GenerateRomanNumeral())); case SpeciesNaming.FirstLast: default: return Loc.GetString("namepreset-firstlast", diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index 36b1e2387b..fb44c2904d 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -192,4 +192,5 @@ public enum SpeciesNaming : byte //End of Nyano - Summary: for Oni naming TheFirstofLast, FirstDashLast, + FirstRoman, } diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 3fda1c916a..959d5ce0a6 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -114,6 +114,9 @@ private void OnExamined(EntityUid uid, HumanoidAppearanceComponent component, Ex } args.PushText(Loc.GetString("humanoid-appearance-component-examine", ("user", identity), ("age", age), ("species", species))); + + if (component.DisplayPronouns != null) + args.PushText(Loc.GetString("humanoid-appearance-component-examine-pronouns", ("user", identity), ("pronouns", component.DisplayPronouns))); } /// @@ -425,6 +428,9 @@ public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile profile, if (TryComp(uid, out var grammar)) grammar.Gender = profile.Gender; + humanoid.DisplayPronouns = profile.DisplayPronouns; + humanoid.StationAiName = profile.StationAiName; + humanoid.CyborgName = profile.CyborgName; humanoid.Age = profile.Age; humanoid.CustomSpecieName = profile.Customspeciename; diff --git a/Content.Shared/Humanoid/SkinColor.cs b/Content.Shared/Humanoid/SkinColor.cs index 64ad82ac98..023f80bfe1 100644 --- a/Content.Shared/Humanoid/SkinColor.cs +++ b/Content.Shared/Humanoid/SkinColor.cs @@ -17,6 +17,14 @@ public static class SkinColor public const float MinFeathersValue = 36f / 100; public const float MaxFeathersValue = 55f / 100; + // Einstein Engines - Tajaran + public const float MinAnimalFurHue = 20f / 360; + public const float MaxAnimalFurHue = 60f / 360; + public const float MinAnimalFurSaturation = 0f / 100; + public const float MaxAnimalFurSaturation = 100f / 100; + public const float MinAnimalFurValue = 0f / 100; + public const float MaxAnimalFurValue = 100f / 100; + public static Color ValidHumanSkinTone => Color.FromHsv(new Vector4(0.07f, 0.2f, 1f, 1f)); /// @@ -223,6 +231,60 @@ public static bool VerifyVoxFeathers(Color color) return true; } + /// + /// Converts a Color proportionally to the allowed animal fur color range. + /// Will NOT preserve the specific input color even if it is within the allowed animal fur color range. + /// + /// Color to convert + /// Vox feather coloration + public static Color ProportionalAnimalFurColor(Color color) + { + var newColor = Color.ToHsv(color); + + newColor.X = newColor.X * (MaxAnimalFurHue - MinAnimalFurHue) + MinAnimalFurHue; + newColor.Y = newColor.Y * (MaxAnimalFurSaturation - MinAnimalFurSaturation) + MinAnimalFurSaturation; + newColor.Z = newColor.Z * (MaxAnimalFurValue - MinAnimalFurValue) + MinAnimalFurValue; + + return Color.FromHsv(newColor); + } + + // /// + // /// Ensures the input Color is within the allowed animal fur color range. + // /// + // /// Color to convert + // /// The same Color if it was within the allowed range, or the closest matching Color otherwise + public static Color ClosestAnimalFurColor(Color color) + { + var hsv = Color.ToHsv(color); + + hsv.X = Math.Clamp(hsv.X, MinAnimalFurHue, MaxAnimalFurHue); + hsv.Y = Math.Clamp(hsv.Y, MinAnimalFurSaturation, MaxAnimalFurSaturation); + hsv.Z = Math.Clamp(hsv.Z, MinAnimalFurValue, MaxAnimalFurValue); + + return Color.FromHsv(hsv); + } + + /// + /// Verify if this color is a valid animal fur coloration, or not. + /// + /// The color to verify + /// True if valid, false otherwise + public static bool VerifyAnimalFur(Color color) + { + var colorHsv = Color.ToHsv(color); + + if (colorHsv.X < MinAnimalFurHue || colorHsv.X > MaxAnimalFurHue) + return false; + + if (colorHsv.Y < MinAnimalFurSaturation || colorHsv.Y > MaxAnimalFurSaturation) + return false; + + if (colorHsv.Z < MinAnimalFurValue || colorHsv.Z > MaxAnimalFurValue) + return false; + + return true; + } + /// /// This takes in a color, and returns a color guaranteed to be above MinHuesLightness /// @@ -254,6 +316,7 @@ public static bool VerifySkinColor(HumanoidSkinColor type, Color color) HumanoidSkinColor.TintedHuesSkin => true, // DeltaV - Tone blending HumanoidSkinColor.Hues => VerifyHues(color), HumanoidSkinColor.VoxFeathers => VerifyVoxFeathers(color), + HumanoidSkinColor.AnimalFur => VerifyAnimalFur(color), // Einsetin Engines - Tajaran _ => false, }; } @@ -267,6 +330,7 @@ public static Color ValidSkinTone(HumanoidSkinColor type, Color color) HumanoidSkinColor.TintedHuesSkin => ValidTintedHuesSkinTone(color), // DeltaV - Tone blending HumanoidSkinColor.Hues => MakeHueValid(color), HumanoidSkinColor.VoxFeathers => ClosestVoxColor(color), + HumanoidSkinColor.AnimalFur => ClosestAnimalFurColor(color), // Einsetin Engines - Tajaran _ => color }; } @@ -279,4 +343,5 @@ public enum HumanoidSkinColor : byte VoxFeathers, // Vox feathers are limited to a specific color range TintedHues, //This gives a color tint to a humanoid's skin (10% saturation with full hue range). TintedHuesSkin, // DeltaV - Default TintedHues assumes the texture will have the proper skin color, but moths dont + AnimalFur, // Einstein Engines - limits coloration to more or less what earthen animals might have } diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs index 548fecd784..7e67e1ed41 100644 --- a/Content.Shared/Input/ContentKeyFunctions.cs +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -131,6 +131,7 @@ public static BoundKeyFunction[] GetLoadoutBoundKeys() => public static readonly BoundKeyFunction MappingUnselect = "MappingUnselect"; public static readonly BoundKeyFunction SaveMap = "SaveMap"; public static readonly BoundKeyFunction MappingEnablePick = "MappingEnablePick"; + public static readonly BoundKeyFunction MappingEnableDecalPick = "MappingEnableDecalPick"; public static readonly BoundKeyFunction MappingEnableDelete = "MappingEnableDelete"; public static readonly BoundKeyFunction MappingPick = "MappingPick"; public static readonly BoundKeyFunction MappingRemoveDecal = "MappingRemoveDecal"; diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index 9e45547bee..cfcb156455 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -228,11 +228,11 @@ public bool CanAccess(EntityUid actor, EntityUid target, EntityUid itemUid) public bool CanEquip(EntityUid uid, EntityUid itemUid, string slot, [NotNullWhen(false)] out string? reason, SlotDefinition? slotDefinition = null, InventoryComponent? inventory = null, - ClothingComponent? clothing = null, ItemComponent? item = null, bool bypassAccessCheck = false) => - CanEquip(uid, uid, itemUid, slot, out reason, slotDefinition, inventory, clothing, item, bypassAccessCheck); + ClothingComponent? clothing = null, ItemComponent? item = null, bool onSpawn = false, bool bypassAccessCheck = false) => + CanEquip(uid, uid, itemUid, slot, out reason, slotDefinition, inventory, clothing, item, onSpawn, bypassAccessCheck); public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, string slot, [NotNullWhen(false)] out string? reason, SlotDefinition? slotDefinition = null, - InventoryComponent? inventory = null, ClothingComponent? clothing = null, ItemComponent? item = null, bool bypassAccessCheck = false) + InventoryComponent? inventory = null, ClothingComponent? clothing = null, ItemComponent? item = null, bool onSpawn = false, bool bypassAccessCheck = false) { reason = "inventory-component-can-equip-cannot"; if (!Resolve(target, ref inventory, false)) @@ -278,6 +278,11 @@ public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin return false; } + if (onSpawn && + (_whitelistSystem.IsWhitelistFail(slotDefinition.SpawnWhitelist, itemUid) || + _whitelistSystem.IsBlacklistPass(slotDefinition.SpawnBlacklist, itemUid))) + return false; + var attemptEvent = new IsEquippingAttemptEvent(actor, target, itemUid, slotDefinition); RaiseLocalEvent(target, attemptEvent, true); if (attemptEvent.Cancelled) diff --git a/Content.Shared/Inventory/InventorySystem.Helpers.cs b/Content.Shared/Inventory/InventorySystem.Helpers.cs index 7e325abe21..8bb4cf8897 100644 --- a/Content.Shared/Inventory/InventorySystem.Helpers.cs +++ b/Content.Shared/Inventory/InventorySystem.Helpers.cs @@ -139,4 +139,17 @@ public void SpawnItemOnEntity(EntityUid entity, EntProtoId item) //Try insert into hands, or drop on the floor _handsSystem.PickupOrDrop(entity, itemToSpawn, false); } + + // Goobstation + public bool TryGetContainingEntity(Entity entity, [NotNullWhen(true)] out EntityUid? containingEntity) + { + if (!_containerSystem.TryGetContainingContainer(entity, out var container) || !HasComp(container.Owner)) + { + containingEntity = null; + return false; + } + + containingEntity = container.Owner; + return true; + } } diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index 4375f1ab19..6d9523e851 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -65,6 +65,7 @@ public void InitializeRelay() SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); diff --git a/Content.Shared/Inventory/InventoryTemplatePrototype.cs b/Content.Shared/Inventory/InventoryTemplatePrototype.cs index 91accec8c9..ae1269cbd0 100644 --- a/Content.Shared/Inventory/InventoryTemplatePrototype.cs +++ b/Content.Shared/Inventory/InventoryTemplatePrototype.cs @@ -60,4 +60,19 @@ public sealed partial class SlotDefinition /// Entity blacklist for CanEquip checks. /// [DataField("blacklist")] public EntityWhitelist? Blacklist = null; + + /// + /// Entity whitelist for CanEquip checks, on spawn only. + /// + [DataField("spawnWhitelist")] public EntityWhitelist? SpawnWhitelist = null; + + /// + /// Entity blacklist for CanEquip checks, on spawn only. + /// + [DataField("spawnBlacklist")] public EntityWhitelist? SpawnBlacklist = null; + + /// + /// Is this slot disabled? Could be due to severing or other reasons. + /// + [DataField] public bool Disabled; } diff --git a/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs index 760cefe27d..f483b8a2ee 100644 --- a/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs +++ b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs @@ -16,11 +16,20 @@ public override void Initialize() private void OnToggled(Entity ent, ref ItemToggledEvent args) { - var target = ent.Comp.Parent ? Transform(ent).ParentUid : ent.Owner; + ToggleComponent(ent, args.Activated); + } + + // Goobstation - Make this system more flexible + public void ToggleComponent(EntityUid uid, bool activate) + { + if (!TryComp(uid, out var component)) + return; + + var target = component.Parent ? Transform(uid).ParentUid : uid; - if (args.Activated) - EntityManager.AddComponents(target, ent.Comp.Components); + if (activate) + EntityManager.AddComponents(target, component.Components); else - EntityManager.RemoveComponents(target, ent.Comp.RemoveComponents ?? ent.Comp.Components); + EntityManager.RemoveComponents(target, component.RemoveComponents ?? component.Components); } } diff --git a/Content.Shared/Mapping/MappingFavoritesDataMessage.cs b/Content.Shared/Mapping/MappingFavoritesDataMessage.cs new file mode 100644 index 0000000000..b26e9cae51 --- /dev/null +++ b/Content.Shared/Mapping/MappingFavoritesDataMessage.cs @@ -0,0 +1,31 @@ +using System.IO; +using Lidgren.Network; +using Robust.Shared.Network; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Mapping; + +public sealed class MappingFavoritesDataMessage : NetMessage +{ + public override MsgGroups MsgGroup => MsgGroups.Command; + public override NetDeliveryMethod DeliveryMethod => NetDeliveryMethod.ReliableUnordered; + + public List PrototypeIDs = default!; + + public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) + { + var length = buffer.ReadVariableInt32(); + using var stream = new MemoryStream(length); + buffer.ReadAlignedMemory(stream, length); + serializer.DeserializeDirect(stream, out PrototypeIDs); + } + + public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer) + { + var stream = new MemoryStream(); + serializer.SerializeDirect(stream, PrototypeIDs); + buffer.WriteVariableInt32((int) stream.Length); + buffer.Write(stream.AsSpan()); + } +} diff --git a/Content.Shared/Mapping/MappingFavoritesLoadMessage.cs b/Content.Shared/Mapping/MappingFavoritesLoadMessage.cs new file mode 100644 index 0000000000..e7ad8742c0 --- /dev/null +++ b/Content.Shared/Mapping/MappingFavoritesLoadMessage.cs @@ -0,0 +1,19 @@ +using Lidgren.Network; +using Robust.Shared.Network; +using Robust.Shared.Serialization; + +namespace Content.Shared.Mapping; + +public sealed class MappingFavoritesLoadMessage : NetMessage +{ + public override MsgGroups MsgGroup => MsgGroups.Command; + public override NetDeliveryMethod DeliveryMethod => NetDeliveryMethod.ReliableUnordered; + + public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) + { + } + + public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer) + { + } +} diff --git a/Content.Shared/Mapping/MappingFavoritesSaveMessage.cs b/Content.Shared/Mapping/MappingFavoritesSaveMessage.cs new file mode 100644 index 0000000000..6443e46ea6 --- /dev/null +++ b/Content.Shared/Mapping/MappingFavoritesSaveMessage.cs @@ -0,0 +1,31 @@ +using System.IO; +using Lidgren.Network; +using Robust.Shared.Network; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Mapping; + +public sealed class MappingFavoritesSaveMessage : NetMessage +{ + public override MsgGroups MsgGroup => MsgGroups.Command; + public override NetDeliveryMethod DeliveryMethod => NetDeliveryMethod.ReliableUnordered; + + public List PrototypeIDs = default!; + + public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) + { + var length = buffer.ReadVariableInt32(); + using var stream = new MemoryStream(length); + buffer.ReadAlignedMemory(stream, length); + serializer.DeserializeDirect(stream, out PrototypeIDs); + } + + public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer) + { + var stream = new MemoryStream(); + serializer.SerializeDirect(stream, PrototypeIDs); + buffer.WriteVariableInt32((int) stream.Length); + buffer.Write(stream.AsSpan()); + } +} diff --git a/Content.Shared/Mapping/MappingTemplatePrototype.cs b/Content.Shared/Mapping/MappingTemplatePrototype.cs new file mode 100644 index 0000000000..2d6534d1ef --- /dev/null +++ b/Content.Shared/Mapping/MappingTemplatePrototype.cs @@ -0,0 +1,33 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Mapping; + +/// +/// This is a prototype for predefining the start content of the “templates” section in the map editor. +/// +[Prototype("mappingTemplate")] +public sealed partial class MappingTemplatePrototype : IPrototype +{ + [IdDataField] + public string ID { get; } = default!; + + /// + /// Used to allocate root objects to the corresponding sections of the map editor interface. + /// + [DataField] + public TemplateType? RootType { get; } + + /// + /// Prototypes for which this one will be a parent. + /// + [DataField] + public List Children { get; } = new (); +} + +[Serializable] +public enum TemplateType : byte +{ + Tile, + Decal, + Entity, +} diff --git a/Content.Shared/Mech/Components/MechComponent.cs b/Content.Shared/Mech/Components/MechComponent.cs index ba380492bc..6ebfde5f99 100644 --- a/Content.Shared/Mech/Components/MechComponent.cs +++ b/Content.Shared/Mech/Components/MechComponent.cs @@ -13,6 +13,13 @@ namespace Content.Shared.Mech.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MechComponent : Component { + /// + /// Goobstation: Whether or not an emag disables it. + /// + [DataField("breakOnEmag")] + [AutoNetworkedField] + public bool BreakOnEmag = true; + /// /// How much "health" the mech has left. /// @@ -141,6 +148,8 @@ public sealed partial class MechComponent : Component [DataField] public EntProtoId MechCycleAction = "ActionMechCycleEquipment"; [DataField] + public EntProtoId ToggleAction = "ActionToggleLight"; //Goobstation Mech Lights toggle action + [DataField] public EntProtoId MechUiAction = "ActionMechOpenUI"; [DataField] public EntProtoId MechEjectAction = "ActionMechEject"; @@ -158,4 +167,5 @@ public sealed partial class MechComponent : Component [DataField] public EntityUid? MechCycleActionEntity; [DataField] public EntityUid? MechUiActionEntity; [DataField] public EntityUid? MechEjectActionEntity; + [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; //Goobstation Mech Lights toggle action } diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index 2ec48085c4..f977a2eeb4 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -21,6 +21,17 @@ using Robust.Shared.Serialization; using Robust.Shared.Timing; +// Goobstation Change +using Content.Shared.CCVar; +using Content.Shared._Goobstation.CCVar; +using Content.Shared.Emag.Systems; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Inventory.VirtualItem; +using Robust.Shared.Configuration; +using Content.Shared.Implants.Components; + namespace Content.Shared.Mech.EntitySystems; /// @@ -39,7 +50,13 @@ public abstract class SharedMechSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; // Goobstation Change + [Dependency] private readonly SharedVirtualItemSystem _virtualItem = default!; // Goobstation Change + [Dependency] private readonly IConfigurationManager _config = default!; // Goobstation Change + // Goobstation: Local variable for checking if mech guns can be used out of them. + private bool _canUseMechGunOutside; + /// public override void Initialize() { @@ -51,10 +68,20 @@ public override void Initialize() SubscribeLocalEvent(OnGetAdditionalAccess); SubscribeLocalEvent(OnDragDrop); SubscribeLocalEvent(OnCanDragDrop); + SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnGetMeleeWeapon); SubscribeLocalEvent(OnCanAttackFromContainer); SubscribeLocalEvent(OnAttackAttempt); + SubscribeLocalEvent(OnEntGotRemovedFromContainer); + SubscribeLocalEvent(OnShotAttempted); // Goobstation + Subs.CVar(_config, GoobCVars.MechGunOutsideMech, value => _canUseMechGunOutside = value, true); // Goobstation + } + + // GoobStation: Fixes scram implants or teleports locking the pilot out of being able to move. + private void OnEntGotRemovedFromContainer(EntityUid uid, MechPilotComponent component, EntGotRemovedFromContainerMessage args) + { + TryEject(component.Mech, pilot: uid); } private void OnToggleEquipmentAction(EntityUid uid, MechComponent component, MechToggleEquipmentEvent args) @@ -132,6 +159,7 @@ private void SetupUser(EntityUid mech, EntityUid pilot, MechComponent? component _actions.AddAction(pilot, ref component.MechCycleActionEntity, component.MechCycleAction, mech); _actions.AddAction(pilot, ref component.MechUiActionEntity, component.MechUiAction, mech); _actions.AddAction(pilot, ref component.MechEjectActionEntity, component.MechEjectAction, mech); + _actions.AddAction(pilot, ref component.ToggleActionEntity, component.ToggleAction, mech); //Goobstation Mech Lights toggle action } private void RemoveUser(EntityUid mech, EntityUid pilot) @@ -368,6 +396,7 @@ public bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? compone SetupUser(uid, toInsert.Value); _container.Insert(toInsert.Value, component.PilotSlot); UpdateAppearance(uid, component); + UpdateHands(toInsert.Value, uid, true); // Goobstation return true; } @@ -376,23 +405,71 @@ public bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? compone /// /// /// + /// The pilot to eject /// Whether or not the pilot was ejected. - public bool TryEject(EntityUid uid, MechComponent? component = null) + public bool TryEject(EntityUid uid, MechComponent? component = null, EntityUid? pilot = null) { if (!Resolve(uid, ref component)) return false; - if (component.PilotSlot.ContainedEntity == null) - return false; + if (component.PilotSlot.ContainedEntity != null) + pilot = component.PilotSlot.ContainedEntity.Value; - var pilot = component.PilotSlot.ContainedEntity.Value; + if (pilot == null) + return false; - RemoveUser(uid, pilot); - _container.RemoveEntity(uid, pilot); + RemoveUser(uid, pilot.Value); + _container.RemoveEntity(uid, pilot.Value); UpdateAppearance(uid, component); + UpdateHands(pilot.Value, uid, false); // Goobstation return true; } + // Goobstation Change Start + private void UpdateHands(EntityUid uid, EntityUid mech, bool active) + { + if (!TryComp(uid, out var handsComponent)) + return; + + if (active) + BlockHands(uid, mech, handsComponent); + else + FreeHands(uid, mech); + } + + private void BlockHands(EntityUid uid, EntityUid mech, HandsComponent handsComponent) + { + var freeHands = 0; + foreach (var hand in _hands.EnumerateHands(uid, handsComponent)) + { + if (hand.HeldEntity == null) + { + freeHands++; + continue; + } + + // Is this entity removable? (they might have handcuffs on) + if (HasComp(hand.HeldEntity) && hand.HeldEntity != mech) + continue; + + _hands.DoDrop(uid, hand, true, handsComponent); + freeHands++; + if (freeHands == 2) + break; + } + if (_virtualItem.TrySpawnVirtualItemInHand(mech, uid, out var virtItem1)) + EnsureComp(virtItem1.Value); + + if (_virtualItem.TrySpawnVirtualItemInHand(mech, uid, out var virtItem2)) + EnsureComp(virtItem2.Value); + } + + private void FreeHands(EntityUid uid, EntityUid mech) + { + _virtualItem.DeleteInHandsMatching(uid, mech); + } + + // Goobstation Change End private void OnGetMeleeWeapon(EntityUid uid, MechPilotComponent component, GetMeleeWeaponEvent args) { if (args.Handled) @@ -417,6 +494,21 @@ private void OnAttackAttempt(EntityUid uid, MechPilotComponent component, Attack args.Cancel(); } + // Goobstation: Prevent guns being used out of mechs if CCVAR is set. + private void OnShotAttempted(EntityUid uid, MechEquipmentComponent component, ref ShotAttemptedEvent args) + { + if (!component.EquipmentOwner.HasValue + || !HasComp(component.EquipmentOwner.Value)) + { + if (!_canUseMechGunOutside) + args.Cancel(); + return; + } + + var ev = new HandleMechEquipmentBatteryEvent(); + RaiseLocalEvent(uid, ev); + } + private void UpdateAppearance(EntityUid uid, MechComponent? component = null, AppearanceComponent? appearance = null) { @@ -449,6 +541,14 @@ private void OnCanDragDrop(EntityUid uid, MechComponent component, ref CanDropTa args.CanDrop |= !component.Broken && CanInsert(uid, args.Dragged, component); } + private void OnEmagged(EntityUid uid, MechComponent component, ref GotEmaggedEvent args) // Goobstation + { + if (!component.BreakOnEmag) + return; + args.Handled = true; + component.EquipmentWhitelist = null; + Dirty(uid, component); + } } /// @@ -476,3 +576,12 @@ public sealed partial class MechExitEvent : SimpleDoAfterEvent public sealed partial class MechEntryEvent : SimpleDoAfterEvent { } + +/// +/// Event raised when an user attempts to fire a mech weapon to check if its battery is drained +/// + +[Serializable, NetSerializable] +public sealed partial class HandleMechEquipmentBatteryEvent : EntityEventArgs +{ +} diff --git a/Content.Shared/Mind/Components/MindContainerComponent.cs b/Content.Shared/Mind/Components/MindContainerComponent.cs index 62b26cbd35..be6ad6b125 100644 --- a/Content.Shared/Mind/Components/MindContainerComponent.cs +++ b/Content.Shared/Mind/Components/MindContainerComponent.cs @@ -37,6 +37,12 @@ public sealed partial class MindContainerComponent : Component [DataField("ghostOnShutdown")] [Access(typeof(SharedMindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends public bool GhostOnShutdown { get; set; } = true; + + /// + /// DeltaV: The first mind to control this mob. Will only be null if the mob never had a mind at all. + /// + [DataField, AutoNetworkedField] + public EntityUid? OriginalMind; } public abstract class MindEvent : EntityEventArgs diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 994d230e8b..9454443eb3 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Shared.Silicon.Components; // Goobstation using Content.Shared.Administration.Logs; using Content.Shared.Database; using Content.Shared.Examine; @@ -538,22 +539,23 @@ public string MindOwnerLoggingString(MindComponent mind) /// /// Returns a list of every living humanoid player's minds, except for a single one which is exluded. /// - public List GetAliveHumansExcept(EntityUid exclude) + public HashSet> GetAliveHumans(EntityUid? exclude = null, bool excludeSilicon = false) { - var mindQuery = EntityQuery(); - - var allHumans = new List(); + var allHumans = new HashSet>(); // HumanoidAppearanceComponent is used to prevent mice, pAIs, etc from being chosen - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var mc, out var mobState, out _)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var mobState, out _)) { - // the player needs to have a mind and not be the excluded one - if (mc.Mind == null || mc.Mind == exclude) + // the player needs to have a mind and not be the excluded one + + // the player has to be alive + if (!TryGetMind(uid, out var mind, out var mindComp) || mind == exclude || !_mobState.IsAlive(uid, mobState)) continue; - // the player has to be alive - if (_mobState.IsAlive(uid, mobState)) - allHumans.Add(mc.Mind.Value); + // Goobstation: Skip IPCs from selections + if (excludeSilicon && HasComp(uid)) + continue; + + allHumans.Add(new Entity(mind, mindComp)); } return allHumans; diff --git a/Content.Shared/NPC/Components/NpcFactionSelectorComponent.cs b/Content.Shared/NPC/Components/NpcFactionSelectorComponent.cs new file mode 100644 index 0000000000..fcc40e9b60 --- /dev/null +++ b/Content.Shared/NPC/Components/NpcFactionSelectorComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.NPC.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.NPC.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSelectorSystem))] +public sealed partial class NpcFactionSelectorComponent : Component +{ + [DataField] + public List SelectableFactions = new(); +} diff --git a/Content.Shared/NPC/Components/NpcFactionSpriteStateSetterComponent.cs b/Content.Shared/NPC/Components/NpcFactionSpriteStateSetterComponent.cs new file mode 100644 index 0000000000..ec5d66ff03 --- /dev/null +++ b/Content.Shared/NPC/Components/NpcFactionSpriteStateSetterComponent.cs @@ -0,0 +1,7 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.NPC.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class NpcFactionSpriteStateSetterComponent : Component {} + diff --git a/Content.Shared/NPC/Events/NpcFactionChangedEvent.cs b/Content.Shared/NPC/Events/NpcFactionChangedEvent.cs new file mode 100644 index 0000000000..dc43017af6 --- /dev/null +++ b/Content.Shared/NPC/Events/NpcFactionChangedEvent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.NPC.Events; + +/// +/// Raised from client to server to notify a faction was added to an NPC. +/// +[Serializable, NetSerializable] +public sealed class NpcFactionAddedEvent : EntityEventArgs +{ + public string FactionID; + + public NpcFactionAddedEvent(string factionId) => FactionID = factionId; +} + +/// +/// Raised from client to server to notify a faction was removed from an NPC. +/// +[Serializable, NetSerializable] +public sealed class NpcFactionRemovedEvent : EntityEventArgs +{ + public string FactionID; + + public NpcFactionRemovedEvent(string factionId) => FactionID = factionId; +} diff --git a/Content.Shared/NPC/Prototypes/NpcFactionPrototype.cs b/Content.Shared/NPC/Prototypes/NpcFactionPrototype.cs index 1dcdd751c8..5a7b403814 100644 --- a/Content.Shared/NPC/Prototypes/NpcFactionPrototype.cs +++ b/Content.Shared/NPC/Prototypes/NpcFactionPrototype.cs @@ -24,6 +24,9 @@ public sealed partial class NpcFactionPrototype : IPrototype /// public record struct FactionData { + [ViewVariables] + public bool IsHostileToSelf; + [ViewVariables] public HashSet> Friendly; diff --git a/Content.Shared/NPC/Systems/NpcFactionSelectorSystem.cs b/Content.Shared/NPC/Systems/NpcFactionSelectorSystem.cs new file mode 100644 index 0000000000..c3fef47da4 --- /dev/null +++ b/Content.Shared/NPC/Systems/NpcFactionSelectorSystem.cs @@ -0,0 +1,60 @@ +using Content.Shared.Database; +using Content.Shared.NPC.Components; +using Content.Shared.NPC.Prototypes; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Prototypes; +using System.Linq; + +namespace Content.Shared.NPC.Systems; +public sealed partial class NpcFactionSelectorSystem : EntitySystem +{ + + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly NpcFactionSystem _factionSystem = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerb); + } + + private void OnGetVerb(Entity entity, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + NpcFactionSelectorComponent factionSelectorComponent = _entityManager.GetComponent(entity); + + if (factionSelectorComponent.SelectableFactions.Count < 2) + return; + + foreach (var type in factionSelectorComponent.SelectableFactions) + { + var proto = _prototype.Index(type); + + var v = new Verb + { + Priority = 1, + Category = VerbCategory.SelectFaction, + Text = proto.ID, + Impact = LogImpact.Medium, + DoContactInteraction = true, + Act = () => + { + _popup.PopupPredicted(Loc.GetString("npcfaction-component-faction-set", ("faction", proto.ID)), entity.Owner, null); + foreach (var type in factionSelectorComponent.SelectableFactions) + { + _factionSystem.RemoveFaction(entity.Owner, type); + } + + _factionSystem.AddFaction(entity.Owner, proto.ID); + } + }; + args.Verbs.Add(v); + } + } +} diff --git a/Content.Shared/NPC/Systems/NpcFactionSystem.cs b/Content.Shared/NPC/Systems/NpcFactionSystem.cs index 448c7eeaec..62de929864 100644 --- a/Content.Shared/NPC/Systems/NpcFactionSystem.cs +++ b/Content.Shared/NPC/Systems/NpcFactionSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.NPC.Components; +using Content.Shared.NPC.Events; using Content.Shared.NPC.Prototypes; using Robust.Shared.Prototypes; using System.Collections.Frozen; @@ -106,6 +107,8 @@ public void AddFaction(Entity ent, string faction, b if (!ent.Comp.Factions.Add(faction)) return; + RaiseLocalEvent(ent.Owner, new NpcFactionAddedEvent(faction)); + if (dirty) RefreshFactions((ent, ent.Comp)); } @@ -125,6 +128,8 @@ public void AddFactions(Entity ent, HashSet ent, string faction if (!ent.Comp.Factions.Remove(faction)) return; + RaiseLocalEvent(ent.Owner, new NpcFactionRemovedEvent(faction)); + if (dirty) RefreshFactions((ent, ent.Comp)); } @@ -217,7 +224,12 @@ public bool IsEntityFriendly(Entity ent, Entity 0 || ent.Comp.FriendlyFactions.Overlaps(other.Comp.Factions); } public bool IsFactionFriendly(string target, string with) @@ -301,8 +313,9 @@ private void RefreshFactions() { _factions = _proto.EnumeratePrototypes().ToFrozenDictionary( faction => faction.ID, - faction => new FactionData + faction => new FactionData { + IsHostileToSelf = faction.Hostile.Contains(faction.ID), Friendly = faction.Friendly.ToHashSet(), Hostile = faction.Hostile.ToHashSet() }); diff --git a/Content.Shared/Overlays/ShowPsionicsRecordIconsSystem.cs b/Content.Shared/Overlays/ShowPsionicsRecordIconsSystem.cs new file mode 100644 index 0000000000..3562ea0808 --- /dev/null +++ b/Content.Shared/Overlays/ShowPsionicsRecordIconsSystem.cs @@ -0,0 +1,14 @@ +using Robust.Shared.GameStates; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see Psionics record status of mobs. +/// + +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowPsionicsRecordIconsComponent : Component { } diff --git a/Content.Shared/Overlays/Switchable/SwitchableOverlayComponent.cs b/Content.Shared/Overlays/Switchable/SwitchableOverlayComponent.cs index 8589bdffd9..a13e20b60f 100644 --- a/Content.Shared/Overlays/Switchable/SwitchableOverlayComponent.cs +++ b/Content.Shared/Overlays/Switchable/SwitchableOverlayComponent.cs @@ -1,3 +1,4 @@ +using System.Dynamic; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -18,14 +19,15 @@ public abstract partial class SwitchableOverlayComponent : BaseOverlayComponent [DataField] public bool IsEquipment; - /// - /// If it is greater than 0, overlay isn't toggled but pulsed instead - /// + [DataField] - public float PulseTime; + public float PulseTime = 0; + + [ViewVariables(VVAccess.ReadOnly)] + public TimeSpan PulseAccumulator = TimeSpan.Zero; [ViewVariables(VVAccess.ReadOnly)] - public float PulseAccumulator; + public TimeSpan PulseEndTime = TimeSpan.Zero; [DataField] public virtual SoundSpecifier? ActivateSound { get; set; } = diff --git a/Content.Shared/Overlays/Switchable/SwitchableOverlaySystem.cs b/Content.Shared/Overlays/Switchable/SwitchableOverlaySystem.cs index 9048052a06..5e0375869a 100644 --- a/Content.Shared/Overlays/Switchable/SwitchableOverlaySystem.cs +++ b/Content.Shared/Overlays/Switchable/SwitchableOverlaySystem.cs @@ -50,12 +50,14 @@ private void ActiveTick(float frameTime) while (query.MoveNext(out var uid, out var comp)) { - if (comp.PulseTime <= 0f || comp.PulseAccumulator >= comp.PulseTime) + if (comp.PulseTime <= 0) continue; - comp.PulseAccumulator += frameTime; + // The accumulator is for visually rendering the pulse strength decaying. + comp.PulseAccumulator += comp.PulseEndTime - _timing.CurTime; - if (comp.PulseAccumulator < comp.PulseTime) + // This line is for the actual check that shuts off the pulse when its time is up. + if (_timing.CurTime < comp.PulseEndTime) continue; Toggle(uid, comp, false, false); @@ -101,6 +103,8 @@ private void OnHandleState(EntityUid uid, TComp component, ref ComponentHandleSt return; component.IsActive = state.IsActive; + if (component.PulseTime != 0) + component.PulseEndTime = _timing.CurTime + TimeSpan.FromSeconds(component.PulseTime); RaiseSwitchableOverlayToggledEvent(uid, component.IsEquipment ? Transform(uid).ParentUid : uid, @@ -117,13 +121,13 @@ private void OnShutdown(EntityUid uid, TComp component, ComponentShutdown args) { if (component.IsEquipment) return; - + _actions.RemoveAction(uid, component.ToggleActionEntity); } private void OnInit(EntityUid uid, TComp component, ComponentInit args) { - component.PulseAccumulator = component.PulseTime; + component.PulseAccumulator = TimeSpan.FromSeconds(component.PulseTime); } private void OnMapInit(EntityUid uid, TComp component, MapInitEvent args) @@ -149,9 +153,9 @@ private void Toggle(EntityUid uid, TComp component, bool activate, bool playSoun false); } - if (component.PulseTime > 0f) + if (component.PulseTime > 0) { - component.PulseAccumulator = activate ? 0f : component.PulseTime; + component.PulseAccumulator = activate ? TimeSpan.Zero : TimeSpan.FromSeconds(component.PulseTime); return; } diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 775ccb7c44..386325145e 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -22,13 +22,17 @@ public enum CollisionGroup GhostImpassable = 1 << 5, // 32 Things impassible by ghosts/observers, ie blessed tiles or forcefields BulletImpassable = 1 << 6, // 64 Can be hit by bullets InteractImpassable = 1 << 7, // 128 Blocks interaction/InRangeUnobstructed + // Y dis door passable when all the others impassable / collision. DoorPassable = 1 << 8, // 256 Allows door to close over top, Like blast doors over conveyors for disposals rooms/cargo. MapGrid = MapGridHelpers.CollisionGroup, // Map grids, like shuttles. This is the actual grid itself, not the walls or other entities connected to the grid. // 32 possible groups + // Why dis exist AllMask = -1, + SingularityLayer = Opaque | Impassable | MidImpassable | HighImpassable | LowImpassable | BulletImpassable | InteractImpassable | DoorPassable, + // Humanoids, etc. MobMask = Impassable | HighImpassable | MidImpassable | LowImpassable, MobLayer = Opaque | BulletImpassable, diff --git a/Content.Shared/Prayer/PrayableComponent.cs b/Content.Shared/Prayer/PrayableComponent.cs index 71251af810..d084ab1f3b 100644 --- a/Content.Shared/Prayer/PrayableComponent.cs +++ b/Content.Shared/Prayer/PrayableComponent.cs @@ -12,35 +12,35 @@ public sealed partial class PrayableComponent : Component /// /// If bible users are only allowed to use this prayable entity /// - [DataField("bibleUserOnly")] + [DataField] [ViewVariables(VVAccess.ReadWrite)] public bool BibleUserOnly; /// /// Message given to user to notify them a message was sent /// - [DataField("sentMessage")] + [DataField] [ViewVariables(VVAccess.ReadWrite)] public string SentMessage = "prayer-popup-notify-pray-sent"; /// /// Prefix used in the notification to admins /// - [DataField("notifiactionPrefix")] + [DataField] [ViewVariables(VVAccess.ReadWrite)] public string NotificationPrefix = "prayer-chat-notify-pray"; /// /// Used in window title and context menu /// - [DataField("verb")] + [DataField] [ViewVariables(VVAccess.ReadOnly)] public string Verb = "prayer-verbs-pray"; /// /// Context menu image /// - [DataField("verbImage")] + [DataField] [ViewVariables(VVAccess.ReadOnly)] public SpriteSpecifier? VerbImage = new SpriteSpecifier.Texture(new ("/Textures/Interface/pray.svg.png")); } diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index c773d36c18..f75fb08a98 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -81,6 +81,15 @@ public sealed partial class HumanoidCharacterProfile : ICharacterProfile [DataField] public Gender Gender { get; private set; } = Gender.Male; + [DataField] + public string? DisplayPronouns { get; set; } + + [DataField] + public string? StationAiName { get; set; } + + [DataField] + public string? CyborgName { get; set; } + /// public ICharacterAppearance CharacterAppearance => Appearance; @@ -121,6 +130,9 @@ public HumanoidCharacterProfile( int age, Sex sex, Gender gender, + string? displayPronouns, + string? stationAiName, + string? cyborgName, HumanoidCharacterAppearance appearance, SpawnPriorityPreference spawnPriority, Dictionary jobPriorities, @@ -140,6 +152,9 @@ public HumanoidCharacterProfile( Age = age; Sex = sex; Gender = gender; + DisplayPronouns = displayPronouns; + StationAiName = stationAiName; + CyborgName = cyborgName; Appearance = appearance; SpawnPriority = spawnPriority; _jobPriorities = jobPriorities; @@ -163,6 +178,9 @@ public HumanoidCharacterProfile(HumanoidCharacterProfile other) other.Age, other.Sex, other.Gender, + other.DisplayPronouns, + other.StationAiName, + other.CyborgName, other.Appearance.Clone(), other.SpawnPriority, new Dictionary(other.JobPriorities), @@ -265,6 +283,9 @@ public static HumanoidCharacterProfile RandomWithSpecies(string species = Shared public HumanoidCharacterProfile WithAge(int age) => new(this) { Age = age }; public HumanoidCharacterProfile WithSex(Sex sex) => new(this) { Sex = sex }; public HumanoidCharacterProfile WithGender(Gender gender) => new(this) { Gender = gender }; + public HumanoidCharacterProfile WithDisplayPronouns(string? displayPronouns) => new(this) { DisplayPronouns = displayPronouns }; + public HumanoidCharacterProfile WithStationAiName(string? stationAiName) => new(this) { StationAiName = stationAiName }; + public HumanoidCharacterProfile WithCyborgName(string? cyborgName) => new(this) { CyborgName = cyborgName }; public HumanoidCharacterProfile WithSpecies(string species) => new(this) { Species = species }; public HumanoidCharacterProfile WithCustomSpeciesName(string customspeciename) => new(this) { Customspeciename = customspeciename }; public HumanoidCharacterProfile WithHeight(float height) => new(this) { Height = height }; 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/Content.Shared/Psionics/Components/PsionicsRecordComponent.cs b/Content.Shared/Psionics/Components/PsionicsRecordComponent.cs new file mode 100644 index 0000000000..5884410ebd --- /dev/null +++ b/Content.Shared/Psionics/Components/PsionicsRecordComponent.cs @@ -0,0 +1,19 @@ +using Content.Shared.StatusIcon; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.Psionics.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class PsionicsRecordComponent : Component +{ + /// + /// The icon that should be displayed based on the psionics status of the entity. + /// + [DataField, AutoNetworkedField] + public ProtoId StatusIcon = "PsionicsIconStatus"; +} diff --git a/Content.Shared/Psionics/Glimmer/GlimmerSystem.cs b/Content.Shared/Psionics/Glimmer/GlimmerSystem.cs index df7be34cc1..1945bae295 100644 --- a/Content.Shared/Psionics/Glimmer/GlimmerSystem.cs +++ b/Content.Shared/Psionics/Glimmer/GlimmerSystem.cs @@ -118,7 +118,7 @@ public void DeltaGlimmerInput(float delta) if (_enabled && delta != 0) { GlimmerInput += delta; - GlimmerOutput = 2000 / (1 + MathF.Pow(MathF.E, -.0022f * GlimmerInput)) - 1000; + GlimmerOutput = Math.Clamp(2000 / (1 + MathF.Pow(MathF.E, -.0022f * GlimmerInput)) - 1000, 0, 999.999999f); } } @@ -132,7 +132,7 @@ public void DeltaGlimmerOutput(float delta) if (_enabled && delta != 0) { GlimmerOutput += delta; - GlimmerInput = 2000 / (1 + MathF.Pow(MathF.E, -.0022f * GlimmerOutput)) - 1000; + GlimmerInput = Math.Max(2000 / (1 + MathF.Pow(MathF.E, -.0022f * GlimmerOutput)) - 1000, 0); } } diff --git a/Content.Shared/Psionics/PsionicComponent.cs b/Content.Shared/Psionics/PsionicComponent.cs index 58118dbd70..4543e2145f 100644 --- a/Content.Shared/Psionics/PsionicComponent.cs +++ b/Content.Shared/Psionics/PsionicComponent.cs @@ -7,35 +7,9 @@ namespace Content.Shared.Abilities.Psionics { - [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] + [RegisterComponent, NetworkedComponent] public sealed partial class PsionicComponent : Component { - /// - /// Current Mana. - /// - [DataField, AutoNetworkedField] - public float Mana = 50; - - /// - /// Max Mana Possible. - /// - [DataField, AutoNetworkedField] - public float MaxMana = 100; - - /// - /// How much energy is gained per second. - /// - [DataField] - public float ManaGain = 1; - - /// - /// ManaGain Multiplier - /// - [DataField] - public float ManaGainMultiplier = 1; - - public float ManaAccumulator; - [DataField] public bool BypassManaCheck; @@ -230,10 +204,6 @@ private set [DataField] public string AlreadyCasting = "already-casting"; - /// Popup to play if there no Mana left for a power to execute. - [DataField] - public string NoMana = "no-mana"; - /// /// The list of Familiars currently bound to this Psion. /// @@ -261,8 +231,5 @@ private set [DataField] public Dictionary AvailablePowers = new(); - - [DataField] - public ProtoId ManaAlert = "Mana"; } } diff --git a/Content.Shared/Psionics/PsionicEvents.cs b/Content.Shared/Psionics/PsionicEvents.cs index 4d13441798..60b695f14d 100644 --- a/Content.Shared/Psionics/PsionicEvents.cs +++ b/Content.Shared/Psionics/PsionicEvents.cs @@ -12,6 +12,3 @@ public record struct OnSetPsionicStatsEvent(float AmplificationChangedAmount, fl [ByRefEvent] public record struct OnMindbreakEvent(); - -[ByRefEvent] -public record struct OnManaUpdateEvent(); \ No newline at end of file diff --git a/Content.Shared/Psionics/PsionicsStatus.cs b/Content.Shared/Psionics/PsionicsStatus.cs new file mode 100644 index 0000000000..5953091576 --- /dev/null +++ b/Content.Shared/Psionics/PsionicsStatus.cs @@ -0,0 +1,21 @@ +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.Psionics; + +/// +/// Status used in Psionics Records. +/// +/// None - the default value +/// Suspected - the person is suspected of having psionics +/// Registered - the person is a registered psionics user +/// Abusing - the person has been caught abusing their psionics +/// +public enum PsionicsStatus : byte +{ + None, + Suspected, + Registered, + Abusing +} diff --git a/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs b/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs index 0df6616426..f6aa18b14b 100644 --- a/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs +++ b/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs @@ -25,10 +25,9 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnPowerUsed); - SubscribeLocalEvent(OnRejuvenate); } - public bool OnAttemptPowerUse(EntityUid uid, string power, float? manacost = null, bool checkInsulation = true) + public bool OnAttemptPowerUse(EntityUid uid, string power, bool checkInsulation = true) { if (!TryComp(uid, out var component) || HasComp(uid) @@ -48,24 +47,6 @@ public bool OnAttemptPowerUse(EntityUid uid, string power, float? manacost = nul return false; } - if (manacost is null) - return true; - - if (component.Mana >= manacost - || component.BypassManaCheck) - { - var newmana = component.Mana - manacost; - component.Mana = newmana ?? component.Mana; - - var ev = new OnManaUpdateEvent(); - RaiseLocalEvent(uid, ref ev); - } - else - { - _popups.PopupEntity(Loc.GetString(component.NoMana), uid, uid, PopupType.LargeCaution); - return false; - } - return true; } @@ -128,59 +109,14 @@ public float ModifiedDampening(EntityUid uid) /// Returns the CurrentDampening of a given Entity, multiplied by the result of that Entity's MoodContest. /// Lower mood means more Dampening, higher mood means less Dampening. /// - public float ModifiedDampening(EntityUid uid, PsionicComponent component) - { - return component.CurrentDampening / _contests.MoodContest(uid, true); - } - - public void OnRejuvenate(EntityUid uid, PsionicComponent component, RejuvenateEvent args) - { - component.Mana = component.MaxMana; - var ev = new OnManaUpdateEvent(); - RaiseLocalEvent(uid, ref ev); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var component)) - { - if (_mobState.IsDead(uid) - || HasComp(uid)) - continue; - - component.ManaAccumulator += frameTime; - - if (component.ManaAccumulator <= 1) - continue; - - component.ManaAccumulator -= 1; - - if (component.Mana > component.MaxMana) - component.Mana = component.MaxMana; - - if (component.Mana < 0) - component.Mana = 0; - - if (component.Mana < component.MaxMana) - { - var gainedmana = component.ManaGain * component.ManaGainMultiplier; - component.Mana += gainedmana; - FixedPoint2.Min(component.Mana, component.MaxMana); - - var ev = new OnManaUpdateEvent(); - RaiseLocalEvent(uid, ref ev); - } - } - } + public float ModifiedDampening(EntityUid uid, PsionicComponent component) => + component.CurrentDampening / _contests.MoodContest(uid, true); } public sealed class PsionicPowerUsedEvent : HandledEntityEventArgs { public EntityUid User { get; } - public string Power = string.Empty; + public string Power; public PsionicPowerUsedEvent(EntityUid user, string power) { diff --git a/Content.Shared/PsionicsRecords/Components/SharedPsionicsRecordsConsoleComponent.cs b/Content.Shared/PsionicsRecords/Components/SharedPsionicsRecordsConsoleComponent.cs new file mode 100644 index 0000000000..e8f38073fe --- /dev/null +++ b/Content.Shared/PsionicsRecords/Components/SharedPsionicsRecordsConsoleComponent.cs @@ -0,0 +1,49 @@ +using Content.Shared.PsionicsRecords.Systems; +using Content.Shared.Radio; +using Content.Shared.StationRecords; +using Robust.Shared.Prototypes; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.PsionicsRecords.Components; + +/// +/// A component for Psionics Records Console storing an active station record key and a currently applied filter +/// +[RegisterComponent] +[Access(typeof(SharedPsionicsRecordsConsoleSystem))] +public sealed partial class PsionicsRecordsConsoleComponent : Component +{ + /// + /// Currently active station record key. + /// There is no station parameter as the console uses the current station. + /// + /// + /// TODO: in the future this should be clientside instead of something players can fight over. + /// Client selects a record and tells the server the key it wants records for. + /// Server then sends a state with just the records, not the listing or filter, and the client updates just that. + /// I don't know if it's possible to have multiple bui states right now. + /// + [DataField] + public uint? ActiveKey; + + /// + /// Currently applied filter. + /// + [DataField] + public StationRecordsFilter? Filter; + + /// + /// Channel to send messages to when someone's status gets changed. + /// + [DataField] + public ProtoId RadioChannel = "Science"; + + /// + /// Max length of psionics listing strings. + /// + [DataField] + public uint MaxStringLength = 256; +} diff --git a/Content.Shared/PsionicsRecords/PsionicsRecord.cs b/Content.Shared/PsionicsRecords/PsionicsRecord.cs new file mode 100644 index 0000000000..fd68775e41 --- /dev/null +++ b/Content.Shared/PsionicsRecords/PsionicsRecord.cs @@ -0,0 +1,29 @@ +using Content.Shared.Psionics; +using Robust.Shared.Serialization; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.PsionicsRecords; + +/// +/// Psionics record for a crewmember. +/// Can be viewed and edited in a psionics records console by epistemics. +/// +[Serializable, NetSerializable, DataRecord] +public sealed record PsionicsRecord +{ + /// + /// Status of the person (None, Suspect, Registered, Abusing). + /// + [DataField] + public PsionicsStatus Status = PsionicsStatus.None; + + /// + /// When Status is Anything but none, the reason for it. + /// Should never be set otherwise. + /// + [DataField] + public string? Reason; +} diff --git a/Content.Shared/PsionicsRecords/PsionicsRecordsUi.cs b/Content.Shared/PsionicsRecords/PsionicsRecordsUi.cs new file mode 100644 index 0000000000..0e69f2bb6c --- /dev/null +++ b/Content.Shared/PsionicsRecords/PsionicsRecordsUi.cs @@ -0,0 +1,78 @@ +using Content.Shared.Psionics; +using Content.Shared.StationRecords; +using Robust.Shared.Serialization; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.PsionicsRecords; + +[Serializable, NetSerializable] +public enum PsionicsRecordsConsoleKey : byte +{ + Key +} + +/// +/// Psionics records console state. There are a few states: +/// - SelectedKey null, Record null, RecordListing null +/// - The station record database could not be accessed. +/// - SelectedKey null, Record null, RecordListing non-null +/// - Records are populated in the database, or at least the station has +/// the correct component. +/// - SelectedKey non-null, Record null, RecordListing non-null +/// - The selected key does not have a record tied to it. +/// - SelectedKey non-null, Record non-null, RecordListing non-null +/// - The selected key has a record tied to it, and the record has been sent. +/// +/// - there is added new filters and so added new states +/// -SelectedKey null, Record null, RecordListing null, filters non-null +/// the station may have data, but they all did not pass through the filters +/// +/// Other states are erroneous. +/// +[Serializable, NetSerializable] +public sealed class PsionicsRecordsConsoleState : BoundUserInterfaceState +{ + /// + /// Currently selected crewmember record key. + /// + public uint? SelectedKey = null; + + public PsionicsRecord? PsionicsRecord = null; + public GeneralStationRecord? StationRecord = null; + public readonly Dictionary? RecordListing; + public readonly StationRecordsFilter? Filter; + + public PsionicsRecordsConsoleState(Dictionary? recordListing, StationRecordsFilter? newFilter) + { + RecordListing = recordListing; + Filter = newFilter; + } + + /// + /// Default state for opening the console + /// + public PsionicsRecordsConsoleState() : this(null, null) + { + } + + public bool IsEmpty() => SelectedKey == null && StationRecord == null && PsionicsRecord == null && RecordListing == null; +} + +/// +/// Used to change status, respecting the psionics nullability rules in . +/// +[Serializable, NetSerializable] +public sealed class PsionicsRecordChangeStatus : BoundUserInterfaceMessage +{ + public readonly PsionicsStatus Status; + public readonly string? Reason; + + public PsionicsRecordChangeStatus(PsionicsStatus status, string? reason) + { + Status = status; + Reason = reason; + } +} diff --git a/Content.Shared/PsionicsRecords/Systems/SharedPsionicsRecordsConsoleSystem.cs b/Content.Shared/PsionicsRecords/Systems/SharedPsionicsRecordsConsoleSystem.cs new file mode 100644 index 0000000000..21867e65a0 --- /dev/null +++ b/Content.Shared/PsionicsRecords/Systems/SharedPsionicsRecordsConsoleSystem.cs @@ -0,0 +1,54 @@ +using Content.Shared.IdentityManagement; +using Content.Shared.IdentityManagement.Components; +using Content.Shared.Psionics; +using Content.Shared.Psionics.Components; + +/// +/// EVERYTHING HERE IS A MODIFIED VERSION OF CRIMINAL RECORDS +/// + +namespace Content.Shared.PsionicsRecords.Systems; + +public abstract class SharedPsionicsRecordsConsoleSystem : EntitySystem +{ + /// + /// Any entity that has the name of the record that was just changed as their visible name will get their icon + /// updated with the new status, if the record got removed their icon will be removed too. + /// + public void UpdatePsionicsIdentity(string name, PsionicsStatus status) + { + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var identity)) + { + if (!Identity.Name(uid, EntityManager).Equals(name)) + continue; + + if (status == PsionicsStatus.None) + RemComp(uid); + else + SetPsionicsIcon(name, status, uid); + } + } + + /// + /// Decides the icon that should be displayed on the entity based on the psionics status + /// + public void SetPsionicsIcon(string name, PsionicsStatus status, EntityUid characterUid) + { + EnsureComp(characterUid, out var record); + + var previousIcon = record.StatusIcon; + + record.StatusIcon = status switch + { + PsionicsStatus.Suspected => "PsionicsIconSuspected", + PsionicsStatus.Registered => "PsionicsIconRegistered", + PsionicsStatus.Abusing => "PsionicsIconAbusing", + _ => record.StatusIcon + }; + + if (previousIcon != record.StatusIcon) + Dirty(characterUid, record); + } +} diff --git a/Content.Shared/Roles/JobPrototype.cs b/Content.Shared/Roles/JobPrototype.cs index 5ea9da0224..54889a3c30 100644 --- a/Content.Shared/Roles/JobPrototype.cs +++ b/Content.Shared/Roles/JobPrototype.cs @@ -106,6 +106,12 @@ public sealed partial class JobPrototype : IPrototype [DataField] public ProtoId? NameDataset; + /// + /// A list of requirements that when satisfied, add or replace from the base starting gear. + /// + [DataField("conditionalStartingGear")] + public List? ConditionalStartingGears { get; private set; } + /// /// Use this to spawn in as a non-humanoid (borg, test subject, etc.) /// Starting gear will be ignored. @@ -120,6 +126,9 @@ public sealed partial class JobPrototype : IPrototype [DataField("special", serverOnly: true)] public JobSpecial[] Special { get; private set; } = Array.Empty(); + [DataField("afterLoadoutSpecial", serverOnly: true)] + public JobSpecial[] AfterLoadoutSpecial { get; private set; } = []; + [DataField("access")] public IReadOnlyCollection> Access { get; private set; } = Array.Empty>(); @@ -142,6 +151,25 @@ public sealed partial class JobPrototype : IPrototype public bool ApplyTraits = true; } + /// + /// Starting gear that will only be applied upon satisfying requirements. + /// + [DataDefinition] + public sealed partial class ConditionalStartingGear + { + /// + /// The requirements to check. + /// + [DataField(required: true)] + public List Requirements; + + /// + /// The starting gear to apply, replacing the equivalent slots. + /// + [DataField(required: true)] + public ProtoId Id { get; private set; } + } + /// /// Sorts s appropriately for display in the UI, /// respecting their . diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index 61ad7940d7..fca4849467 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -1,3 +1,4 @@ +using Content.Shared.Customization.Systems; using Content.Shared.Preferences; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; @@ -8,6 +9,7 @@ namespace Content.Shared.Roles; public sealed partial class StartingGearPrototype : IPrototype, IInheritingPrototype { [DataField] + [AlwaysPushInheritance] public Dictionary Equipment = new(); /// @@ -23,14 +25,32 @@ public sealed partial class StartingGearPrototype : IPrototype, IInheritingProto public EntProtoId? Duffelbag; [DataField] + [AlwaysPushInheritance] public List Inhand = new(0); /// /// Inserts entities into the specified slot's storage (if it does have storage). /// [DataField] + [AlwaysPushInheritance] public Dictionary> Storage = new(); + /// + /// The list of starting gears that overwrite the entries on this starting gear + /// if their requirements are satisfied. + /// + [DataField("subGear")] + [AlwaysPushInheritance] + public List> SubGears = new(); + + /// + /// The requirements of this starting gear. + /// Only used if this starting gear is a sub-gear of another starting gear. + /// + [DataField] + [AlwaysPushInheritance] + public List Requirements = new(); + [ViewVariables] [IdDataField] public string ID { get; private set; } = string.Empty; @@ -41,6 +61,7 @@ public sealed partial class StartingGearPrototype : IPrototype, IInheritingProto /// [AbstractDataField] + [NeverPushInheritance] public bool Abstract { get; } public string GetGear(string slot, HumanoidCharacterProfile? profile) diff --git a/Content.Shared/SelfExtinguisher/SelfExtinguisherComponent.cs b/Content.Shared/SelfExtinguisher/SelfExtinguisherComponent.cs new file mode 100644 index 0000000000..ef60622f32 --- /dev/null +++ b/Content.Shared/SelfExtinguisher/SelfExtinguisherComponent.cs @@ -0,0 +1,66 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.SelfExtinguisher; + +/// +/// When equipped, the SelfExtinguisherComponent will give an action to its wearer to self-extinguish when set on fire. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +public sealed partial class SelfExtinguisherComponent : Component +{ + /// + /// Action used to self-extinguish. + /// + [DataField, AutoNetworkedField] + public EntProtoId Action = "ActionSelfExtinguish"; + + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + + /// + /// Cooldown before the self-extinguisher can be used again. + /// + [DataField(required: true)] + public TimeSpan Cooldown; + + /// + /// Time before the self-extinguisher can be used again. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField, AutoPausedField] + public TimeSpan NextExtinguish = TimeSpan.Zero; + + /// + /// When failing self-extinguish attempts, + /// don't spam popups every frame and instead have a cooldown. + /// + [DataField] + public TimeSpan PopupCooldown = TimeSpan.FromSeconds(1); + + /// + /// Time before the next popup can be shown. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoPausedField] + public TimeSpan? NextPopup = null; + + /// + /// If true, requires the wearer to be immune to gas ignition. + /// + [DataField] + public bool RequiresIgniteFromGasImmune = false; + + /// + /// The sound effect that plays upon an extinguish. + /// + [DataField(required: true)] + public SoundSpecifier Sound { get; private set; } = default!; + + /// + /// The sound effect that plays upon getting refilled. + /// + [DataField] + public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/revolver_magin.ogg"); +} diff --git a/Content.Shared/SelfExtinguisher/SelfExtinguisherRefillComponent.cs b/Content.Shared/SelfExtinguisher/SelfExtinguisherRefillComponent.cs new file mode 100644 index 0000000000..30cea16e57 --- /dev/null +++ b/Content.Shared/SelfExtinguisher/SelfExtinguisherRefillComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.SelfExtinguisher; + +/// +/// Used to refill the charges of self-extinguishers. +/// +[RegisterComponent] +public sealed partial class SelfExtinguisherRefillComponent : Component +{ + // + // The amount of charges to refill. + // + [DataField(required: true)] + public int RefillAmount; +} diff --git a/Content.Shared/SelfExtinguisher/SharedSelfExtinguisherSystem.cs b/Content.Shared/SelfExtinguisher/SharedSelfExtinguisherSystem.cs new file mode 100644 index 0000000000..2aee19202a --- /dev/null +++ b/Content.Shared/SelfExtinguisher/SharedSelfExtinguisherSystem.cs @@ -0,0 +1,167 @@ +using Content.Shared.Actions; +using Content.Shared.Charges.Components; +using Content.Shared.Charges.Systems; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Shared.SelfExtinguisher; + +public abstract partial class SharedSelfExtinguisherSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedChargesSystem _charges = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + + SubscribeLocalEvent>>(GetRelayedVerbs); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent>(OnGetVerbs); + + SubscribeLocalEvent(OnInteractUsing); + + SubscribeLocalEvent(OnExamined); + } + + private void OnMapInit(EntityUid uid, SelfExtinguisherComponent component, MapInitEvent args) + { + if (!_actionContainer.EnsureAction(uid, ref component.ActionEntity, out _, component.Action)) + return; + + // The components SelfExtinguisherComponent and LimitedChargesComponent will be the source of truth + // regarding the cooldowns and charges, and the action component will just mirror any changes. + _actions.SetUseDelay(component.ActionEntity, component.Cooldown); + if (TryComp(uid, out var charges)) + { + _actions.SetCharges(component.ActionEntity, charges.Charges); + _actions.SetMaxCharges(component.ActionEntity, charges.MaxCharges); + } + } + + public void SetCharges(EntityUid uid, int? charges, int? maxCharges, SelfExtinguisherComponent? component = null) + { + if (!Resolve(uid, ref component) || + !TryComp(uid, out var chargeComp)) + return; + + _charges.SetCharges((uid, chargeComp), charges, maxCharges); + _actions.SetCharges(component.ActionEntity, chargeComp.Charges); + _actions.SetMaxCharges(component.ActionEntity, chargeComp.MaxCharges); + + _actions.SetEnabled(component.ActionEntity, chargeComp.Charges != 0); + } + + private void GetRelayedVerbs(EntityUid uid, SelfExtinguisherComponent component, InventoryRelayedEvent> args) + { + OnGetVerbs(uid, component, args.Args); + } + + private void OnGetVerbs(EntityUid uid, SelfExtinguisherComponent component, GetVerbsEvent args) + { + if (!_inventory.TryGetContainingSlot(uid, out var _)) + return; + + var verb = new EquipmentVerb() + { + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/extinguisher.svg.192dpi.png")), + Text = Loc.GetString("self-extinguisher-verb"), + EventTarget = uid, + ExecutionEventArgs = new SelfExtinguishEvent() { Performer = args.User } + }; + + args.Verbs.Add(verb); + } + + private void OnGetActions(EntityUid uid, SelfExtinguisherComponent component, GetItemActionsEvent args) + { + if (component.ActionEntity == null || args.InHands) + return; + + args.AddAction(component.ActionEntity.Value); + } + + private void OnInteractUsing(EntityUid uid, SelfExtinguisherComponent component, InteractUsingEvent args) + { + if (!TryComp(args.Used, out var refill) || + !TryComp(uid, out var charges)) + return; + + if (charges.Charges >= charges.MaxCharges) + { + if (!SetPopupCooldown((uid, component))) + return; + + _popup.PopupClient(Loc.GetString("self-extinguisher-refill-full"), args.User, args.User); + return; + } + + // Add charges + _charges.AddCharges(uid, refill.RefillAmount, charges); + _actions.SetCharges(component.ActionEntity, charges.Charges); + + // Reenable action + _actions.SetEnabled(component.ActionEntity, charges.Charges != 0); + + // Reset cooldown + _actions.ClearCooldown(component.ActionEntity); + component.NextExtinguish = TimeSpan.Zero; + + Dirty(uid, component); + + _popup.PopupClient(Loc.GetString("self-extinguisher-refill"), args.User, args.User); + _audio.PlayPredicted(component.RefillSound, uid, args.User); + + QueueDel(args.Used); + } + + private void OnExamined(EntityUid uid, SelfExtinguisherComponent component, ExaminedEvent args) + { + if (TryComp(uid, out var charges) && charges.Charges == 0) + return; + + var curTime = _timing.CurTime; + if (component.NextExtinguish > curTime) + { + args.PushMarkup(Loc.GetString("self-extinguisher-examine-cooldown-recharging", + ("cooldown", Math.Ceiling((component.NextExtinguish - curTime).TotalSeconds)))); + return; + } + + args.PushMarkup(Loc.GetString("self-extinguisher-examine-cooldown-ready")); + } + + // + // Returns: + // - true if a popup is ready to be shown. The popup cooldown is also set. + // - false if popups are still on cooldown + // + protected bool SetPopupCooldown(Entity ent, TimeSpan? curTime = null) + { + curTime ??= _timing.CurTime; + + if (curTime < ent.Comp.NextPopup) + return false; + + ent.Comp.NextPopup = curTime + ent.Comp.PopupCooldown; + return true; + } +} + +// +// Raised on an attempt to self-extinguish. +// +public sealed partial class SelfExtinguishEvent : InstantActionEvent { } diff --git a/Content.Shared/Shadowkin/EtherealComponent.cs b/Content.Shared/Shadowkin/EtherealComponent.cs index 264cc0f175..8d86a74176 100644 --- a/Content.Shared/Shadowkin/EtherealComponent.cs +++ b/Content.Shared/Shadowkin/EtherealComponent.cs @@ -30,14 +30,8 @@ public sealed partial class EtherealComponent : Component [DataField] public bool CanBeStunned = true; - /// Drain Mana if this entity is psionic? - [DataField] - public bool DrainMana = true; - public List DarkenedLights = new(); - public float OldManaGain; - public float DarkenAccumulator; public int OldMobMask; diff --git a/Content.Shared/Shadowkin/SharedEtherealSystem.cs b/Content.Shared/Shadowkin/SharedEtherealSystem.cs index 2365ade818..6d6dd3daa2 100644 --- a/Content.Shared/Shadowkin/SharedEtherealSystem.cs +++ b/Content.Shared/Shadowkin/SharedEtherealSystem.cs @@ -44,18 +44,10 @@ public override void Initialize() SubscribeLocalEvent(OnShootAttempt); SubscribeLocalEvent(OnMindbreak); SubscribeLocalEvent(OnMobStateChanged); - SubscribeLocalEvent(OnManaUpdate); } public virtual void OnStartup(EntityUid uid, EtherealComponent component, MapInitEvent args) { - if (TryComp(uid, out var magic) - && component.DrainMana) - { - component.OldManaGain = magic.ManaGain; - magic.ManaGain = -1; - } - if (!TryComp(uid, out var fixtures)) return; @@ -81,10 +73,6 @@ public virtual void OnStartup(EntityUid uid, EtherealComponent component, MapIni public virtual void OnShutdown(EntityUid uid, EtherealComponent component, ComponentShutdown args) { - if (TryComp(uid, out var magic) - && component.DrainMana) - magic.ManaGain = component.OldManaGain; - if (!TryComp(uid, out var fixtures)) return; @@ -98,22 +86,6 @@ public virtual void OnShutdown(EntityUid uid, EtherealComponent component, Compo _tag.AddTag(uid, "DoorBumpOpener"); } - private void OnManaUpdate(EntityUid uid, EtherealComponent component, ref OnManaUpdateEvent args) - { - if (!TryComp(uid, out var magic)) - return; - - if (magic.Mana <= 0) - { - if (TryComp(uid, out var stamina)) - _stamina.TakeStaminaDamage(uid, stamina.CritThreshold, stamina, uid); - - SpawnAtPosition("ShadowkinShadow", Transform(uid).Coordinates); - SpawnAtPosition("EffectFlashShadowkinDarkSwapOff", Transform(uid).Coordinates); - RemComp(uid, component); - } - } - private void OnMindbreak(EntityUid uid, EtherealComponent component, ref OnMindbreakEvent args) { SpawnAtPosition("ShadowkinShadow", Transform(uid).Coordinates); diff --git a/Content.Shared/Singularity/Components/EventHorizonComponent.cs b/Content.Shared/Singularity/Components/EventHorizonComponent.cs index 106d790ccb..22c80cce6a 100644 --- a/Content.Shared/Singularity/Components/EventHorizonComponent.cs +++ b/Content.Shared/Singularity/Components/EventHorizonComponent.cs @@ -81,5 +81,11 @@ public sealed partial class EventHorizonComponent : Component [AutoPausedField] public TimeSpan NextConsumeWaveTime; + /// + /// Whether to inherit the momentum of consumed objects. + /// + [DataField] + public bool InheritMomentum; + #endregion Update Timing } diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index c433cc1d4f..9af87376b0 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -1,13 +1,18 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Dataset; +using Content.Shared.Customization.Systems; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; +using Content.Shared.Humanoid; using Content.Shared.Inventory; +using Content.Shared.Preferences; using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Content.Shared.Storage; using Content.Shared.Storage.EntitySystems; using Robust.Shared.Collections; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -23,6 +28,8 @@ public abstract class SharedStationSpawningSystem : EntitySystem [Dependency] private readonly SharedStorageSystem _storage = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly CharacterRequirementsSystem _characterRequirements = default!; private EntityQuery _handsQuery; private EntityQuery _inventoryQuery; @@ -78,6 +85,10 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG if (startingGear == null) return; + if (GetProfile(entity, out var profile)) + // Equip any sub-gears of this starting gear. + startingGear = ApplySubGear(startingGear, profile); + var xform = _xformQuery.GetComponent(entity); if (InventorySystem.TryGetSlots(entity, out var slotDefinitions)) @@ -143,4 +154,108 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG RaiseLocalEvent(entity, ref ev); } } + + public bool GetProfile(EntityUid? uid, [NotNullWhen(true)] out HumanoidCharacterProfile? profile) + { + if (!TryComp(uid, out HumanoidAppearanceComponent? appearance)) + { + profile = null; + return false; + } + + if (appearance.LastProfileLoaded is { } lastProfileLoaded) + { + profile = lastProfileLoaded; + return true; + } + + profile = HumanoidCharacterProfile.DefaultWithSpecies(appearance.Species); + return true; + } + + // + // Apply a starting gear's sub-gears to itself, returning a new starting gear prototype with + // replaced equipment. + // + public StartingGearPrototype ApplySubGear(StartingGearPrototype startingGear, HumanoidCharacterProfile profile, JobPrototype? job = null) + { + if (startingGear.SubGears.Count == 0) + return startingGear; + + // Job can be null for cases like ghost roles' starting gear which do not have a job definition. + job ??= new JobPrototype(); + + var newStartingGear = startingGear; + var foundConditionalMatch = false; + + foreach (var subGear in startingGear.SubGears) + { + if (!PrototypeManager.TryIndex(subGear.Id, out var subGearProto) || + !_characterRequirements.CheckRequirementsValid( + subGearProto.Requirements, job, profile, new Dictionary(), false, job, + EntityManager, PrototypeManager, _configurationManager, + out _)) + continue; + + // Apply the sub-gear's sub-gears if there are any + subGearProto = ApplySubGear(subGearProto, profile, job); + + if (!foundConditionalMatch) + { + foundConditionalMatch = true; + // Lazy init on making a new starting gear prototype for performance reasons. + // We can't just modify the original prototype or it will be modified for everyone. + newStartingGear = new StartingGearPrototype() + { + Equipment = startingGear.Equipment.ToDictionary(static entry => entry.Key, static entry => entry.Value), + InnerClothingSkirt = startingGear.InnerClothingSkirt, + Satchel = startingGear.Satchel, + Duffelbag = startingGear.Duffelbag, + Inhand = new List(startingGear.Inhand), + Storage = startingGear.Storage.ToDictionary( + static entry => entry.Key, + static entry => new List(entry.Value) + ), + }; + } + + // Apply the sub-gear's equipment to this starting gear + if (subGearProto.InnerClothingSkirt != null) + newStartingGear.InnerClothingSkirt = subGearProto.InnerClothingSkirt; + + if (subGearProto.Satchel != null) + newStartingGear.Satchel = subGearProto.Satchel; + + if (subGearProto.Duffelbag != null) + newStartingGear.Duffelbag = subGearProto.Duffelbag; + + foreach (var (slot, entProtoId) in subGearProto.Equipment) + { + // Don't remove items in pockets, instead put them in the backpack or hands + if (slot == "pocket1" && newStartingGear.Equipment.TryGetValue("pocket1", out var pocket1) || + slot == "pocket2" && newStartingGear.Equipment.TryGetValue("pocket2", out var pocket2)) + { + var pocketProtoId = slot == "pocket1" ? pocket1 : pocket2; + + if (string.IsNullOrEmpty(newStartingGear.GetGear("back", null))) + newStartingGear.Inhand.Add(pocketProtoId); + else + { + if (!newStartingGear.Storage.ContainsKey("back")) + newStartingGear.Storage["back"] = new(); + newStartingGear.Storage["back"].Add(pocketProtoId); + } + } + + newStartingGear.Equipment[slot] = entProtoId; + } + + newStartingGear.Inhand.AddRange(subGearProto.Inhand); + + foreach (var (slot, entProtoIds) in subGearProto.Storage) + newStartingGear.Storage[slot].AddRange(entProtoIds); + } + + return newStartingGear; + } } diff --git a/Content.Shared/StatusIcon/StatusIconPrototype.cs b/Content.Shared/StatusIcon/StatusIconPrototype.cs index 689bec3882..a9ec1f7098 100644 --- a/Content.Shared/StatusIcon/StatusIconPrototype.cs +++ b/Content.Shared/StatusIcon/StatusIconPrototype.cs @@ -163,6 +163,22 @@ public sealed partial class SecurityIconPrototype : StatusIconPrototype, IInheri public bool Abstract { get; } } +/// +/// StatusIcons for showing the psionics status on the epi HUD +/// +[Prototype] +public sealed partial class PsionicsIconPrototype : StatusIconPrototype, IInheritingPrototype +{ + /// + [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] + public string[]? Parents { get; } + + /// + [NeverPushInheritance] + [AbstractDataField] + public bool Abstract { get; } +} + /// /// StatusIcons for faction membership /// diff --git a/Content.Shared/Strip/Components/StripMenuHiddenComponent.cs b/Content.Shared/Strip/Components/StripMenuHiddenComponent.cs new file mode 100644 index 0000000000..d13b8bdc7a --- /dev/null +++ b/Content.Shared/Strip/Components/StripMenuHiddenComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Strip.Components; + +/// +/// An item with this component is always hidden in the strip menu, regardless of other circumstances. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class StripMenuHiddenComponent : Component; diff --git a/Content.Shared/Temperature/Components/TemperatureSpeedComponent.cs b/Content.Shared/Temperature/Components/TemperatureSpeedComponent.cs new file mode 100644 index 0000000000..74ba2a0274 --- /dev/null +++ b/Content.Shared/Temperature/Components/TemperatureSpeedComponent.cs @@ -0,0 +1,30 @@ +using Content.Shared.Temperature.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Temperature.Components; + +/// +/// This is used for an entity that varies in speed based on current temperature. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedTemperatureSystem)), AutoGenerateComponentState, AutoGenerateComponentPause] +public sealed partial class TemperatureSpeedComponent : Component +{ + /// + /// Pairs of temperature thresholds to applied slowdown values. + /// + [DataField] + public Dictionary Thresholds = new(); + + /// + /// The current speed modifier from we reached. + /// Stored and networked so that the client doesn't mispredict temperature + /// + [DataField, AutoNetworkedField] + public float? CurrentSpeedModifier; + + /// + /// The time at which the temperature slowdown is updated. + /// + [DataField, AutoNetworkedField, AutoPausedField] + public TimeSpan? NextSlowdownUpdate; +} diff --git a/Content.Shared/Temperature/Systems/SharedTemperatureSystem.cs b/Content.Shared/Temperature/Systems/SharedTemperatureSystem.cs new file mode 100644 index 0000000000..efea2df5af --- /dev/null +++ b/Content.Shared/Temperature/Systems/SharedTemperatureSystem.cs @@ -0,0 +1,80 @@ +using System.Linq; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Temperature.Components; +using Robust.Shared.Timing; + +namespace Content.Shared.Temperature.Systems; + +/// +/// This handles predicting temperature based speedup. +/// +public sealed class SharedTemperatureSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + + /// + /// Band-aid for unpredicted atmos. Delays the application for a short period so that laggy clients can get the replicated temperature. + /// + private static readonly TimeSpan SlowdownApplicationDelay = TimeSpan.FromSeconds(1f); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTemperatureChanged); + SubscribeLocalEvent(OnRefreshMovementSpeedModifiers); + } + + private void OnTemperatureChanged(Entity ent, ref OnTemperatureChangeEvent args) + { + foreach (var (threshold, modifier) in ent.Comp.Thresholds) + { + if (args.CurrentTemperature < threshold && args.LastTemperature > threshold || + args.CurrentTemperature > threshold && args.LastTemperature < threshold) + { + ent.Comp.NextSlowdownUpdate = _timing.CurTime + SlowdownApplicationDelay; + ent.Comp.CurrentSpeedModifier = modifier; + Dirty(ent); + break; + } + } + + var maxThreshold = ent.Comp.Thresholds.Max(p => p.Key); + if (args.CurrentTemperature > maxThreshold && args.LastTemperature < maxThreshold) + { + ent.Comp.NextSlowdownUpdate = _timing.CurTime + SlowdownApplicationDelay; + ent.Comp.CurrentSpeedModifier = null; + Dirty(ent); + } + } + + private void OnRefreshMovementSpeedModifiers(Entity ent, ref RefreshMovementSpeedModifiersEvent args) + { + // Don't update speed and mispredict while we're compensating for lag. + if (ent.Comp.NextSlowdownUpdate != null || ent.Comp.CurrentSpeedModifier == null) + return; + + args.ModifySpeed(ent.Comp.CurrentSpeedModifier.Value, ent.Comp.CurrentSpeedModifier.Value); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var temp, out var movement)) + { + if (temp.NextSlowdownUpdate == null) + continue; + + if (_timing.CurTime < temp.NextSlowdownUpdate) + continue; + + temp.NextSlowdownUpdate = null; + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid, movement); + Dirty(uid, temp); + } + } +} diff --git a/Content.Shared/Temperature/TemperatureEvents.cs b/Content.Shared/Temperature/TemperatureEvents.cs index ac12224868..7a26d07e30 100644 --- a/Content.Shared/Temperature/TemperatureEvents.cs +++ b/Content.Shared/Temperature/TemperatureEvents.cs @@ -13,3 +13,18 @@ public ModifyChangedTemperatureEvent(float temperature) TemperatureDelta = temperature; } } + +public sealed class OnTemperatureChangeEvent : EntityEventArgs +{ + public readonly float CurrentTemperature; + public readonly float LastTemperature; + public readonly float TemperatureDelta; + + public OnTemperatureChangeEvent(float current, float last, float delta) + { + CurrentTemperature = current; + LastTemperature = last; + TemperatureDelta = delta; + } +} + diff --git a/Content.Shared/Thief/Prototypes/ThiefBackpackSetPrototype.cs b/Content.Shared/Thief/Prototypes/ThiefBackpackSetPrototype.cs index 571db09ebe..8f87633eb6 100644 --- a/Content.Shared/Thief/Prototypes/ThiefBackpackSetPrototype.cs +++ b/Content.Shared/Thief/Prototypes/ThiefBackpackSetPrototype.cs @@ -1,3 +1,4 @@ +using Content.Shared.Customization.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -13,6 +14,7 @@ public sealed partial class ThiefBackpackSetPrototype : IPrototype [DataField] public string Name { get; private set; } = string.Empty; [DataField] public string Description { get; private set; } = string.Empty; [DataField] public SpriteSpecifier Sprite { get; private set; } = SpriteSpecifier.Invalid; + [DataField] public List Requirements { get; private set; } = []; [DataField] public List Content = new(); } diff --git a/Content.Shared/Verbs/VerbCategory.cs b/Content.Shared/Verbs/VerbCategory.cs index 38ec881a7c..be35479a36 100644 --- a/Content.Shared/Verbs/VerbCategory.cs +++ b/Content.Shared/Verbs/VerbCategory.cs @@ -100,6 +100,8 @@ public VerbCategory(string text, SpriteSpecifier? sprite, bool iconsOnly = false public static readonly VerbCategory SelectType = new("verb-categories-select-type"); + public static readonly VerbCategory SelectFaction = new("verb-categories-select-faction"); + public static readonly VerbCategory PowerLevel = new("verb-categories-power-level"); public static readonly VerbCategory Interaction = new("verb-categories-interaction"); diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index e25328ada6..c393d2f687 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -220,6 +220,10 @@ public sealed partial class MeleeWeaponComponent : Component /// [DataField, AutoNetworkedField] public bool MustBeEquippedToUse = false; + + // Goobstation + [DataField, AutoNetworkedField] + public bool CanWideSwing = true; } /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 99db6a5f70..4e59ff32fe 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -53,16 +53,6 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem private const int AttackMask = (int) (CollisionGroup.MobMask | CollisionGroup.Opaque); - /// - /// Maximum amount of targets allowed for a wide-attack. - /// - public const int MaxTargets = 5; - - /// - /// If an attack is released within this buffer it's assumed to be full damage. - /// - public const float GracePeriod = 0.05f; - public override void Initialize() { base.Initialize(); @@ -105,7 +95,7 @@ private void OnMeleeSelected(EntityUid uid, MeleeWeaponComponent component, Hand // If someone swaps to this weapon then reset its cd. var curTime = Timing.CurTime; - var minimum = curTime + TimeSpan.FromSeconds(GetAttackRate(uid, args.User, component)); + var minimum = curTime + TimeSpan.FromSeconds(attackRate); if (minimum < component.NextAttack) return; @@ -174,7 +164,8 @@ private void OnHeavyAttack(HeavyAttackEvent msg, EntitySessionEventArgs args) return; if (!TryGetWeapon(user, out var weaponUid, out var weapon) || - weaponUid != GetEntity(msg.Weapon)) + weaponUid != GetEntity(msg.Weapon) || + !weapon.CanWideSwing) // Goobstation Change { return; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 37e6451f92..d391b138b3 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -11,6 +11,8 @@ using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Hands.Components; +using Content.Shared.Item; +using Content.Shared.Mech.Components; // Goobstation using Content.Shared.Popups; using Content.Shared.Projectiles; using Content.Shared.Tag; @@ -128,11 +130,15 @@ private void OnShootRequest(RequestShootEvent msg, EntitySessionEventArgs args) var user = args.SenderSession.AttachedEntity; if (user == null || - !_combatMode.IsInCombatMode(user) || - !TryGetGun(user.Value, out var ent, out var gun)) - { + !_combatMode.IsInCombatMode(user)) + return; + + if (TryComp(user.Value, out var mechPilot)) + user = mechPilot.Mech; + + if (!TryGetGun(user.Value, out var ent, out var gun) || + HasComp(user)) return; - } if (ent != GetEntity(msg.Gun)) return; @@ -146,14 +152,18 @@ private void OnStopShootRequest(RequestStopShootEvent ev, EntitySessionEventArgs { var gunUid = GetEntity(ev.Gun); - if (args.SenderSession.AttachedEntity == null || - !TryComp(gunUid, out var gun) || - !TryGetGun(args.SenderSession.AttachedEntity.Value, out _, out var userGun)) - { + var user = args.SenderSession.AttachedEntity; + + if (user == null) + return; + + if (TryComp(user.Value, out var mechPilot)) + user = mechPilot.Mech; + + if (!TryGetGun(user.Value, out var ent, out var gun)) return; - } - if (userGun != gun) + if (ent != gunUid) return; StopShooting(gunUid, gun); @@ -172,6 +182,15 @@ public bool TryGetGun(EntityUid entity, out EntityUid gunEntity, [NotNullWhen(tr gunEntity = default; gunComp = null; + if (TryComp(entity, out var mech) && + mech.CurrentSelectedEquipment.HasValue && + TryComp(mech.CurrentSelectedEquipment.Value, out var mechGun)) + { + gunEntity = mech.CurrentSelectedEquipment.Value; + gunComp = mechGun; + return true; + } + if (EntityManager.TryGetComponent(entity, out HandsComponent? hands) && hands.ActiveHandEntity is { } held && TryComp(held, out GunComponent? gun)) diff --git a/Content.Shared/_Arcadis/Computer/ComputerDiskComponent.cs b/Content.Shared/_Arcadis/Computer/ComputerDiskComponent.cs index 5813c0342a..c170349253 100644 --- a/Content.Shared/_Arcadis/Computer/ComputerDiskComponent.cs +++ b/Content.Shared/_Arcadis/Computer/ComputerDiskComponent.cs @@ -7,17 +7,20 @@ namespace Content.Shared._Arcadis.Computer; /// /// Main component for the ComputerDisk system /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] //[Access(typeof(ComputerDiskSystem))] public sealed partial class ComputerDiskComponent : Component { /// /// The prototype of the computer that will be used /// - [DataField] + [DataField, AutoNetworkedField] public EntProtoId ProgramPrototype; + + [AutoNetworkedField] + public EntityUid? ProgramPrototypeEntity; - [DataField] + [DataField, AutoNetworkedField] public bool PersistState; } diff --git a/Content.Shared/_Arcadis/Computer/ComputerDiskSystem.cs b/Content.Shared/_Arcadis/Computer/ComputerDiskSystem.cs new file mode 100644 index 0000000000..c740029679 --- /dev/null +++ b/Content.Shared/_Arcadis/Computer/ComputerDiskSystem.cs @@ -0,0 +1,47 @@ +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Coordinates; +using Robust.Shared.Audio; +using Content.Shared.Audio; +using Robust.Shared.Network; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Audio.Systems; +using Content.Shared.Popups; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Robust.Shared.Timing; + +namespace Content.Shared._Arcadis.Computer; + +public sealed class ComputerDiskSystem : EntitySystem +{ + public string BlankDiskPrototype = "UnburnedDiskPrototype"; + + [Dependency] private readonly IPrototypeManager _protoMan = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + } + + private void OnExamined(EntityUid uid, ComputerDiskComponent component, ExaminedEvent args) + { + if (component.ProgramPrototype == BlankDiskPrototype) + args.PushMarkup(Loc.GetString("program-disk-no-program")); + else + { + if (!_protoMan.TryIndex(component.ProgramPrototype, out EntityPrototype? prototype)) + args.PushMarkup(Loc.GetString("program-disk-error")); + else + args.PushMarkup(Loc.GetString("program-disk-has-program", ("program", prototype.Name))); + } + } +} diff --git a/Content.Shared/_Arcadis/Computer/DiskBurnerComponent.cs b/Content.Shared/_Arcadis/Computer/DiskBurnerComponent.cs new file mode 100644 index 0000000000..3aa645d6f4 --- /dev/null +++ b/Content.Shared/_Arcadis/Computer/DiskBurnerComponent.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared._Arcadis.Computer; + +/// +/// Component responsible for handling DiskBurner behaviour +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class DiskBurnerComponent : Component { + + [DataField] + public string DiskSlot = "diskSlot"; + + [DataField] + public string BoardSlot = "boardSlot"; + + [DataField] + public string VerbName = "Burn Disk"; +} diff --git a/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs b/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs new file mode 100644 index 0000000000..4c368186ef --- /dev/null +++ b/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs @@ -0,0 +1,117 @@ +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Coordinates; +using Robust.Shared.Audio; +using Content.Shared.Audio; +using Robust.Shared.Network; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Audio.Systems; +using Content.Shared.Popups; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Robust.Shared.Timing; +using Content.Shared.Construction.Components; +using Content.Shared.Verbs; +using Robust.Shared.Utility; + +namespace Content.Shared._Arcadis.Computer; + +public sealed class DiskBurnerSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _protoMan = default!; + + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(GetVerb); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + } + + private void GetVerb(EntityUid uid, DiskBurnerComponent component, GetVerbsEvent args) + { + args.Verbs.Add(new Verb + { + Act = () => BurnDisk(args.User, uid, component), + Text = Loc.GetString(component.VerbName), + // TODO VERB ICON find a better icon + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/settings.svg.192dpi.png")), + }); + } + + private void BurnDisk(EntityUid user, EntityUid entity, DiskBurnerComponent component) + { + if (!TryComp(entity, out ItemSlotsComponent? slots) + || !_itemSlots.TryGetSlot(entity, component.DiskSlot, out var diskSlot) + || !_itemSlots.TryGetSlot(entity, component.BoardSlot, out var boardSlot) + || diskSlot.Item is null + || boardSlot.Item is null + || !TryComp(boardSlot.Item.Value, out ComputerBoardComponent? boardComp) + || boardComp.ModularComputerProgramPrototype is null + || !TryComp(diskSlot.Item.Value, out ComputerDiskComponent? diskComp)) + { + _popupSystem.PopupPredicted(Loc.GetString("disk-burner-activate-not-ready"), entity, user); + return; + } + + diskComp.ProgramPrototype = boardComp.ModularComputerProgramPrototype.Value; + _popupSystem.PopupPredicted(Loc.GetString("disk-burner-activate-finished"), entity, user); + + } + + private void OnExamined(EntityUid uid, DiskBurnerComponent component, ExaminedEvent args) + { + if (!TryComp(uid, out ItemSlotsComponent? slots) + || !_itemSlots.TryGetSlot(uid, component.DiskSlot, out var diskSlot) + || !_itemSlots.TryGetSlot(uid, component.BoardSlot, out var boardSlot)) + { + args.PushMarkup(Loc.GetString("disk-burner-admemes-fail")); + return; + } + + if (diskSlot.Item is null || boardSlot.Item is null) + { + var missing = new List(); + + if (diskSlot.Item is null) + missing.Add("disk"); + + if (boardSlot.Item is null) + missing.Add("board"); + + args.PushMarkup(Loc.GetString("disk-burner-missing", ("missing", string.Join(", or ", missing)))); + return; + } + + if (!TryComp(diskSlot.Item.Value, out ComputerDiskComponent? diskComp)) + { + args.PushMarkup(Loc.GetString("disk-burner-bad-disk")); + return; + } + + if (!TryComp(boardSlot.Item.Value, out ComputerBoardComponent? boardComp)) + { + args.PushMarkup(Loc.GetString("disk-burner-incompatible-board")); + return; + } + + if (boardComp.ModularComputerProgramPrototype is null) + { + args.PushMarkup(Loc.GetString("disk-burner-incompatible-board")); + return; + } + + args.PushMarkup(Loc.GetString("disk-burner-ready")); + + } +} diff --git a/Content.Shared/_Arcadis/Computer/ModularComputerComponent.cs b/Content.Shared/_Arcadis/Computer/ModularComputerComponent.cs index de4fe5f2d2..3b552585ba 100644 --- a/Content.Shared/_Arcadis/Computer/ModularComputerComponent.cs +++ b/Content.Shared/_Arcadis/Computer/ModularComputerComponent.cs @@ -17,4 +17,8 @@ public sealed partial class ModularComputerComponent : Component [DataField] public SoundSpecifier? DiskInsertSound = new SoundPathSpecifier("/Audio/_Arcadis/computer_startup.ogg"); + + [DataField] + + public bool RequiresPower = true; } diff --git a/Content.Shared/_Arcadis/Computer/ModularComputerSystem.cs b/Content.Shared/_Arcadis/Computer/ModularComputerSystem.cs index 7a6d7742d1..eb4f2d27fe 100644 --- a/Content.Shared/_Arcadis/Computer/ModularComputerSystem.cs +++ b/Content.Shared/_Arcadis/Computer/ModularComputerSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Examine; using Content.Shared.Interaction; using Robust.Shared.Timing; +using Content.Shared.Power.EntitySystems; namespace Content.Shared._Arcadis.Computer; @@ -28,6 +29,8 @@ public sealed class ModularComputerSystem : EntitySystem [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly SharedPowerReceiverSystem _power = default!; + public string BlankDiskPrototype = "UnburnedDiskPrototype"; public override void Initialize() { @@ -49,6 +52,9 @@ private void OnExamined(EntityUid uid, ModularComputerComponent component, Exami || !_itemSlots.TryGetSlot(uid, component.DiskSlot, out var diskSlot, slots)) return; + if (component.RequiresPower && _power.IsPowered(uid) == false) + return; + if (diskSlot.Item == null || !TryComp(diskSlot.Item, out ComputerDiskComponent? diskComp)) { args.PushMarkup(Loc.GetString("modular-computer-examine-no-disk")); @@ -70,6 +76,12 @@ private void OnActivate(EntityUid uid, ModularComputerComponent component, Activ || !_itemSlots.TryGetSlot(uid, component.DiskSlot, out var diskSlot, slots)) return; + if (component.RequiresPower && _power.IsPowered(uid) == false) + { + _popupSystem.PopupPredicted(Loc.GetString("modular-computer-no-power"), uid, args.User); + return; + } + if (diskSlot.Item == null || !TryComp(diskSlot.Item, out ComputerDiskComponent? diskComp)) { _popupSystem.PopupPredicted(Loc.GetString("modular-computer-no-program"), uid, args.User); @@ -82,7 +94,8 @@ private void OnActivate(EntityUid uid, ModularComputerComponent component, Activ return; } - if (_gameTiming.IsFirstTimePredicted || _netMan.IsServer) { + if (_netMan.IsServer) // Has to run only on server or mispredict opens 2 seperate UIs. Very bad. + { var activateMsg = new ActivateInWorldEvent(args.User, diskComp.ProgramPrototypeEntity.Value, true); RaiseLocalEvent(diskComp.ProgramPrototypeEntity.Value, activateMsg); } diff --git a/Content.Shared/_DV/Actions/Events/ChitziteActionEvent.cs b/Content.Shared/_DV/Actions/Events/ChitziteActionEvent.cs new file mode 100644 index 0000000000..a36bd148d6 --- /dev/null +++ b/Content.Shared/_DV/Actions/Events/ChitziteActionEvent.cs @@ -0,0 +1,3 @@ +namespace Content.Shared.Actions.Events; + +public sealed partial class ChitziteActionEvent : InstantActionEvent {} diff --git a/Content.Shared/_EstacaoPirata/Cards/Card/CardComponent.cs b/Content.Shared/_EstacaoPirata/Cards/Card/CardComponent.cs new file mode 100644 index 0000000000..6ccf7f5b21 --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Card/CardComponent.cs @@ -0,0 +1,44 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared._EstacaoPirata.Cards.Card; + +/// +/// This is used for... +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class CardComponent : Component +{ + /// + /// The back of the card + /// + [DataField(readOnly: true)] + public List BackSprite = []; + + /// + /// The front of the card + /// + [DataField(readOnly: true)] + public List FrontSprite = []; + + /// + /// If it is currently flipped. This is used to update sprite and name. + /// + [DataField(readOnly: true), AutoNetworkedField] + public bool Flipped = false; + + + /// + /// The name of the card. + /// + [DataField(readOnly: true), AutoNetworkedField] + public string Name = ""; + +} + +[Serializable, NetSerializable] +public sealed class CardFlipUpdatedEvent(NetEntity card) : EntityEventArgs +{ + public NetEntity Card = card; +} diff --git a/Content.Shared/_EstacaoPirata/Cards/Card/CardSystem.cs b/Content.Shared/_EstacaoPirata/Cards/Card/CardSystem.cs new file mode 100644 index 0000000000..68766eda2a --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Card/CardSystem.cs @@ -0,0 +1,223 @@ +using Content.Shared._EstacaoPirata.Cards.Deck; +using Content.Shared._EstacaoPirata.Cards.Hand; +using Content.Shared._EstacaoPirata.Cards.Stack; +using Content.Shared.Examine; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Verbs; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared._EstacaoPirata.Cards.Card; + +/// +/// This handles... +/// +public sealed class CardSystem : EntitySystem +{ + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly CardStackSystem _cardStack = default!; + [Dependency] private readonly CardDeckSystem _cardDeck = default!; + [Dependency] private readonly CardHandSystem _cardHand = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + /// + public override void Initialize() + { + SubscribeLocalEvent>(AddTurnOnVerb); + SubscribeLocalEvent>(OnActivationVerb); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnUse); + SubscribeLocalEvent(OnActivate); + } + private void OnExamined(EntityUid uid, CardComponent component, ExaminedEvent args) + { + if (args.IsInDetailsRange && !component.Flipped) + { + args.PushMarkup(Loc.GetString("card-examined", ("target", Loc.GetString(component.Name)))); + } + } + + private void AddTurnOnVerb(EntityUid uid, CardComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + args.Verbs.Add(new AlternativeVerb() + { + Act = () => FlipCard(uid, component), + Text = Loc.GetString("cards-verb-flip"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/flip.svg.192dpi.png")), + Priority = 1 + }); + + if (args.Using == null || args.Using == args.Target) + return; + + if (TryComp(args.Using, out var usingStack)) + { + args.Verbs.Add(new AlternativeVerb() + { + Act = () => JoinCards(args.User, args.Target, component, (EntityUid)args.Using, usingStack), + Text = Loc.GetString("card-verb-join"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/refresh.svg.192dpi.png")), + Priority = 2 + }); + } + else if (TryComp(args.Using, out var usingCard)) + { + var pickup = _hands.IsHolding(args.User, args.Target); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => _cardHand.TrySetupHandOfCards(args.User, args.Target, component, args.Using.Value, usingCard, pickup), + Text = Loc.GetString("card-verb-join"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/refresh.svg.192dpi.png")), + Priority = 2 + }); + } + } + + private void OnUse(EntityUid uid, CardComponent comp, UseInHandEvent args) + { + if (args.Handled) + return; + + FlipCard(uid, comp); + args.Handled = true; + } + + /// + /// Server-Side only method to flip card. This starts CardFlipUpdatedEvent event + /// + /// + /// + private void FlipCard(EntityUid uid, CardComponent component) + { + if (_net.IsClient) + return; + component.Flipped = !component.Flipped; + Dirty(uid, component); + RaiseNetworkEvent(new CardFlipUpdatedEvent(GetNetEntity(uid))); + } + + private void JoinCards(EntityUid user, EntityUid first, CardComponent firstComp, EntityUid second, CardStackComponent secondStack) + { + if (_net.IsClient) + return; + bool pickup = _hands.IsHolding(user, first); + EntityUid cardStack; + bool? flip = null; + if (HasComp(second)) + { + cardStack = SpawnInSameParent(_cardDeck.CardDeckBaseName, first); + } + else if (HasComp(second)) + { + cardStack = SpawnInSameParent(_cardHand.CardHandBaseName, first); + if(TryComp(cardStack, out var stackHand)) + stackHand.Flipped = firstComp.Flipped; + flip = firstComp.Flipped; + } + else + return; + + if (!TryComp(cardStack, out CardStackComponent? stack)) + return; + if (!_cardStack.TryInsertCard(cardStack, first, stack)) + return; + _cardStack.TransferNLastCardFromStacks(user, secondStack.Cards.Count, second, secondStack, cardStack, stack); + if (flip != null) + _cardStack.FlipAllCards(cardStack, stack, flip); //??? + if(pickup) + _hands.TryPickupAnyHand(user, cardStack); + } + + // Frontier: tries to spawn an entity with the same parent as another given entity. + // Useful when spawning decks/hands in a backpack, for example. + private EntityUid SpawnInSameParent(EntProtoId prototype, EntityUid uid) + { + if (_container.IsEntityOrParentInContainer(uid) && + _container.TryGetOuterContainer(uid, Transform(uid), out var container)) + { + return SpawnInContainerOrDrop(prototype, container.Owner, container.ID); + } + return Spawn(prototype, Transform(uid).Coordinates); + } + + // Frontier: hacky misuse of the activation verb, but allows us a separate way to draw cards without needing additional buttons and event fiddling + private void OnActivationVerb(EntityUid uid, CardComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (args.Using == args.Target) + return; + + if (HasComp(uid)) + return; + + if (args.Using == null) + { + args.Verbs.Add(new ActivationVerb() + { + Act = () => _hands.TryPickupAnyHand(args.User, args.Target), + Text = Loc.GetString("cards-verb-draw"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Priority = 16 + }); + } + else if (TryComp(args.Using, out var cardStack)) + { + args.Verbs.Add(new ActivationVerb() + { + Act = () => _cardStack.InsertCardOnStack(args.User, args.Using.Value, cardStack, args.Target), + Text = Loc.GetString("cards-verb-draw"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Priority = 16 + }); + } + else if (TryComp(args.Using, out var card)) + { + args.Verbs.Add(new ActivationVerb() + { + Act = () => _cardHand.TrySetupHandOfCards(args.User, args.Using.Value, card, args.Target, component, true), + Text = Loc.GetString("cards-verb-draw"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Priority = 16 + }); + } + } + // End Frontier + + private void OnActivate(EntityUid uid, CardComponent component, ActivateInWorldEvent args) + { + if (!args.Complex || args.Handled) + return; + + if (!TryComp(args.User, out var hands)) + return; + + // Card stacks are handled differently + if (HasComp(args.Target)) + return; + + var activeItem = _hands.GetActiveItem((args.User, hands)); + + if (activeItem == null) + { + _hands.TryPickupAnyHand(args.User, args.Target); + } + else if (TryComp(activeItem, out var cardStack)) + { + _cardStack.InsertCardOnStack(args.User, activeItem.Value, cardStack, args.Target); + } + else if (TryComp(activeItem, out var card)) + { + _cardHand.TrySetupHandOfCards(args.User, activeItem.Value, card, args.Target, component, true); + } + } +} diff --git a/Content.Shared/_EstacaoPirata/Cards/Deck/CardDeckComponent.cs b/Content.Shared/_EstacaoPirata/Cards/Deck/CardDeckComponent.cs new file mode 100644 index 0000000000..f695eab8d9 --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Deck/CardDeckComponent.cs @@ -0,0 +1,28 @@ +using Robust.Shared.Audio; + +namespace Content.Shared._EstacaoPirata.Cards.Deck; + +/// +/// This is used for... +/// +[RegisterComponent] +public sealed partial class CardDeckComponent : Component +{ + [DataField] + public SoundSpecifier ShuffleSound = new SoundCollectionSpecifier("cardFan"); + + [DataField] + public SoundSpecifier PickUpSound = new SoundCollectionSpecifier("cardSlide"); + + [DataField] + public SoundSpecifier PlaceDownSound = new SoundCollectionSpecifier("cardShove"); + + [DataField] + public float YOffset = 0.02f; + + [DataField] + public float Scale = 1; + + [DataField] + public int CardLimit = 5; +} diff --git a/Content.Shared/_EstacaoPirata/Cards/Deck/CardDeckSystem.cs b/Content.Shared/_EstacaoPirata/Cards/Deck/CardDeckSystem.cs new file mode 100644 index 0000000000..dc5096c810 --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Deck/CardDeckSystem.cs @@ -0,0 +1,123 @@ +using Content.Shared._EstacaoPirata.Cards.Card; +using Content.Shared._EstacaoPirata.Cards.Stack; +using Content.Shared.Audio; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Item; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Shared._EstacaoPirata.Cards.Deck; + +/// +/// This handles card decks +/// +public sealed class CardDeckSystem : EntitySystem +{ + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly CardStackSystem _cardStackSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + public readonly EntProtoId CardDeckBaseName = "CardDeckBase"; + + /// + public override void Initialize() + { + SubscribeLocalEvent>(AddTurnOnVerb); + } + + private void AddTurnOnVerb(EntityUid uid, CardDeckComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (!TryComp(uid, out CardStackComponent? comp)) + return; + + args.Verbs.Add(new AlternativeVerb() + { + Act = () => TryShuffle(uid, component, comp), + Text = Loc.GetString("cards-verb-shuffle"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/die.svg.192dpi.png")), + Priority = 4 + }); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => TrySplit(args.Target, component, comp, args.User), + Text = Loc.GetString("cards-verb-split"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/dot.svg.192dpi.png")), + Priority = 3 + }); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => TryOrganize(uid, component, comp, true), + Text = Loc.GetString("cards-verb-organize-down"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/flip.svg.192dpi.png")), + Priority = 2 + }); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => TryOrganize(uid, component, comp, false), + Text = Loc.GetString("cards-verb-organize-up"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/flip.svg.192dpi.png")), + Priority = 1 + }); + } + + private void TrySplit(EntityUid uid, CardDeckComponent deck, CardStackComponent stack, EntityUid user) + { + if (stack.Cards.Count <= 1) + return; + + _audio.PlayPredicted(deck.PickUpSound, Transform(uid).Coordinates, user); + + if (!_net.IsServer) + return; + + var cardDeck = SpawnInSameParent(CardDeckBaseName, uid); + + EnsureComp(cardDeck, out var deckStack); + + _cardStackSystem.TransferNLastCardFromStacks(user, stack.Cards.Count / 2, uid, stack, cardDeck, deckStack); + _hands.PickupOrDrop(user, cardDeck); + } + + private void TryShuffle(EntityUid deck, CardDeckComponent comp, CardStackComponent? stack) + { + _cardStackSystem.ShuffleCards(deck, stack); + if (_net.IsClient) + return; + + _audio.PlayPvs(comp.ShuffleSound, deck, AudioHelpers.WithVariation(0.05f, _random)); + _popup.PopupEntity(Loc.GetString("card-verb-shuffle-success", ("target", MetaData(deck).EntityName)), deck); + } + + private void TryOrganize(EntityUid deck, CardDeckComponent comp, CardStackComponent? stack, bool isFlipped) + { + if (_net.IsClient) + return; + _cardStackSystem.FlipAllCards(deck, stack, isFlipped: isFlipped); + + _audio.PlayPvs(comp.ShuffleSound, deck, AudioHelpers.WithVariation(0.05f, _random)); + _popup.PopupEntity(Loc.GetString("card-verb-organize-success", ("target", MetaData(deck).EntityName), ("facedown", isFlipped)), deck); + } + + private EntityUid SpawnInSameParent(string prototype, EntityUid uid) + { + if (_container.IsEntityOrParentInContainer(uid) && + _container.TryGetOuterContainer(uid, Transform(uid), out var container)) + { + return SpawnInContainerOrDrop(prototype, container.Owner, container.ID); + } + return Spawn(prototype, Transform(uid).Coordinates); + } +} diff --git a/Content.Shared/_EstacaoPirata/Cards/Hand/CardHandComponent.cs b/Content.Shared/_EstacaoPirata/Cards/Hand/CardHandComponent.cs new file mode 100644 index 0000000000..39e0c4ac45 --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Hand/CardHandComponent.cs @@ -0,0 +1,38 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared._EstacaoPirata.Cards.Hand; + +/// +/// This is used for... +/// +[RegisterComponent] +public sealed partial class CardHandComponent : Component +{ + [DataField] + public float Angle = 120f; + + [DataField] + public float XOffset = 0.5f; + + [DataField] + public float Scale = 1; + + [DataField] + public int CardLimit = 10; + + [DataField] + public bool Flipped = false; +} + + +[Serializable, NetSerializable] +public enum CardUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class CardHandDrawMessage(NetEntity card) : BoundUserInterfaceMessage +{ + public NetEntity Card = card; +} diff --git a/Content.Shared/_EstacaoPirata/Cards/Hand/CardHandSystem.cs b/Content.Shared/_EstacaoPirata/Cards/Hand/CardHandSystem.cs new file mode 100644 index 0000000000..98d089dfe9 --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Hand/CardHandSystem.cs @@ -0,0 +1,237 @@ +using System.Linq; +using Content.Shared._EstacaoPirata.Cards.Card; +using Content.Shared._EstacaoPirata.Cards.Deck; +using Content.Shared._EstacaoPirata.Cards.Stack; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared._EstacaoPirata.Cards.Hand; + +/// +/// This handles... +/// + +public sealed class CardHandSystem : EntitySystem +{ + [ValidatePrototypeId] + public readonly EntProtoId CardHandBaseName = "CardHandBase"; + [ValidatePrototypeId] + public readonly EntProtoId CardDeckBaseName = "CardDeckBase"; + + [Dependency] private readonly CardStackSystem _cardStack = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedStorageSystem _storage = default!; // Frontier + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnCardDraw); + SubscribeLocalEvent(OnStackQuantityChange); + SubscribeLocalEvent>(OnAlternativeVerb); + } + + private void OnStackQuantityChange(EntityUid uid, CardHandComponent comp, CardStackQuantityChangeEvent args) + { + if (_net.IsClient) + return; + + if (!TryComp(uid, out CardStackComponent? stack)) + return; + + if (stack.Cards.Count < 0) + { + Log.Warning($"Invalid negative card count {stack.Cards.Count} detected in stack {ToPrettyString(uid)}"); + return; + } + + var text = args.Type switch + { + StackQuantityChangeType.Added => "cards-stackquantitychange-added", + StackQuantityChangeType.Removed => "cards-stackquantitychange-removed", + StackQuantityChangeType.Joined => "cards-stackquantitychange-joined", + StackQuantityChangeType.Split => "cards-stackquantitychange-split", + _ => "cards-stackquantitychange-unknown" + }; + + _popupSystem.PopupEntity(Loc.GetString(text, ("quantity", stack.Cards.Count)), uid); + + _cardStack.FlipAllCards(uid, stack, comp.Flipped); + } + + private void OnCardDraw(EntityUid uid, CardHandComponent comp, CardHandDrawMessage args) + { + if (!TryComp(uid, out CardStackComponent? stack)) + return; + var pickup = _hands.IsHolding(args.Actor, uid); + EntityUid? leftover = null; + var cardEnt = GetEntity(args.Card); + + if (stack.Cards.Count == 2 && pickup) + { + leftover = stack.Cards[0] != cardEnt ? stack.Cards[0] : stack.Cards[1]; + } + if (!_cardStack.TryRemoveCard(uid, cardEnt, stack)) + return; + + if (_net.IsServer) + _storage.PlayPickupAnimation(cardEnt, Transform(cardEnt).Coordinates, Transform(args.Actor).Coordinates, 0); + + _hands.TryPickupAnyHand(args.Actor, cardEnt); + if (pickup && leftover != null) + { + _hands.TryPickupAnyHand(args.Actor, leftover.Value); + } + } + + private void OpenHandMenu(EntityUid user, EntityUid hand) + { + if (!TryComp(user, out var actor)) + return; + + _ui.OpenUi(hand, CardUiKey.Key, actor.PlayerSession); + + } + + private void OnAlternativeVerb(EntityUid uid, CardHandComponent comp, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + args.Verbs.Add(new AlternativeVerb() + { + Act = () => OpenHandMenu(args.User, uid), + Text = Loc.GetString("cards-verb-pickcard"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/die.svg.192dpi.png")), + Priority = 4 + }); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => _cardStack.ShuffleCards(uid), + Text = Loc.GetString("cards-verb-shuffle"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/die.svg.192dpi.png")), + Priority = 3 + }); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => FlipCards(uid, comp), + Text = Loc.GetString("cards-verb-flip"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/flip.svg.192dpi.png")), + Priority = 2 + }); + args.Verbs.Add(new AlternativeVerb() + { + Act = () => ConvertToDeck(args.User, uid), + Text = Loc.GetString("cards-verb-convert-to-deck"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png")), + Priority = 1 + }); + } + + private void OnInteractUsing(EntityUid uid, CardComponent comp, InteractUsingEvent args) + { + if (args.Handled) + return; + + if (HasComp(args.Used) || + !TryComp(args.Used, out CardComponent? usedComp)) + return; + + if (!HasComp(args.Target) && + TryComp(args.Target, out CardComponent? targetCardComp)) + { + TrySetupHandOfCards(args.User, args.Used, usedComp, args.Target, targetCardComp, true); + args.Handled = true; + } + } + + private void ConvertToDeck(EntityUid user, EntityUid hand) + { + if (_net.IsClient) + return; + + var cardDeck = SpawnInSameParent(CardDeckBaseName, hand); + bool isHoldingCards = _hands.IsHolding(user, hand); + + EnsureComp(cardDeck, out var deckStack); + if (!TryComp(hand, out CardStackComponent? handStack)) + return; + _cardStack.TryJoinStacks(cardDeck, hand, deckStack, handStack, null); + + if (isHoldingCards) + _hands.TryPickupAnyHand(user, cardDeck); + } + public void TrySetupHandOfCards(EntityUid user, EntityUid card, CardComponent comp, EntityUid target, CardComponent targetComp, bool pickup) + { + if (card == target || _net.IsClient) + return; + var cardHand = SpawnInSameParent(CardHandBaseName, card); + if (TryComp(cardHand, out var handComp)) + handComp.Flipped = targetComp.Flipped; + if (!TryComp(cardHand, out CardStackComponent? stack)) + return; + if (!_cardStack.TryInsertCard(cardHand, card, stack) || !_cardStack.TryInsertCard(cardHand, target, stack)) + return; + if (_net.IsServer) + _storage.PlayPickupAnimation(card, Transform(card).Coordinates, Transform(cardHand).Coordinates, 0); + if (pickup && !_hands.TryPickupAnyHand(user, cardHand)) + return; + _cardStack.FlipAllCards(cardHand, stack, targetComp.Flipped); + } + + public void TrySetupHandFromStack(EntityUid user, EntityUid card, CardComponent comp, EntityUid target, CardStackComponent targetComp, bool pickup) + { + if (_net.IsClient) + return; + var cardHand = SpawnInSameParent(CardHandBaseName, card); + if (TryComp(cardHand, out var handComp)) + handComp.Flipped = comp.Flipped; + if (!TryComp(cardHand, out CardStackComponent? stack)) + return; + if (!_cardStack.TryInsertCard(cardHand, card, stack)) + return; + _cardStack.TransferNLastCardFromStacks(user, 1, target, targetComp, cardHand, stack); + if (pickup && !_hands.TryPickupAnyHand(user, cardHand)) + return; + _cardStack.FlipAllCards(cardHand, stack, comp.Flipped); + } + + private void FlipCards(EntityUid hand, CardHandComponent comp) + { + comp.Flipped = !comp.Flipped; + _cardStack.FlipAllCards(hand, null, comp.Flipped); + } + + // Frontier: tries to spawn an entity with the same parent as another given entity. + // Useful when spawning decks/hands in a backpack, for example. + private EntityUid SpawnInSameParent(EntProtoId prototype, EntityUid uid) + { + if (prototype == default) + throw new ArgumentException("Cannot spawn with null prototype", nameof(prototype)); + + if (_container.IsEntityOrParentInContainer(uid) && + _container.TryGetOuterContainer(uid, Transform(uid), out var container)) + { + var entity = SpawnInContainerOrDrop(prototype, container.Owner, container.ID); + if (!Exists(entity)) + Log.Error($"Failed to spawn {prototype} in container {container.ID}"); + return entity; + } + var worldEntity = Spawn(prototype, Transform(uid).Coordinates); + if (!Exists(worldEntity)) + Log.Error($"Failed to spawn {prototype} at coordinates {Transform(uid).Coordinates}"); + return worldEntity; + } +} diff --git a/Content.Shared/_EstacaoPirata/Cards/Stack/CardStackComponent.cs b/Content.Shared/_EstacaoPirata/Cards/Stack/CardStackComponent.cs new file mode 100644 index 0000000000..3247e0752b --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Stack/CardStackComponent.cs @@ -0,0 +1,83 @@ +using Robust.Shared.Audio; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared._EstacaoPirata.Cards.Stack; + +/// +/// This is used for holding the prototype ids of the cards in the stack or hand. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + +public sealed partial class CardStackComponent : Component +{ + [DataField] + public List InitialContent = []; + + [DataField] + public SoundSpecifier ShuffleSound = new SoundCollectionSpecifier("cardFan"); + + [DataField] + public SoundSpecifier PickUpSound = new SoundCollectionSpecifier("cardSlide"); + + [DataField] + public SoundSpecifier PlaceDownSound = new SoundCollectionSpecifier("cardShove"); + + + /// + /// The containers that contain the items held in the stack + /// + [ViewVariables] + public Container ItemContainer = default!; + + /// + /// The list EntityUIds of Cards + /// + [DataField, AutoNetworkedField] + public List Cards = []; +} + +[Serializable, NetSerializable] +public sealed class CardStackInitiatedEvent(NetEntity cardStack) : EntityEventArgs +{ + public NetEntity CardStack = cardStack; +} + +/// +/// This gets Updated when new cards are added or removed from the stack +/// +[Serializable, NetSerializable] +public sealed class CardStackQuantityChangeEvent(NetEntity stack, NetEntity? card, StackQuantityChangeType type) : EntityEventArgs +{ + public NetEntity Stack = stack; + public NetEntity? Card = card; + public StackQuantityChangeType Type = type; +} + +[Serializable, NetSerializable] +public enum StackQuantityChangeType : sbyte +{ + Added, + Removed, + Joined, + Split +} + + + +[Serializable, NetSerializable] +public sealed class CardStackReorderedEvent(NetEntity stack) : EntityEventArgs +{ + public NetEntity Stack = stack; +} + +[Serializable, NetSerializable] +public sealed class CardStackFlippedEvent(NetEntity cardStack) : EntityEventArgs +{ + public NetEntity CardStack = cardStack; +} + + + diff --git a/Content.Shared/_EstacaoPirata/Cards/Stack/CardStackSystem.cs b/Content.Shared/_EstacaoPirata/Cards/Stack/CardStackSystem.cs new file mode 100644 index 0000000000..ca09056bb7 --- /dev/null +++ b/Content.Shared/_EstacaoPirata/Cards/Stack/CardStackSystem.cs @@ -0,0 +1,482 @@ +using System.Linq; +using Content.Shared._EstacaoPirata.Cards.Card; +using Content.Shared._EstacaoPirata.Cards.Deck; +using Content.Shared._EstacaoPirata.Cards.Hand; +using Content.Shared.Examine; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Map; +using Robust.Shared.Network; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Shared._EstacaoPirata.Cards.Stack; + +/// +/// This handles stack of cards. +/// It is used to shuffle, flip, insert, remove, and join stacks of cards. +/// It also handles the events related to the stack of cards. +/// +public sealed class CardStackSystem : EntitySystem +{ + public const string ContainerId = "cardstack-container"; + public const int MaxCardsInStack = 212; // Frontier: four 53-card decks. + + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedStorageSystem _storage = default!; + [Dependency] private readonly CardHandSystem _cardHandSystem = default!; // Frontier + [Dependency] private readonly SharedHandsSystem _hands = default!; + + /// + public override void Initialize() + { + // Pretty much a rip-off of the BinSystem + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnEntRemoved); + SubscribeLocalEvent>(OnAlternativeVerb); + SubscribeLocalEvent>(OnActivationVerb); + SubscribeLocalEvent(OnActivate); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnInteractUsing); + } + + public bool TryRemoveCard(EntityUid uid, EntityUid card, CardStackComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return false; + + if (!TryComp(card, out CardComponent? _)) + return false; + + _container.Remove(card, comp.ItemContainer); + comp.Cards.Remove(card); + + // If there is a final card left over, remove that card from the container and delete the stack alltogether + if (comp.Cards.Count == 1) + { + + _container.Remove(comp.Cards.First(), comp.ItemContainer); + comp.Cards.Clear(); + } + + Dirty(uid, comp); + + RaiseLocalEvent(uid, new CardStackQuantityChangeEvent(GetNetEntity(uid), GetNetEntity(card), StackQuantityChangeType.Removed)); + RaiseNetworkEvent(new CardStackQuantityChangeEvent(GetNetEntity(uid), GetNetEntity(card), StackQuantityChangeType.Removed)); + // Prevents prediction ruining things + if (_net.IsServer && comp.Cards.Count <= 0) + { + _entityManager.DeleteEntity(uid); + } + return true; + } + + public bool TryInsertCard(EntityUid uid, EntityUid card, CardStackComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return false; + + if (!TryComp(card, out CardComponent? _)) + return false; + + if (comp.Cards.Count >= MaxCardsInStack) + return false; + + _container.Insert(card, comp.ItemContainer); + comp.Cards.Add(card); + + Dirty(uid, comp); + RaiseLocalEvent(uid, new CardStackQuantityChangeEvent(GetNetEntity(uid), GetNetEntity(card), StackQuantityChangeType.Added)); + RaiseNetworkEvent(new CardStackQuantityChangeEvent(GetNetEntity(uid), GetNetEntity(card), StackQuantityChangeType.Added)); + return true; + } + + public bool ShuffleCards(EntityUid uid, CardStackComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return false; + + _random.Shuffle(comp.Cards); + + Dirty(uid, comp); + RaiseLocalEvent(uid, new CardStackReorderedEvent(GetNetEntity(uid))); + RaiseNetworkEvent(new CardStackReorderedEvent(GetNetEntity(uid))); + return true; + } + + /// + /// Server-Side only method to flip all cards within a stack. This starts CardFlipUpdatedEvent and CardStackFlippedEvent event + /// + /// + /// + /// If null, all cards will just invert direction, if it contains a value, then all cards will receive that value + /// + public bool FlipAllCards(EntityUid uid, CardStackComponent? comp = null, bool? isFlipped = null) + { + if (_net.IsClient) + return false; + if (!Resolve(uid, ref comp)) + return false; + foreach (var card in comp.Cards) + { + if (!TryComp(card, out CardComponent? cardComponent)) + continue; + + cardComponent.Flipped = isFlipped ?? !cardComponent.Flipped; + + Dirty(card, cardComponent); + RaiseNetworkEvent(new CardFlipUpdatedEvent(GetNetEntity(card))); + } + + RaiseNetworkEvent(new CardStackFlippedEvent(GetNetEntity(uid))); + return true; + } + + public bool TryJoinStacks(EntityUid firstStack, EntityUid secondStack, CardStackComponent? firstComp = null, CardStackComponent? secondComp = null, EntityUid? soundUser = null) + { + if (firstStack == secondStack) + return false; + if (!Resolve(firstStack, ref firstComp) || !Resolve(secondStack, ref secondComp)) + return false; + + bool changed = false; + var cardList = secondComp.Cards.ToList(); + EntityUid? firstCard = secondComp.Cards.Count > 0 ? cardList[0] : null; // Cache the first card transferred for animations (better to have something moving than nothing, and we destroy the other stack) + + foreach (var card in cardList) + { + if (firstComp.Cards.Count >= MaxCardsInStack) + break; + _container.Remove(card, secondComp.ItemContainer); + secondComp.Cards.Remove(card); + firstComp.Cards.Add(card); + _container.Insert(card, firstComp.ItemContainer); + changed = true; + } + if (changed) + { + if (soundUser != null) + { + _audio.PlayPredicted(firstComp.PlaceDownSound, Transform(firstStack).Coordinates, soundUser.Value); + if(_net.IsServer) + _storage.PlayPickupAnimation(firstCard!.Value, Transform(secondStack).Coordinates, Transform(firstStack).Coordinates, 0); + } + + if (_net.IsClient) + return changed; + + Dirty(firstStack, firstComp); + if (secondComp.Cards.Count <= 0) + { + _entityManager.DeleteEntity(secondStack); + } + else + { + Dirty(secondStack, secondComp); + RaiseLocalEvent(secondStack, new CardStackQuantityChangeEvent(GetNetEntity(secondStack), null, StackQuantityChangeType.Split)); + RaiseNetworkEvent(new CardStackQuantityChangeEvent(GetNetEntity(secondStack), null, StackQuantityChangeType.Split)); + } + RaiseLocalEvent(firstStack, new CardStackQuantityChangeEvent(GetNetEntity(firstStack), null, StackQuantityChangeType.Joined)); + RaiseNetworkEvent(new CardStackQuantityChangeEvent(GetNetEntity(firstStack), null, StackQuantityChangeType.Joined)); + } + + return changed; + } + + #region EventHandling + + private void OnStartup(EntityUid uid, CardStackComponent component, ComponentStartup args) + { + component.ItemContainer = _container.EnsureContainer(uid, ContainerId); + } + + private void OnMapInit(EntityUid uid, CardStackComponent comp, MapInitEvent args) + { + if (_net.IsClient) + return; + + var coordinates = Transform(uid).Coordinates; + var spawnedEntities = new List(); + foreach (var id in comp.InitialContent) + { + var ent = Spawn(id, coordinates); + spawnedEntities.Add(ent); + if (TryInsertCard(uid, ent, comp)) + continue; + Log.Error($"Entity {ToPrettyString(ent)} was unable to be initialized into stack {ToPrettyString(uid)}"); + foreach (var spawned in spawnedEntities) + _entityManager.DeleteEntity(spawned); + return; + } + RaiseNetworkEvent(new CardStackInitiatedEvent(GetNetEntity(uid))); + } + + // It seems the cards don't get removed if this event is not subscribed... strange right? thanks again bin system + private void OnEntRemoved(EntityUid uid, CardStackComponent component, EntRemovedFromContainerMessage args) + { + component.Cards.Remove(args.Entity); + } + + private void OnExamine(EntityUid uid, CardStackComponent component, ExaminedEvent args) + { + args.PushText(Loc.GetString("card-stack-examine", ("count", component.Cards.Count))); + } + + private void OnAlternativeVerb(EntityUid uid, CardStackComponent component, GetVerbsEvent args) + { + if (args.Using == args.Target) + return; + if (!TryComp(args.Target, out CardStackComponent? targetStack)) + return; + + if (TryComp(args.Using, out CardStackComponent? usingStack)) + { + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString("card-verb-join"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/refresh.svg.192dpi.png")), + Priority = 8, + Act = () => JoinStacks(args.User, args.Target, targetStack, (EntityUid)args.Using, usingStack) + }); + } + else if (TryComp(args.Using, out CardComponent? usingCard)) // Frontier: single card interaction + { + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString("card-verb-join"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/refresh.svg.192dpi.png")), + Priority = 8, + Act = () => InsertCardOnStack(args.User, args.Target, targetStack, (EntityUid)args.Using) + }); + } // End Frontier: single card interaction + } + + // Frontier: hacky misuse of the activation verb, but allows us a separate way to draw cards without needing additional buttons and event fiddling + private void OnActivationVerb(EntityUid uid, CardStackComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (args.Using == args.Target) + return; + + if (args.Using == null) + { + args.Verbs.Add(new ActivationVerb() + { + Act = () => OnInteractHand(args.Target, component, args.User), + Text = Loc.GetString("cards-verb-draw"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Priority = 16 + }); + } + else if (TryComp(args.Using, out var cardStack)) + { + args.Verbs.Add(new ActivationVerb() + { + Act = () => TransferNLastCardFromStacks(args.User, 1, args.Target, component, args.Using.Value, cardStack), + Text = Loc.GetString("cards-verb-draw"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Priority = 16 + }); + } + else if (TryComp(args.Using, out var card)) + { + args.Verbs.Add(new ActivationVerb() + { + Act = () => _cardHandSystem.TrySetupHandFromStack(args.User, args.Using.Value, card, args.Target, component, true), + Text = Loc.GetString("cards-verb-draw"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Priority = 16 + }); + } + } + // End Frontier + + private void JoinStacks(EntityUid user, EntityUid first, CardStackComponent firstComp, EntityUid second, CardStackComponent secondComp) + { + TryJoinStacks(first, second, firstComp, secondComp, user); + } + + public void InsertCardOnStack(EntityUid user, EntityUid stack, CardStackComponent stackComponent, EntityUid card) + { + if (!TryInsertCard(stack, card)) + return; + + _audio.PlayPredicted(stackComponent.PlaceDownSound, Transform(stack).Coordinates, user); + if (_net.IsClient) + return; + _storage.PlayPickupAnimation(card, Transform(user).Coordinates, Transform(stack).Coordinates, 0); + } + + /// + /// This takes the last card from the first stack and inserts it into the second stack + /// + public void TransferNLastCardFromStacks(EntityUid user, int n, EntityUid first, CardStackComponent firstComp, EntityUid second, CardStackComponent secondComp) + { + if (firstComp.Cards.Count <= 0) + return; + + var cards = firstComp.Cards.TakeLast(n).ToList(); // Frontier: make a copy we don't munge during iteration + + var firstCard = cards.First(); // Cache first card for animation - enumerable changes in foreach + + bool changed = false; + foreach (var card in cards) + { + if (secondComp.Cards.Count >= MaxCardsInStack) + break; + _container.Remove(card, firstComp.ItemContainer); + firstComp.Cards.Remove(card); + secondComp.Cards.Add(card); + _container.Insert(card, secondComp.ItemContainer); + changed = true; + } + + if (changed) + { + _audio.PlayPredicted(firstComp.PlaceDownSound, Transform(second).Coordinates, user); + if (_net.IsClient) + return; + + _storage.PlayPickupAnimation(firstCard, Transform(first).Coordinates, Transform(second).Coordinates, 0); + + Dirty(second, secondComp); + if (firstComp.Cards.Count == 1) + { + var card = firstComp.Cards.First(); + _container.Remove(card, firstComp.ItemContainer); + if (_hands.IsHolding(user, first)) + { + _hands.TryDrop(user, first); + _hands.TryPickupAnyHand(user, card); + } + firstComp.Cards.Clear(); + } + if (firstComp.Cards.Count <= 0) + { + _entityManager.DeleteEntity(first); + } + else + { + Dirty(first, firstComp); + RaiseLocalEvent(first, new CardStackQuantityChangeEvent(GetNetEntity(first), null, StackQuantityChangeType.Removed)); + RaiseNetworkEvent(new CardStackQuantityChangeEvent(GetNetEntity(first), null, StackQuantityChangeType.Removed)); + } + RaiseLocalEvent(second, new CardStackQuantityChangeEvent(GetNetEntity(second), null, StackQuantityChangeType.Added)); + RaiseNetworkEvent(new CardStackQuantityChangeEvent(GetNetEntity(second), null, StackQuantityChangeType.Added)); + } + } + + private void OnInteractUsing(InteractUsingEvent args) + { + if (args.Handled) + return; + + if (args.Target == args.Used) + return; + + // This checks if the user is using an item with Stack component + if (TryComp(args.Used, out CardStackComponent? usedStack)) + { + // If the target is a card, then it will insert the card into the stack + if (TryComp(args.Target, out CardComponent? _)) + { + InsertCardOnStack(args.User, args.Used, usedStack, args.Target); + args.Handled = true; + return; + } + + // If instead, the target is a stack, then it will join the two stacks + if (!TryComp(args.Target, out CardStackComponent? targetStack)) + return; + + TransferNLastCardFromStacks(args.User, 1, args.Target, targetStack, args.Used, usedStack); + args.Handled = true; + } + + // This handles the reverse case, where the user is using a card and inserting it to a stack + else if (TryComp(args.Target, out CardStackComponent? stack)) + { + //InsertCardOnStack(args.User, args.Target, stack, args.Used); // Frontier: old version + if (TryComp(args.Used, out CardComponent? card)) + { + _cardHandSystem.TrySetupHandFromStack(args.User, args.Used, card, args.Target, stack, true); + args.Handled = true; + } + } + } + + private void OnInteractHand(EntityUid uid, CardStackComponent component, EntityUid user) + { + var pickup = _hands.IsHolding(user, uid); + if (component.Cards.Count <= 0) + return; + + if (!component.Cards.TryGetValue(component.Cards.Count - 1, out var card)) + return; + if (!component.Cards.TryGetValue(component.Cards.Count - 2, out var under)) + return; + + if (!TryRemoveCard(uid, card, component)) + return; + + _hands.TryPickupAnyHand(user, card); + if (!Exists(uid) && pickup) + _hands.TryPickupAnyHand(user, under); + + if (TryComp(uid, out var deck)) + _audio.PlayPredicted(deck.PickUpSound, Transform(card).Coordinates, user); + else + _audio.PlayPredicted(component.PickUpSound, Transform(card).Coordinates, user); + } + + private void OnActivate(EntityUid uid, CardStackComponent component, ActivateInWorldEvent args) + { + if (!args.Complex || args.Handled) + return; + + if (!TryComp(args.User, out var hands)) + { + args.Handled = true; + return; + } + + var activeItem = _hands.GetActiveItem((args.User, hands)); + + if (activeItem == null) + { + // Runs if active item is nothing + // behavior is to draw one card from this target onto active hand as a standalone card + OnInteractHand(args.Target, component, args.User); + } + else if (activeItem == args.Target) + { + // Added from a Frontier PR. Don't want to draw a card from a stack onto itself. + args.Handled = true; + return; + } + else if (TryComp(activeItem, out var cardStack)) + { + // If the active item contains a card stack, behavior is to draw from Target and place onto activeHand. + TransferNLastCardFromStacks(args.User, 1, args.Target, component, activeItem.Value, cardStack); + } + else if (TryComp(activeItem, out var card)) + { + _cardHandSystem.TrySetupHandFromStack(args.User, activeItem.Value, card, args.Target, component, true); + } + args.Handled = true; + } + + #endregion +} diff --git a/Content.Shared/_Goobstation/CCVars/CCVars.Goob.cs b/Content.Shared/_Goobstation/CCVars/CCVars.Goob.cs new file mode 100644 index 0000000000..16ef7e9da4 --- /dev/null +++ b/Content.Shared/_Goobstation/CCVars/CCVars.Goob.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared._Goobstation.CCVar; + +[CVarDefs] +public sealed partial class GoobCVars +{ + #region Mechs + + /// + /// Whether or not players can use mech guns outside of mechs. + /// + public static readonly CVarDef MechGunOutsideMech = + CVarDef.Create("mech.gun_outside_mech", true, CVar.SERVER | CVar.REPLICATED); + + #endregion +} diff --git a/Content.Shared/_Goobstation/Clothing/Components/SealableClothingComponent.cs b/Content.Shared/_Goobstation/Clothing/Components/SealableClothingComponent.cs new file mode 100644 index 0000000000..1a550d6c8b --- /dev/null +++ b/Content.Shared/_Goobstation/Clothing/Components/SealableClothingComponent.cs @@ -0,0 +1,30 @@ +using Content.Shared._Goobstation.Clothing.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared._Goobstation.Clothing.Components; + +/// Defines the clothing entity that can be sealed by +[RegisterComponent] +[NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedSealableClothingSystem))] +public sealed partial class SealableClothingComponent : Component +{ + [DataField, AutoNetworkedField] + public bool IsSealed = false; + + [DataField, AutoNetworkedField] + public TimeSpan SealingTime = TimeSpan.FromSeconds(1.75); + + [DataField] + public LocId SealUpPopup = "sealable-clothing-seal-up"; + + [DataField] + public LocId SealDownPopup = "sealable-clothing-seal-down"; + + [DataField] + public SoundSpecifier SealUpSound = new SoundPathSpecifier("/Audio/Mecha/mechmove03.ogg"); + + [DataField] + public SoundSpecifier SealDownSound = new SoundPathSpecifier("/Audio/Mecha/mechmove03.ogg"); +} diff --git a/Content.Shared/_Goobstation/Clothing/Components/SealableClothingControlComponent.cs b/Content.Shared/_Goobstation/Clothing/Components/SealableClothingControlComponent.cs new file mode 100644 index 0000000000..7ddb19cfbd --- /dev/null +++ b/Content.Shared/_Goobstation/Clothing/Components/SealableClothingControlComponent.cs @@ -0,0 +1,75 @@ +using Content.Shared._Goobstation.Clothing.Systems; +using Content.Shared.Inventory; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared._Goobstation.Clothing.Components; + +/// Component used to designate contol of sealable clothing. It'll contain action to seal clothing +[RegisterComponent] +[NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedSealableClothingSystem))] +public sealed partial class SealableClothingControlComponent : Component +{ + /// Action that used to start sealing + [DataField, AutoNetworkedField] + public EntProtoId SealAction = "ActionClothingSeal"; + + [DataField, AutoNetworkedField] + public EntityUid? SealActionEntity; + + /// Slot required for control to show action + [DataField("requiredSlot"), AutoNetworkedField] + public SlotFlags RequiredControlSlot = SlotFlags.BACK; + + /// True if clothing in sealing/unsealing process, false if not + [DataField, AutoNetworkedField] + public bool IsInProcess = false; + + /// True if clothing is currently sealed and need to start unsealing process. False if opposite + [DataField, AutoNetworkedField] + public bool IsCurrentlySealed = false; + + /// Queue of attached parts that should be sealed/unsealed + [DataField, AutoNetworkedField] + public Queue ProcessQueue = new(); + + /// Uid of entity that currently wear seal control + [DataField, AutoNetworkedField] + public EntityUid? WearerEntity; + + /// Doafter time for other players to start sealing via stripping menu + [DataField, AutoNetworkedField] + public TimeSpan NonWearerSealingTime = TimeSpan.FromSeconds(4); + + #region Popups & Sounds + + [DataField] + public LocId ToggleFailedPopup = "sealable-clothing-equipment-not-toggled"; + + [DataField] + public LocId SealFailedPopup = "sealable-clothing-equipment-seal-failed"; + + [DataField] + public LocId SealedInProcessToggleFailPopup = "sealable-clothing-sealed-process-toggle-fail"; + + [DataField] + public LocId UnsealedInProcessToggleFailPopup = "sealable-clothing-unsealed-process-toggle-fail"; + + [DataField] + public LocId CurrentlySealedToggleFailPopup = "sealable-clothing-sealed-toggle-fail"; + + [DataField] + public LocId VerbText = "sealable-clothing-seal-verb"; + + [DataField] + public SoundSpecifier FailSound = new SoundPathSpecifier("/Audio/Machines/scanbuzz.ogg"); + + [DataField] + public SoundSpecifier SealCompleteSound = new SoundPathSpecifier("/Audio/_Goobstation/Mecha/nominal.ogg"); + + [DataField] + public SoundSpecifier UnsealCompleteSound = new SoundPathSpecifier("/Audio/_Goobstation/Machines/computer_end.ogg"); + #endregion +} diff --git a/Content.Shared/_Goobstation/Clothing/Components/SealableClothingRequiresPowerComponent.cs b/Content.Shared/_Goobstation/Clothing/Components/SealableClothingRequiresPowerComponent.cs new file mode 100644 index 0000000000..784adb9fd8 --- /dev/null +++ b/Content.Shared/_Goobstation/Clothing/Components/SealableClothingRequiresPowerComponent.cs @@ -0,0 +1,30 @@ +using Content.Shared.Alert; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared._Goobstation.Clothing.Components; + +[RegisterComponent] +[NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SealableClothingRequiresPowerComponent : Component +{ + [DataField] + public LocId NotPoweredPopup = "sealable-clothing-not-powered"; + + [DataField] + public LocId OpenSealedPanelFailPopup = "sealable-clothing-open-sealed-panel-fail"; + + [DataField] + public LocId ClosePanelFirstPopup = "sealable-clothing-close-panel-first"; + + /// Movement speed when without power + [DataField] + public float MovementSpeedPenalty = 0.3f; + + [DataField, AutoNetworkedField] + public bool IsPowered = false; + + /// Alert to show for the suit's power + [DataField] + public ProtoId SuitPowerAlert = "ModsuitPower"; +} diff --git a/Content.Shared/_Goobstation/Clothing/SealableClothingVisuals.cs b/Content.Shared/_Goobstation/Clothing/SealableClothingVisuals.cs new file mode 100644 index 0000000000..ea4897b6ef --- /dev/null +++ b/Content.Shared/_Goobstation/Clothing/SealableClothingVisuals.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared._Goobstation.Clothing; + +[Serializable, NetSerializable] +public enum SealableClothingVisuals : byte +{ + Sealed +} diff --git a/Content.Shared/_Goobstation/Clothing/Systems/SharedPoweredSealableClothingSystem.cs b/Content.Shared/_Goobstation/Clothing/Systems/SharedPoweredSealableClothingSystem.cs new file mode 100644 index 0000000000..5902688e1b --- /dev/null +++ b/Content.Shared/_Goobstation/Clothing/Systems/SharedPoweredSealableClothingSystem.cs @@ -0,0 +1,73 @@ +using Content.Shared._Goobstation.Clothing.Components; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.PowerCell; +using Content.Shared.Wires; + +namespace Content.Shared._Goobstation.Clothing.Systems; + +/// Used for sealable clothing that requires power to work +public abstract class SharedPoweredSealableClothingSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedPowerCellSystem _powerCellSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRequiresPowerMapInit); + SubscribeLocalEvent(OnRequiresPowerSealAttempt); + SubscribeLocalEvent(OnRequiresPowerChangePanelAttempt); + } + + private void OnRequiresPowerMapInit(Entity entity, ref MapInitEvent args) + { + if (!TryComp(entity, out SealableClothingControlComponent? control) || !TryComp(entity, out PowerCellDrawComponent? draw)) + return; + + draw.Enabled = control.IsCurrentlySealed; + } + + /// Checks if control have enough power to seal + private void OnRequiresPowerSealAttempt(Entity entity, ref ClothingSealAttemptEvent args) + { + if (!TryComp(entity, out SealableClothingControlComponent? controlComp) + || !TryComp(entity, out PowerCellDrawComponent? cellDrawComp) + || args.Cancelled) + return; + + // Prevents sealing if wires panel is opened + if (TryComp(entity, out WiresPanelComponent? panel) && panel.Open) + { + _popupSystem.PopupClient(Loc.GetString(entity.Comp.ClosePanelFirstPopup), entity, args.User); + args.Cancel(); + return; + } + + // Control shouldn't use charge on unsealing + if (controlComp.IsCurrentlySealed) + return; + + if (!_powerCellSystem.HasDrawCharge(entity, cellDrawComp) || !_powerCellSystem.HasActivatableCharge(entity, cellDrawComp)) + { + _popupSystem.PopupClient(Loc.GetString(entity.Comp.NotPoweredPopup), entity, args.User); + args.Cancel(); + } + } + + /// Prevents wires panel from opening if clothing is sealed + private void OnRequiresPowerChangePanelAttempt(Entity entity, ref AttemptChangePanelEvent args) + { + if (args.Cancelled || !TryComp(entity, out SealableClothingControlComponent? controlComp)) + return; + + if (controlComp.IsCurrentlySealed || controlComp.IsInProcess) + { + _popupSystem.PopupClient(Loc.GetString(entity.Comp.OpenSealedPanelFailPopup), entity, args.User); + args.Cancelled = true; + } + } +} + + diff --git a/Content.Shared/_Goobstation/Clothing/Systems/SharedSealableClothingSystem.cs b/Content.Shared/_Goobstation/Clothing/Systems/SharedSealableClothingSystem.cs new file mode 100644 index 0000000000..98d18e740d --- /dev/null +++ b/Content.Shared/_Goobstation/Clothing/Systems/SharedSealableClothingSystem.cs @@ -0,0 +1,392 @@ +using Content.Shared._Goobstation.Clothing.Components; +using Content.Shared.ActionBlocker; +using Content.Shared.Actions; +using Content.Shared.Clothing; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.DoAfter; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Popups; +using Content.Shared.PowerCell; +using Content.Shared.Verbs; +using Content.Shared.Wires; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Network; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared._Goobstation.Clothing.Systems; + +/// System used for sealable clothing +public abstract class SharedSealableClothingSystem : EntitySystem +{ + [Dependency] private readonly INetManager _netManager = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; + [Dependency] private readonly ActionContainerSystem _actionContainerSystem = default!; + [Dependency] private readonly ComponentTogglerSystem _componentTogglerSystem = default!; + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedPowerCellSystem _powerCellSystem = default!; + [Dependency] private readonly ToggleableClothingSystem _toggleableSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnPartSealingComplete); + + SubscribeLocalEvent(OnControlSealingComplete); + SubscribeLocalEvent(OnControlEquip); + SubscribeLocalEvent(OnControlUnequip); + SubscribeLocalEvent(OnControlRemove); + SubscribeLocalEvent(OnControlGetItemActions); + SubscribeLocalEvent>(OnEquipmentVerb); + SubscribeLocalEvent(OnControlMapInit); + SubscribeLocalEvent(OnSealClothingDoAfter); + SubscribeLocalEvent(OnControlSealEvent); + //SubscribeLocalEvent(OnStartSealingDoAfter); + SubscribeLocalEvent(OnToggleClothingAttempt); + } + + #region Events + + /// Toggles components on part when suit complete sealing process + private void OnPartSealingComplete(Entity part, ref ClothingPartSealCompleteEvent args) + => _componentTogglerSystem.ToggleComponent(part, args.IsSealed); + + /// Toggles components on control when suit complete sealing process + private void OnControlSealingComplete(Entity control, ref ClothingControlSealCompleteEvent args) + => _componentTogglerSystem.ToggleComponent(control, args.IsSealed); + + /// Add/Remove wearer on clothing equip/unequip + private void OnControlEquip(Entity control, ref ClothingGotEquippedEvent args) + { + control.Comp.WearerEntity = args.Wearer; + Dirty(control); + } + + private void OnControlUnequip(Entity control, ref ClothingGotUnequippedEvent args) + { + control.Comp.WearerEntity = null; + Dirty(control); + } + + /// Removes seal action on component remove + private void OnControlRemove(Entity control, ref ComponentRemove args) + { + var comp = control.Comp; + + _actionsSystem.RemoveAction(comp.SealActionEntity); + } + + /// Ensures seal action to wearer when it equip the seal control + private void OnControlGetItemActions(Entity control, ref GetItemActionsEvent args) + { + var (uid, comp) = control; + + if (comp.SealActionEntity == null || args.SlotFlags != comp.RequiredControlSlot) + return; + + args.AddAction(comp.SealActionEntity.Value); + } + + /// Adds unsealing verbs to sealing control allowing other users to unseal/seal clothing via stripping + private void OnEquipmentVerb(Entity control, ref GetVerbsEvent args) + { + var (uid, comp) = control; + var user = args.User; + + if (!args.CanComplexInteract + // Since sealing control in wearer's container system just won't show verb on args.CanAccess + || !_interactionSystem.InRangeUnobstructed(user, uid) + || comp.WearerEntity == null + || comp.WearerEntity != user + && _actionBlockerSystem.CanInteract(comp.WearerEntity.Value, null)) + return; + + var verbIcon = comp.IsCurrentlySealed ? + new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/unlock.svg.192dpi.png")) : + new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/lock.svg.192dpi.png")); + + var verb = new Verb() + { + Icon = verbIcon, + Priority = 5, + Text = Loc.GetString(comp.VerbText), + Act = () => TryStartSealToggleProcess(control, user) + }; + + /* This should make as do after to start unsealing of suit with verb, but, for some reason i couldn't figure out, it ends with doAfter enumerator change exception + * Would be nice if some can fix this, yet unsealing will be possible only on incapacitated wearers + if (args.User == comp.WearerEntity) + { + verb.Act = () => TryStartSealToggleProcess(control); + } + else + { + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, comp.NonWearerSealingTime, new StartSealingProcessDoAfterEvent(), uid) + { + RequireCanInteract = true, + BreakOnMove = true, + BlockDuplicate = true + }; + verb.Act = () => _doAfterSystem.TryStartDoAfter(doAfterArgs); + }*/ + + args.Verbs.Add(verb); + } + + /// Ensure actionEntity on map init + private void OnControlMapInit(Entity control, ref MapInitEvent args) + { + var (uid, comp) = control; + _actionContainerSystem.EnsureAction(uid, ref comp.SealActionEntity, comp.SealAction); + } + + /* This should make as do after to start unsealing of suit with verb, but, for some reason i couldn't figure out, it ends with doAfter enumerator change exception + * Would be nice if some can fix this, yet unsealing will be possible only on incapacitated wearers + private void OnStartSealingDoAfter(Entity control, ref StartSealingProcessDoAfterEvent args) + { + if (args.Cancelled) + return; + + TryStartSealToggleProcess(control); + }*/ + + /// Trying to start sealing on action. It'll notify wearer if process already started + private void OnControlSealEvent(Entity control, ref SealClothingEvent args) + { + var (uid, comp) = control; + + if (!_actionBlockerSystem.CanInteract(args.Performer, null)) + return; + + if (comp.IsInProcess) + { + if (comp.IsCurrentlySealed) + { + _popupSystem.PopupClient(Loc.GetString(comp.SealedInProcessToggleFailPopup), uid, args.Performer); + _audioSystem.PlayPredicted(comp.FailSound, uid, args.Performer); + } + else + { + _popupSystem.PopupClient(Loc.GetString(comp.UnsealedInProcessToggleFailPopup), uid, args.Performer); + _audioSystem.PlayPredicted(comp.FailSound, uid, args.Performer); + } + + return; + } + + TryStartSealToggleProcess(control, args.Performer); + } + + /// Toggle seal on one part and starts same process on next part + private void OnSealClothingDoAfter(Entity control, ref SealClothingDoAfterEvent args) + { + var (uid, comp) = control; + + if (args.Cancelled || args.Handled || args.Target == null) + return; + + var part = args.Target; + + if (!TryComp(part, out var sealableComponent)) + return; + + sealableComponent.IsSealed = !comp.IsCurrentlySealed; + + Dirty(part.Value, sealableComponent); + + _audioSystem.PlayPvs(sealableComponent.SealUpSound, uid); + + _appearanceSystem.SetData(part.Value, SealableClothingVisuals.Sealed, sealableComponent.IsSealed); + + var ev = new ClothingPartSealCompleteEvent(sealableComponent.IsSealed); + RaiseLocalEvent(part.Value, ref ev); + + NextSealProcess(control); + } + + /// Prevents clothing from toggling if it's sealed or in sealing process + private void OnToggleClothingAttempt(Entity control, ref ToggleClothingAttemptEvent args) + { + var (uid, comp) = control; + + // Popup if currently sealing + if (comp.IsInProcess) + { + _popupSystem.PopupClient(Loc.GetString(comp.UnsealedInProcessToggleFailPopup), uid, args.User); + _audioSystem.PlayPredicted(comp.FailSound, uid, args.User); + args.Cancel(); + + return; + } + + // Popup if sealed, but not in process + if (comp.IsCurrentlySealed) + { + _popupSystem.PopupClient(Loc.GetString(comp.CurrentlySealedToggleFailPopup), uid, args.User); + _audioSystem.PlayPredicted(comp.FailSound, uid, args.User); + args.Cancel(); + + return; + } + + return; + } + #endregion + + /// Tries to start sealing process + public bool TryStartSealToggleProcess(Entity control, EntityUid? user = null) + { + var (uid, comp) = control; + + // Prevent sealing/unsealing if modsuit don't have wearer or already started process + if (comp.WearerEntity == null || comp.IsInProcess) + return false; + + if (user == null) + user = comp.WearerEntity; + + var ev = new ClothingSealAttemptEvent(user.Value); + RaiseLocalEvent(control, ev); + + if (ev.Cancelled) + return false; + + // All parts required to be toggled to perform sealing + if (_toggleableSystem.GetAttachedToggleStatus(uid) != ToggleableClothingAttachedStatus.AllToggled) + { + _popupSystem.PopupClient(Loc.GetString(comp.ToggleFailedPopup), uid, user); + _audioSystem.PlayPredicted(comp.FailSound, uid, user); + return false; + } + + // Trying to get all clothing to seal + var sealeableList = _toggleableSystem.GetAttachedClothingsList(uid); + if (sealeableList == null) + return false; + + foreach (var sealeable in sealeableList) + { + if (!HasComp(sealeable)) + { + _popupSystem.PopupEntity(Loc.GetString(comp.ToggleFailedPopup), uid); + _audioSystem.PlayPredicted(comp.FailSound, uid, user); + + comp.ProcessQueue.Clear(); + Dirty(control); + + return false; + } + + comp.ProcessQueue.Enqueue(EntityManager.GetNetEntity(sealeable)); + } + + comp.IsInProcess = true; + Dirty(control); + + NextSealProcess(control); + + return true; + } + + /// Recursively seals/unseals all parts of sealable clothing + private void NextSealProcess(Entity control) + { + var (uid, comp) = control; + + // Finish sealing process + if (comp.ProcessQueue.Count == 0) + { + comp.IsInProcess = false; + comp.IsCurrentlySealed = !comp.IsCurrentlySealed; + + _audioSystem.PlayEntity(comp.IsCurrentlySealed ? comp.SealCompleteSound : comp.UnsealCompleteSound, comp.WearerEntity!.Value, uid); + + var ev = new ClothingControlSealCompleteEvent(comp.IsCurrentlySealed); + RaiseLocalEvent(control, ref ev); + + _appearanceSystem.SetData(uid, SealableClothingVisuals.Sealed, comp.IsCurrentlySealed); + + Dirty(control); + return; + } + + var processingPart = EntityManager.GetEntity(comp.ProcessQueue.Dequeue()); + Dirty(control); + + if (!TryComp(processingPart, out var sealableComponent) || !comp.IsInProcess) + { + _popupSystem.PopupClient(Loc.GetString(comp.ToggleFailedPopup), uid, comp.WearerEntity); + _audioSystem.PlayPredicted(comp.FailSound, uid, comp.WearerEntity); + + NextSealProcess(control); + return; + } + + // If part is sealed when control trying to seal - it should just skip this part + if (sealableComponent.IsSealed != comp.IsCurrentlySealed) + { + NextSealProcess(control); + return; + } + + var doAfterArgs = new DoAfterArgs(EntityManager, uid, sealableComponent.SealingTime, new SealClothingDoAfterEvent(), uid, target: processingPart, showTo: comp.WearerEntity) + { + NeedHand = false, + RequireCanInteract = false, + }; + + // Checking for client here to skip first process popup spam that happens. Predicted popups don't work here because doafter starts on sealable control, not on player. + if (!_doAfterSystem.TryStartDoAfter(doAfterArgs) || _netManager.IsClient) + return; + + if (comp.IsCurrentlySealed) + + _popupSystem.PopupEntity(Loc.GetString(sealableComponent.SealDownPopup, + ("partName", Identity.Name(processingPart, EntityManager))), + uid, comp.WearerEntity!.Value); + else + _popupSystem.PopupEntity(Loc.GetString(sealableComponent.SealUpPopup, + ("partName", Identity.Name(processingPart, EntityManager))), + uid, comp.WearerEntity!.Value); + } +} + +[Serializable, NetSerializable] +public sealed partial class SealClothingDoAfterEvent : SimpleDoAfterEvent { } + +[Serializable, NetSerializable] +public sealed partial class StartSealingProcessDoAfterEvent : SimpleDoAfterEvent { } + +public sealed partial class SealClothingEvent : InstantActionEvent { } + +/// Raises on control when clothing finishes it's sealing or unsealing process +[ByRefEvent] +public readonly record struct ClothingControlSealCompleteEvent(bool IsSealed) +{ + public readonly bool IsSealed = IsSealed; +} + +/// Raises on part when clothing finishes it's sealing or unsealing process +[ByRefEvent] +public readonly record struct ClothingPartSealCompleteEvent(bool IsSealed) +{ + public readonly bool IsSealed = IsSealed; +} + +public sealed partial class ClothingSealAttemptEvent : CancellableEntityEventArgs +{ + public EntityUid User; + + public ClothingSealAttemptEvent(EntityUid user) + { + User = user; + } +} diff --git a/Content.Shared/_Goobstation/Wires/Components/ItemSlotsRequirePanelComponent.cs b/Content.Shared/_Goobstation/Wires/Components/ItemSlotsRequirePanelComponent.cs new file mode 100644 index 0000000000..dea1445bff --- /dev/null +++ b/Content.Shared/_Goobstation/Wires/Components/ItemSlotsRequirePanelComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Containers.ItemSlots; +using Robust.Shared.GameStates; + +namespace Content.Shared._Goobstation.Wires.Components; + +/// This is used for items slots that require entity to have wire panel for interactions +[RegisterComponent] +[NetworkedComponent] +public sealed partial class ItemSlotsRequirePanelComponent : Component +{ + /// For each slot: true - slot require opened panel for interaction, false - slot require closed panel for interaction + [DataField] + public Dictionary Slots = new(); +} diff --git a/Content.Shared/_Goobstation/Wires/Systems/RequirePanelSystem.cs b/Content.Shared/_Goobstation/Wires/Systems/RequirePanelSystem.cs new file mode 100644 index 0000000000..10c48f419a --- /dev/null +++ b/Content.Shared/_Goobstation/Wires/Systems/RequirePanelSystem.cs @@ -0,0 +1,37 @@ +using Content.Shared._Goobstation.Wires.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Wires; + +namespace Content.Shared._Goobstation.Wires.Systems; + +public sealed partial class RequirePanelSystem : EntitySystem +{ + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(ItemSlotInsertAttempt); + SubscribeLocalEvent(ItemSlotEjectAttempt); + } + + private void ItemSlotInsertAttempt(Entity entity, ref ItemSlotInsertAttemptEvent args) + => args.Cancelled = !CheckPanelStateForItemSlot(entity, args.Slot.ID); + + private void ItemSlotEjectAttempt(Entity entity, ref ItemSlotEjectAttemptEvent args) + => args.Cancelled = !CheckPanelStateForItemSlot(entity, args.Slot.ID); + + public bool CheckPanelStateForItemSlot(Entity entity, string? slot) + { + var (uid, comp) = entity; + + if (slot == null + // If slot doesn't require a wire panel - don't cancel interaction + || !comp.Slots.TryGetValue(slot, out var isRequireOpen) + || !TryComp(uid, out var wiresPanel)) + return false; + + return wiresPanel.Open == isRequireOpen; + } +} diff --git a/Directory.Packages.props b/Directory.Packages.props index eee8c65f9a..b5643d476a 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -15,5 +15,6 @@ + diff --git a/Resources/Audio/DeltaV/Voice/Chitinid/attributions.yml b/Resources/Audio/DeltaV/Voice/Chitinid/attributions.yml new file mode 100644 index 0000000000..5d6386b81d --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Chitinid/attributions.yml @@ -0,0 +1,9 @@ +- files: ["moth_scream.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/tgstation/tgstation/commit/31c19654e0f641166ecd80c672ea05362fd19488" + source: "https://github.com/tgstation/tgstation/commits/master/sound/voice/moth/scream_moth.ogg" + +- files: ["moth_laugh.ogg, moth_chitter.ogg, moth_squeak.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/BeeStation/BeeStation-Hornet/commit/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d" + source: "https://github.com/BeeStation/BeeStation-Hornet/blob/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d/sound/emotes/" diff --git a/Resources/Audio/DeltaV/Voice/Chitinid/male_cough_1.ogg b/Resources/Audio/DeltaV/Voice/Chitinid/male_cough_1.ogg new file mode 100644 index 0000000000..8ddc420244 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Chitinid/male_cough_1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Chitinid/moth_chitter.ogg b/Resources/Audio/DeltaV/Voice/Chitinid/moth_chitter.ogg new file mode 100644 index 0000000000..b7240a5653 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Chitinid/moth_chitter.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Chitinid/moth_laugh.ogg b/Resources/Audio/DeltaV/Voice/Chitinid/moth_laugh.ogg new file mode 100644 index 0000000000..d3c2865ab6 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Chitinid/moth_laugh.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Chitinid/moth_scream.ogg b/Resources/Audio/DeltaV/Voice/Chitinid/moth_scream.ogg new file mode 100644 index 0000000000..482086fb63 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Chitinid/moth_scream.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Chitinid/moth_squeak.ogg b/Resources/Audio/DeltaV/Voice/Chitinid/moth_squeak.ogg new file mode 100644 index 0000000000..5b77d98e56 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Chitinid/moth_squeak.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 603a379ab3..b6cf88c1e4 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -88,3 +88,22 @@ license: "CC0-1.0" copyright: "Made by philRacoIndie freesound.org, modified by Skubman" source: "https://freesound.org/people/nhaudio/sounds/179203/" + +- files: + - tacsuit_step_00.ogg + - tacsuit_step_01.ogg + - tacsuit_step_02.ogg + license: "CC-BY-SA-3.0" + copyright: "Made by majormoth(Discord)" + source: "https://discord.com/channels/1301753657024319488/1332696230572331048/1335279751866351759" + +- files: + - gear1.ogg + - gear2.ogg + - gear3.ogg + - gear4.ogg + - gear5.ogg + - gear6.ogg + license: "Custom" + copyright: "Valve Software, Non-Commercial Steam Subscriber Agreement" + source: "https://store.steampowered.com/app/220/HalfLife_2/" diff --git a/Resources/Audio/Effects/Footsteps/gear1.ogg b/Resources/Audio/Effects/Footsteps/gear1.ogg new file mode 100644 index 0000000000..65685e01be Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/gear1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/gear2.ogg b/Resources/Audio/Effects/Footsteps/gear2.ogg new file mode 100644 index 0000000000..fabf527050 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/gear2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/gear3.ogg b/Resources/Audio/Effects/Footsteps/gear3.ogg new file mode 100644 index 0000000000..26668c31e1 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/gear3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/gear4.ogg b/Resources/Audio/Effects/Footsteps/gear4.ogg new file mode 100644 index 0000000000..d73a59fd6f Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/gear4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/gear5.ogg b/Resources/Audio/Effects/Footsteps/gear5.ogg new file mode 100644 index 0000000000..12a82dec9d Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/gear5.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/gear6.ogg b/Resources/Audio/Effects/Footsteps/gear6.ogg new file mode 100644 index 0000000000..935d31a2b1 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/gear6.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/tacsuit_step_00.ogg b/Resources/Audio/Effects/Footsteps/tacsuit_step_00.ogg new file mode 100644 index 0000000000..343ee26ea2 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/tacsuit_step_00.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/tacsuit_step_01.ogg b/Resources/Audio/Effects/Footsteps/tacsuit_step_01.ogg new file mode 100644 index 0000000000..2209e86da5 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/tacsuit_step_01.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/tacsuit_step_02.ogg b/Resources/Audio/Effects/Footsteps/tacsuit_step_02.ogg new file mode 100644 index 0000000000..22dc965533 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/tacsuit_step_02.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/attributions.yml b/Resources/Audio/EstacaoPirata/Effects/Cards/attributions.yml new file mode 100644 index 0000000000..879bb3bc04 --- /dev/null +++ b/Resources/Audio/EstacaoPirata/Effects/Cards/attributions.yml @@ -0,0 +1,6 @@ +- files: [ "cardFan1.ogg", "cardFan2.ogg", "cardOpenPackage1.ogg", "cardOpenPackage2.ogg", "cardPlace1.ogg", "cardPlace2.ogg", "cardPlace3.ogg", "cardPlace4.ogg", "cardShove1.ogg", "cardShove2.ogg", "cardShove3.ogg", "cardShove4.ogg", "cardShuffle.ogg", "cardSlide1.ogg", "cardSlide2.ogg", "cardSlide3.ogg", "cardSlide4.ogg", "cardSlide5.ogg", "cardSlide6.ogg", "cardSlide7.ogg", "cardSlide8.ogg", "cardTakeOutPackage1.ogg", "cardTakeOutPackage2.ogg"] + license: "CC0-1.0" + copyright: "Kenney.nl" + source: "https://opengameart.org/content/54-casino-sound-effects-cards-dice-chips" + + diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardFan1.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardFan1.ogg new file mode 100644 index 0000000000..6d059e204b Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardFan1.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardFan2.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardFan2.ogg new file mode 100644 index 0000000000..b744067444 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardFan2.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardOpenPackage1.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardOpenPackage1.ogg new file mode 100644 index 0000000000..9d04ade0be Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardOpenPackage1.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardOpenPackage2.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardOpenPackage2.ogg new file mode 100644 index 0000000000..32afa72eb7 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardOpenPackage2.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace1.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace1.ogg new file mode 100644 index 0000000000..61d8b7170f Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace1.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace2.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace2.ogg new file mode 100644 index 0000000000..827baa8dfd Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace2.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace3.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace3.ogg new file mode 100644 index 0000000000..7f1b11ce4c Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace3.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace4.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace4.ogg new file mode 100644 index 0000000000..088455b47d Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardPlace4.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove1.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove1.ogg new file mode 100644 index 0000000000..89fb73a9a5 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove1.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove2.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove2.ogg new file mode 100644 index 0000000000..5b625d3012 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove2.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove3.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove3.ogg new file mode 100644 index 0000000000..282d1a870e Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove3.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove4.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove4.ogg new file mode 100644 index 0000000000..cc10d9248d Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShove4.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardShuffle.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShuffle.ogg new file mode 100644 index 0000000000..6b2724fe5e Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardShuffle.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide1.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide1.ogg new file mode 100644 index 0000000000..9545e24485 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide1.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide2.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide2.ogg new file mode 100644 index 0000000000..d41969c20b Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide2.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide3.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide3.ogg new file mode 100644 index 0000000000..4e22952217 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide3.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide4.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide4.ogg new file mode 100644 index 0000000000..47dd7e9032 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide4.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide5.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide5.ogg new file mode 100644 index 0000000000..281d89da0a Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide5.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide6.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide6.ogg new file mode 100644 index 0000000000..b11d1b9092 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide6.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide7.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide7.ogg new file mode 100644 index 0000000000..700e64b893 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide7.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide8.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide8.ogg new file mode 100644 index 0000000000..8aff3ea887 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardSlide8.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage1.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage1.ogg new file mode 100644 index 0000000000..cc90ece158 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage1.ogg differ diff --git a/Resources/Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage2.ogg b/Resources/Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage2.ogg new file mode 100644 index 0000000000..95755e6614 Binary files /dev/null and b/Resources/Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage2.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index cd257ada22..be04c55c64 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -166,7 +166,7 @@ license: "CC0-1.0" copyright: "by Ko4erga" source: "https://github.com/space-wizards/space-station-14/pull/30431" - + - files: ["double_ring.ogg"] license: "CC0-1.0" copyright: "Created by fspera, converted to OGG and modified by chromiumboy." @@ -180,3 +180,8 @@ license: "CC0-1.0" copyright: "by ScarKy0" source: "https://github.com/space-wizards/space-station-14/pull/32012" + +- files: ["scanbuzz.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG station" + source: "https://github.com/tgstation/tgstation/pull/39986" diff --git a/Resources/Audio/Machines/scanbuzz.ogg b/Resources/Audio/Machines/scanbuzz.ogg new file mode 100644 index 0000000000..d3422bc8f4 Binary files /dev/null and b/Resources/Audio/Machines/scanbuzz.ogg differ diff --git a/Resources/Audio/Voice/Plasmaman/attributions.yml b/Resources/Audio/Voice/Plasmaman/attributions.yml new file mode 100644 index 0000000000..c2baecc2b6 --- /dev/null +++ b/Resources/Audio/Voice/Plasmaman/attributions.yml @@ -0,0 +1,7 @@ +- files: + - plasmaman_scream_1.ogg + - plasmaman_scream_2.ogg + - plasmaman_scream_3.ogg + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/tgstation/tgstation/commit/436ba869ebcd0b60b63973fb7562f447ee655205 and volume reduced by Skubman" + source: "https://github.com/tgstation/tgstation" diff --git a/Resources/Audio/Voice/Plasmaman/plasmaman_scream_1.ogg b/Resources/Audio/Voice/Plasmaman/plasmaman_scream_1.ogg new file mode 100644 index 0000000000..f068794506 Binary files /dev/null and b/Resources/Audio/Voice/Plasmaman/plasmaman_scream_1.ogg differ diff --git a/Resources/Audio/Voice/Plasmaman/plasmaman_scream_2.ogg b/Resources/Audio/Voice/Plasmaman/plasmaman_scream_2.ogg new file mode 100644 index 0000000000..e61619c027 Binary files /dev/null and b/Resources/Audio/Voice/Plasmaman/plasmaman_scream_2.ogg differ diff --git a/Resources/Audio/Voice/Plasmaman/plasmaman_scream_3.ogg b/Resources/Audio/Voice/Plasmaman/plasmaman_scream_3.ogg new file mode 100644 index 0000000000..ac8b8ec21f Binary files /dev/null and b/Resources/Audio/Voice/Plasmaman/plasmaman_scream_3.ogg differ diff --git a/Resources/Audio/Weapons/attributions.yml b/Resources/Audio/Weapons/attributions.yml index 310b01b728..11e8199c87 100644 --- a/Resources/Audio/Weapons/attributions.yml +++ b/Resources/Audio/Weapons/attributions.yml @@ -82,8 +82,13 @@ license: "CC0-1.0" copyright: "Taken from ScreamStudio on freesound.org" source: "https://freesound.org/people/ScreamStudio/sounds/392617/" - + - files: ["pop.ogg"] license: "CC0-1.0" copyright: "Taken from 0ne_one111yt on freesound.org" source: "https://freesound.org/people/0ne_one111yt/sounds/478213/" + +- files: ["firepunch1.ogg", "firepunch2.ogg", "firepunch3.ogg", "firepunch4.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13. Remixed to mono where it was stereo by metalgearsloth then added punch sound effects by Skubman" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/cc701aedb633d83eae8339a8b3712ad8ad99cca0/sound" diff --git a/Resources/Audio/Weapons/firepunch1.ogg b/Resources/Audio/Weapons/firepunch1.ogg new file mode 100644 index 0000000000..6f13ff9cef Binary files /dev/null and b/Resources/Audio/Weapons/firepunch1.ogg differ diff --git a/Resources/Audio/Weapons/firepunch2.ogg b/Resources/Audio/Weapons/firepunch2.ogg new file mode 100644 index 0000000000..fe4e7ef41b Binary files /dev/null and b/Resources/Audio/Weapons/firepunch2.ogg differ diff --git a/Resources/Audio/Weapons/firepunch3.ogg b/Resources/Audio/Weapons/firepunch3.ogg new file mode 100644 index 0000000000..2503a66583 Binary files /dev/null and b/Resources/Audio/Weapons/firepunch3.ogg differ diff --git a/Resources/Audio/Weapons/firepunch4.ogg b/Resources/Audio/Weapons/firepunch4.ogg new file mode 100644 index 0000000000..c656d6c8ca Binary files /dev/null and b/Resources/Audio/Weapons/firepunch4.ogg differ diff --git a/Resources/Audio/_DV/Voice/Chitinid/attributions.yml b/Resources/Audio/_DV/Voice/Chitinid/attributions.yml new file mode 100644 index 0000000000..5d6386b81d --- /dev/null +++ b/Resources/Audio/_DV/Voice/Chitinid/attributions.yml @@ -0,0 +1,9 @@ +- files: ["moth_scream.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/tgstation/tgstation/commit/31c19654e0f641166ecd80c672ea05362fd19488" + source: "https://github.com/tgstation/tgstation/commits/master/sound/voice/moth/scream_moth.ogg" + +- files: ["moth_laugh.ogg, moth_chitter.ogg, moth_squeak.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/BeeStation/BeeStation-Hornet/commit/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d" + source: "https://github.com/BeeStation/BeeStation-Hornet/blob/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d/sound/emotes/" diff --git a/Resources/Audio/_DV/Voice/Chitinid/male_cough_1.ogg b/Resources/Audio/_DV/Voice/Chitinid/male_cough_1.ogg new file mode 100644 index 0000000000..8ddc420244 Binary files /dev/null and b/Resources/Audio/_DV/Voice/Chitinid/male_cough_1.ogg differ diff --git a/Resources/Audio/_DV/Voice/Chitinid/moth_chitter.ogg b/Resources/Audio/_DV/Voice/Chitinid/moth_chitter.ogg new file mode 100644 index 0000000000..b7240a5653 Binary files /dev/null and b/Resources/Audio/_DV/Voice/Chitinid/moth_chitter.ogg differ diff --git a/Resources/Audio/_DV/Voice/Chitinid/moth_laugh.ogg b/Resources/Audio/_DV/Voice/Chitinid/moth_laugh.ogg new file mode 100644 index 0000000000..d3c2865ab6 Binary files /dev/null and b/Resources/Audio/_DV/Voice/Chitinid/moth_laugh.ogg differ diff --git a/Resources/Audio/_DV/Voice/Chitinid/moth_scream.ogg b/Resources/Audio/_DV/Voice/Chitinid/moth_scream.ogg new file mode 100644 index 0000000000..482086fb63 Binary files /dev/null and b/Resources/Audio/_DV/Voice/Chitinid/moth_scream.ogg differ diff --git a/Resources/Audio/_DV/Voice/Chitinid/moth_squeak.ogg b/Resources/Audio/_DV/Voice/Chitinid/moth_squeak.ogg new file mode 100644 index 0000000000..5b77d98e56 Binary files /dev/null and b/Resources/Audio/_DV/Voice/Chitinid/moth_squeak.ogg differ diff --git a/Resources/Audio/_Goobstation/Machines/attributions.yml b/Resources/Audio/_Goobstation/Machines/attributions.yml new file mode 100644 index 0000000000..7623347dab --- /dev/null +++ b/Resources/Audio/_Goobstation/Machines/attributions.yml @@ -0,0 +1,4 @@ +- files: ["computer_end.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from TG station." + source: "https://github.com/tgstation/tgstation/pull/32336" diff --git a/Resources/Audio/_Goobstation/Machines/computer_end.ogg b/Resources/Audio/_Goobstation/Machines/computer_end.ogg new file mode 100644 index 0000000000..9294405573 Binary files /dev/null and b/Resources/Audio/_Goobstation/Machines/computer_end.ogg differ diff --git a/Resources/Audio/_Goobstation/Mecha/attributions.yml b/Resources/Audio/_Goobstation/Mecha/attributions.yml new file mode 100644 index 0000000000..0caf2522fc --- /dev/null +++ b/Resources/Audio/_Goobstation/Mecha/attributions.yml @@ -0,0 +1,4 @@ +- files: ["nominal.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from TG station." + source: "https://github.com/tgstation/tgstation/commit/3517810d119fcb5eeb9d477c87cda3eb3cd2048c" diff --git a/Resources/Audio/_Goobstation/Mecha/nominal.ogg b/Resources/Audio/_Goobstation/Mecha/nominal.ogg new file mode 100644 index 0000000000..b89bd39616 Binary files /dev/null and b/Resources/Audio/_Goobstation/Mecha/nominal.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 193b397ddb..89c8d8a08d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -10413,3 +10413,632 @@ Entries: id: 6736 time: '2025-01-20T02:43:40.0000000+00:00' url: https://github.com/Simple-Station/Einstein-Engines/pull/1609 +- author: Mike32oz + changes: + - type: Add + message: ATS, light post, snacks/drinks vendors. + - type: Tweak + message: ATS, tiny fan, convenient belt. + - type: Remove + message: ATS, spawn-MobBear in the Maintenance room. + id: 6737 + time: '2025-01-20T04:51:26.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1612 +- author: Erisfiregamer1 + changes: + - type: Add + message: >- + Added the Disk Burner, the Modular Computer as a board and a way to make + computer disks. + id: 6738 + time: '2025-01-20T04:52:00.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1580 +- author: Several contributors + changes: + - type: Add + message: >- + Added a new central command map that is randomly picked alongside the + old one (thank you to Spanky from Harmony) + - type: Add + message: Added Advanced SMES for mappers. + - type: Add + message: >- + Added the atmospheric network monitor for seeing what the temperature, + moles, and pressure is on every pipe everywhere through a computer. + - type: Add + message: Nukie med bundle now contains a compact defibrillator. + - type: Add + message: Ported a better mapping editor. + - type: Add + message: Added the throngler plushie. + - type: Remove + message: Removed the Throngler as a possible loot spawn for gamble crates. + id: 6739 + time: '2025-01-20T07:24:23.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1610 +- author: sleepyyapril + changes: + - type: Fix + message: The medbay fent zombie epidemic is now fixed. + id: 6740 + time: '2025-01-20T08:13:06.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1614 +- author: CerberusWolfie + changes: + - type: Add + message: >- + Added Psionics Registry Computer. Now you can record Psionics users in + Epistemics. + - type: Add + message: >- + Added epi-glasses and epi-HUD to see Psionics Users icons. (Chaplain, + Cataloguer, Mantis, and Mystagogue have access in loadout). + - type: Add + message: Added PsiWatch. Now you can see the Psionics Records data on your PDA! + - type: Fix + message: Fixed Chaplain not having any programs in their PDA on spawn. + id: 6741 + time: '2025-01-20T09:50:34.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1598 +- author: DEATHB4DEFEAT + changes: + - type: Tweak + message: Made the Redshirt trait's description say what it does + id: 6742 + time: '2025-01-20T19:35:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1616 +- author: CerberusWolfie + changes: + - type: Add + message: Added MedTek to Blushield Officer PDA. + - type: Tweak + message: >- + Blueshield Officer now has a Central Command Headset instead of an + All-Access Command Headset. + id: 6743 + time: '2025-01-20T21:34:51.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1617 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed the Supermatter engine math so that it actually respects the + server's tickrate. It should now be SIGNIFICANTLY less likely to enter a + plasma fire death spiral. If it does catch fire, just make sure coolant + is being pumped into the engine, and start blasting it with a fire + extinguisher. + id: 6744 + time: '2025-01-20T23:13:35.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1618 +- author: sleepyyapril + changes: + - type: Tweak + message: Tweaked puddles and footsteps to be able to see them in context menu. + id: 6745 + time: '2025-01-20T23:28:51.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1620 +- author: VMSolidus + changes: + - type: Add + message: >- + Singularity and Tesla are now affected by objects thrown into them, + causing them to change directions. Unless a traitor intervenes (with a + Singularity Beacon), a "Singuloose" is extremely likely to be blown out + to space. + id: 6746 + time: '2025-01-21T00:18:24.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1619 +- author: sleepyyapril + changes: + - type: Remove + message: Remove mana. + id: 6747 + time: '2025-01-21T02:06:29.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1623 +- author: Timfa2112 + changes: + - type: Add + message: >- + Added GladiaBots. Make them in the Build menu and challenge your + friends! + - type: Tweak + message: >- + Tweaked HTN combat behaviours to allow for a random deviation in attack + time. At the moment, only the Gladiabot uses it. + - type: Tweak + message: >- + Tweaked the faction code to allow for factions explicitly hostile to + themselves. + id: 6748 + time: '2025-01-21T14:56:35.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1548 +- author: VMSolidus + changes: + - type: Add + message: >- + Harpies can now wear pants, and have a displacement map to make them + look less terrible when doing so. + id: 6749 + time: '2025-01-22T21:44:47.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1633 +- author: sleepyyapril + changes: + - type: Tweak + message: >- + The H.O.N.K. has received an airtight cabin for honk operations in outer + space. + - type: Add + message: >- + Added the Ripley MK-II, a heavy, slow all-purpose mech, featuring a + pressurized cabin for space operations. + - type: Add + message: >- + Added the Clarke, A fast moving mech for space travel, with built in + thrusters (not certain if they work properly though :trollface:) + - type: Add + message: >- + Added the Gygax, a lightly armored and highly mobile mech with enough + force to rip walls, or someone's head off. + - type: Add + message: >- + Added the Durand, a slow but beefy combat suit that you dont want to + fight in close quarters. + - type: Add + message: Added the Marauder, a specialized mech issued to ERT operatives. + - type: Add + message: Added the Seraph, a specialized combat suit issued to ??? operatives. + - type: Add + message: >- + The syndicate has started issuing units under the codenames "Dark Gygax" + and "Mauler" to syndicate agents at an introductory price. + - type: Add + message: The exosuit fabricator can now be emagged to reveal new recipes. + - type: Add + message: >- + There are 4 new bounties cargo can fulfill for mechs. Feedback on the + cost/reward is welcome! + id: 6750 + time: '2025-01-23T00:16:33.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1611 +- author: sleepyyapril + changes: + - type: Add + message: Added cosmetic pronouns. (disabled by default) + - type: Add + message: >- + Added Station AI name customization through character customization. + (disabled by default) + - type: Add + message: >- + Added Cyborg name customization through character customization. + (disabled by default) + id: 6751 + time: '2025-01-23T00:19:49.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1626 +- author: BlueHNT + changes: + - type: Add + message: Added 2 new security loadout items + - type: Tweak + message: Tweaked BSO's ammo + - type: Fix + message: Fixed energy cutlass sprite + - type: Remove + message: Removed broken Ion component + id: 6752 + time: '2025-01-23T00:22:22.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1599 +- author: Mike32oz + changes: + - type: Add + message: >- + Box Station, supermatter crystal, holopads, and Thermal-electric + generator. + - type: Tweak + message: >- + Box Station, Engineer, Medical, Epistemics, Cargo, Security, and Service + Departments. + - type: Remove + message: Box Station, Particle Accelerator Room in Engineer Departments. + id: 6753 + time: '2025-01-23T01:11:05.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1615 +- author: VMSolidus + changes: + - type: Add + message: >- + (For Developers): Added the MathNet.Numerics library. It contains a + great number of scientific and engineering math related functions. For + more information, its documentation can be found here, + https://numerics.mathdotnet.com/api/MathNet.Numerics/index.htm + id: 6754 + time: '2025-01-23T03:45:53.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1641 +- author: BlueHNT + changes: + - type: Tweak + message: Tweaked lamia bite + id: 6755 + time: '2025-01-24T22:29:08.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1645 +- author: CerberusWolfie + changes: + - type: Tweak + message: >- + Logistics Officer now has 30 hours instead of 40 hours of time + requirement overall. + - type: Tweak + message: >- + Chief Engineer and CMO have 25 hours instead of 30 hours of time + requirement. + - type: Tweak + message: Mystagogue now has 5 hours of time requirement as Mantis and Cataloguer. + id: 6756 + time: '2025-01-25T00:53:51.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1649 +- author: Timfa + changes: + - type: Add + message: Add Batonbot + - type: Add + message: Add Disablerbot + id: 6757 + time: '2025-01-25T16:58:46.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1631 +- author: Erisfiregamer1 + changes: + - type: Add + message: Modsuits have been ported from Goobstation! + id: 6758 + time: '2025-01-25T17:17:45.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1640 +- author: sleepyyapril + changes: + - type: Add + message: >- + A new ChemMaster experience has been granted to the people of Einstein + Engines. Includes a pill buffer! + id: 6759 + time: '2025-01-25T17:29:37.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1650 +- author: VMSolidus + changes: + - type: Add + message: >- + Engineering Hardsuits, Maxim Hardsuit, and Cybersun's Elite Tacsuit now + all make the wearer immune to atmos fires. Have fun walking directly + into the supermatter engine. Play out your heroic engineer fantasy by + dragging the supermatter crystal to space in order to save the station. + id: 6760 + time: '2025-01-25T17:31:35.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1445 +- author: RadsammyT + changes: + - type: Add + message: >- + Playing Cards. You may get one in the Games Vendor or as an item in your + loadout. + id: 6761 + time: '2025-01-25T18:34:15.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1451 +- author: ElusiveCoin + changes: + - type: Add + message: Added a new species, the Chitinid. + id: 6762 + time: '2025-01-25T20:12:52.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1644 +- author: sleepyyapril + changes: + - type: Tweak + message: >- + Kill random person objective has been replaced by teaching them a + lesson, removing the need to RR a random person. + id: 6763 + time: '2025-01-25T20:38:25.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1654 +- author: VMSolidus + changes: + - type: Fix + message: Fixed melee weapons having the wrong attack speed calculations(again) + id: 6764 + time: '2025-01-25T20:39:09.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1653 +- author: Skubman + changes: + - type: Add + message: >- + The Plasmaman species has arrived! They need to breathe plasma to live, + and a special jumpsuit to prevent oxygen from igniting them. In + exchange, they deal formidable unarmed Heat damage, are never hungry nor + thirsty, and are immune to cold and radiation damage. Read more about + Plasmamen in their Guidebook entry. + - type: Tweak + message: >- + Internals are no longer toggled off if you take your helmet off but + still have a gas mask on and vice versa. + - type: Tweak + message: >- + Paradox Anomalies will now spawn with the original person's Loadout + items. + - type: Fix + message: >- + Fixed prisoners not being able to have custom Loadout names and + descriptions, and heirlooms if they didn't have a backpack when joining. + id: 6765 + time: '2025-01-25T21:13:19.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1291 +- author: SX-7 + changes: + - type: Add + message: Added Tajara and related content + id: 6766 + time: '2025-01-26T00:53:00.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1647 +- author: Skubman + changes: + - type: Add + message: >- + New hairstyles have arrived, including all Goob LRP-original hairstyles, + Pulato, new facial hair and more! + - type: Add + message: 'Added epic IPC wings and Plasmaman wings. ' + - type: Add + message: Added the Iron Jaw face marking. + - type: Tweak + message: Increased the maximum number of Reptilian chest markings to 3. + - type: Fix + message: >- + Harpy, Arachne and Lamia can no longer pick the "No Ears" marking which + had no effect as they had no default ear markings. + id: 6767 + time: '2025-01-26T01:14:42.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1658 +- author: VMSolidus + changes: + - type: Remove + message: >- + Removed almost all of the EE DEFAULT playtime requirements. If you're a + downstream, set these yourself. + id: 6768 + time: '2025-01-26T02:13:32.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1660 +- author: SX-7 + changes: + - type: Fix + message: Fixed typos in guidebook entry for tajara + - type: Fix + message: Temperature related fixes for tajara + id: 6769 + time: '2025-01-26T12:51:39.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1664 +- author: sleepyyapril + changes: + - type: Fix + message: >- + ChemMaster no longer loses your last added progress because of a silly + goose move. + id: 6770 + time: '2025-01-26T15:44:04.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1663 +- author: ShirouAjisai + changes: + - type: Tweak + message: Mantis can no longer be a pacifist + id: 6771 + time: '2025-01-27T04:36:31.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1669 +- author: ShirouAjisai + changes: + - type: Add + message: Blueshield Officer now has CPR as a roundstart trait. + id: 6772 + time: '2025-01-27T05:41:33.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1672 +- author: sleepyyapril + changes: + - type: Fix + message: Other species can pick Cataloguer, Psionic Mantis, and Mystagogue again. + id: 6773 + time: '2025-01-27T05:41:56.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1673 +- author: ShirouAjisai + changes: + - type: Tweak + message: >- + Security Department can no longer have pacifist, muted, blind, brittle + bone disease, or foreigner traits. + - type: Tweak + message: >- + Head of Security can no longer have pacifist, muted, blind, brittle bone + disease, or foreigner traits. + - type: Tweak + message: Heads of staff can no longer have foreigner traits. + - type: Tweak + message: The Captain can no longer have pacifist or foreigner traits. + - type: Tweak + message: The Head of Personnel can no longer have foreigner traits. + - type: Tweak + message: The Administrative Assistant can no longer have foreigner traits. + id: 6774 + time: '2025-01-27T17:45:36.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1670 +- author: Skubman + changes: + - type: Tweak + message: >- + All plasma tanks of all kinds now have the correct output pressure for + use as Plasmamen internals. + - type: Tweak + message: >- + Plasmamen can no longer select the Temperature Tolerance trait which has + no effect since they are already immune to Cold damage. + - type: Fix + message: Reduced the price of mechs on the uplink. + - type: Fix + message: Thief game rule now properly selects more than one thief. + - type: Remove + message: Remove the Raise Glimmer To 500 traitor objective. + id: 6775 + time: '2025-01-27T19:34:53.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1676 +- author: Skubman + changes: + - type: Add + message: >- + Ghost Bar! When you die, you can now go to the Ghost Bar to chill and + talk about the round with other ghosts. (by Aidenkrz) + - type: Add + message: Foam Force rifle to cargo lottery! (by IProduceWidgets) + - type: Add + message: 'Re-enabled the Kill objective for traitors. ' + - type: Tweak + message: Reduced the chances of traitors getting the "Teach a Lesson" objective. + id: 6776 + time: '2025-01-28T00:39:57.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1675 +- author: Skubman + changes: + - type: Tweak + message: You can now clone living people. + - type: Tweak + message: Plasmamen no longer ignite while being cloned in a cloning pod. + id: 6777 + time: '2025-01-28T18:16:31.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1679 +- author: ShirouAjisai + changes: + - type: Add + message: Added Blueshield (Winter) Coat (Toggleable) + - type: Add + message: Added Blueshield Marine Armor + - type: Add + message: Added Blueshield Armor Vest + - type: Add + message: Added Blueshield Kimono + - type: Add + message: Added Blueshield Hardsuit + - type: Tweak + message: Fixed Blueshield loadout options + id: 6778 + time: '2025-01-29T08:09:14.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1682 +- author: Skubman + changes: + - type: Fix + message: >- + Plasmamen will no longer be slowed down near-permanently after their + temperature changes. + - type: Tweak + message: >- + Slightly lowered the temperature threshold in which Plasmamen start + getting Heat damage. + id: 6779 + time: '2025-01-29T08:22:41.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1681 +- author: CaasGit + changes: + - type: Add + message: Solar panels can now be upgraded with plasma or uranium glass. + id: 6780 + time: '2025-01-30T15:14:17.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1677 +- author: VMSolidus + changes: + - type: Tweak + message: >- + Psionic traits are now mutually exclusive with cybernetic traits, and + vice versa. + - type: Fix + message: >- + Thermographic Vision now correctly measures its pulse duration in + seconds instead of nanoseconds. It provides a 2 second scan. + id: 6781 + time: '2025-01-30T15:15:44.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1665 +- author: Mike32oz + changes: + - type: Add + message: Meta/Box stations, added psionics registry computer + - type: Add + message: 'Meta/Box stations, added command''s office Computer ID ' + - type: Fix + message: Meta/Box stations, fixed wires, tiny fan + - type: Tweak + message: Box Station, Expanded the Docking Bay for Salvage Pathfinder + - type: Remove + message: Meta/Box stations, antimov at upload + id: 6782 + time: '2025-01-30T15:16:54.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1687 +- author: Ichai + changes: + - type: Tweak + message: Change the AI Hologram to AI eye + id: 6783 + time: '2025-01-30T15:18:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1680 +- author: VMSolidus + changes: + - type: Add + message: >- + Clothing now supports having multiple species-specific layers, and + species-specific shaders. + - type: Add + message: >- + New "Unpainted" engineering hardsuit, and "Unpainted" Shanlin Tacsuit. + More to come soon. + - type: Add + message: >- + Unpainted variant of the "Shiwei" tacsuit(AKA: Elite suit). This one is + uniquely titanium white instead of the standard gunmetal grey. It can + either be ordered through cargo at an exhorbitant cost, or manufactured + with the Prototype Tacsuits research. + id: 6784 + time: '2025-01-31T20:22:45.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1692 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed an issue where Glimmer can reach infinite values under certain + conditions. + id: 6785 + time: '2025-01-31T23:42:34.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1694 +- author: VMSolidus and MajorMoth + changes: + - type: Add + message: Hardsuits now have sounds made when the wearer moves! + - type: Fix + message: >- + Fixed several bugs with EmitSoundOnMove. It no longer plays the same + sound 7 times in a row for the client. It can now differentiate between + items that must be worn to make sounds and otherwise. It can also have + variable distance needed to travel to make a sound. + - type: Add + message: >- + Hardsuits and Tacsuits are now separated into Light, Medium, and Heavy + categories, with each category having its own sound effects, mass, + throwing statistics, and don/doff time. Most hardsuits are Light. Most + Tacsuits are Medium. Some suits like Warden, Juggernaut, Nukie + Commander, and Mysta Bombsuit are heavy. + id: 6786 + time: '2025-02-01T17:46:07.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1698 +- author: dootythefrooty + changes: + - type: Fix + message: Fixed holopads being unable to be right clicked on. + id: 6787 + time: '2025-02-01T22:43:56.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1699 +- author: VMSolidus + changes: + - type: Add + message: >- + Added sound effects for all variety of "Tactical Webbing", such as + Security Webbing, Chest Rigs, etc. + id: 6788 + time: '2025-02-02T02:08:49.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1701 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 9871cc3f2d..3f03faddc1 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 2digitman, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Aerocrux, Aexolott, Aexxie, africalimedrop, afrokada, Agoichi, Ahion, Aidenkrz, Aikakakah, aitorlogedo, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, AlmondFlour, ALMv1, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, angelofallars, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, armoks, Arteben, ArthurMousatov, AruMoon, as334, AsikKEsel, asperger-sind, aspiringlich, aspiringLich, astriloqua, avghdev, AzzyIsNotHere, BananaFlambe, BasedPugilist, BasedUser, beck-thompson, benev0, BGare, bhespiritu, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, bloodrizer, Bloody2372, blueDev2, BlueHNT, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, BYONDFuckery, c0rigin, c4llv07e, CaasGit, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, CerberusWolfie, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, christhirtle, chromiumboy, Chronophylos, Chubbygummibear, CilliePaint, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, CodedCrow, Cohnway, cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, DarkenedSynergy, Darkenson, DawBla, Daxxi3, dch-GH, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DeltaV-Bot, DerbyX, derek, dersheppard, dexlerxd, dffdff2423, dge21, digitalic, DinoWattz, DJB1gYAPPA, DjfjdfofdjfjD, DocNITE, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, dootythefrooty, Dorragon, Doru991, DoubleRiceEddiedd, DoutorWhite, drakewill-CRL, Drayff, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, eclips_e, eden077, EEASAS, Efruit, efzapa, ElectroSR, elsie, elthundercloud, Emisse, emmafornash, EmoGarbage404, Endecc, enumerate0, eoineoineoin, eris, ERORR404V1, Errant-4, esguard, estacaoespacialpirata, eugene, Evgencheg, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, Fansana, Feluk6174, fenndragon, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, fl-oz, Flareguy, FluffiestFloof, FluffMe, FluidRock, flybik, flyingkarii, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, FoxxoTrystan, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, GalacticChimp, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, ghost581x, Git-Nivrak, gituhabu, GlassEclipse, gluesniffler, GNF54, Golinth, GoodWheatley, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, greggthefather, GreyMario, GTRsound, Guess-My-Name, gusxyz, h3half, Haltell, Hanzdegloker, Hardly3D, harikattar, Hebi, Henry, HerCoyote23, hiucko, Hmeister-fake, Hmeister-real, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, icekot8, icesickleone, Ichaie, iczero, iglov, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, ItsMeThom, Itzbenz, Jackal298, Jackrost, jacksonzck, Jackw2As, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jjtParadox, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, Jrpl, juliangiebel, juniwoofs, JustArt1m, JustCone14, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, KaiShibaa, kalane15, kalanosh, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, komunre, KonstantinAngelov, koteq, Krunklehorn, Kukutis96513, Kupie, kxvvv, Kyoth25f, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, Leander-0, leonardo-dabepis, leonsfriedrich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, lizelive, lleftTheDragon, localcc, Lomcastar, LordCarve, LordEclipse, LovelyLophi, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, Lumminal, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, Mervill, metalgearsloth, mhamsterr, michaelcu, micheel665, Mike32oz, MilenVolf, milon, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, MLGTASTICa, Mnemotechnician, moderatelyaware, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, namespace-Memory, Nannek, neuPanda, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, not-gavnaed, notafet, notquitehadouken, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OCOtheOmega, OctoRocket, OldDanceJacket, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Phantom-Lily, PHCodes, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, pissdemon, PixelTheKermit, PJB3005, Plasmaguy, PlasmaRaptor, plinyvic, Plykiya, pofitlo, pointer-to-null, poklj, PolterTzi, PoorMansDreams, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, RadsammyT, Rainbeon, Rainfey, Raitononai, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, RedFoxIV, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, Remuchi, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, Rinkashikachi, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, router, RumiTiger, S1ss3l, Saakra, saga3152, Salex08, sam, Samsterious, SaphireLattice, SapphicOverload, sapphirescript, SaveliyM360, sBasalto, ScalyChimp, scrato, Scribbles0, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, ShadowCommander, shadowtheprotogen546, shadowwailker, shaeone, shampunj, shariathotpatrol, ShatteredSwords, SignalWalker, siigiil, SimpleStation14, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, SleepyScarecrow, sleepyyapril, Slyfox333, snebl, sniperchance, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, SpaceManiac, SpaceRox1244, SpaceyLady, spartak, SpartanKadence, Spatison, SpeltIncorrectyl, SphiraI, SplinterGP, spoogemonster, sporekto, Squishy77, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, suraru, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, TadJohnson00, takemysoult, TaralGit, Taran, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGRCdev, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thevinter, ThunderBear2006, Timemaster99, timothyteakettle, TimrodDX, tin-man-tim, Tirochora, Titian3, tk-a369, tkdrg, Tmanzxd, tmtmtl30, toasterpm87, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, Tornado-Technology, tosatur, TotallyLemon, truepaintgit, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, twoducksonnaplane, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, unusualcrow, Uriende, UristMcDorf, user424242420, v0idRift, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, vlados1408, VMSolidus, volotomite, volundr-, Voomra, Vordenburg, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, zelezniciar1, ZelteHonor, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zymem, zzylex +0x6273, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 2digitman, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Aerocrux, Aexolott, Aexxie, africalimedrop, afrokada, Agoichi, Ahion, Aidenkrz, Aikakakah, aitorlogedo, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, AlmondFlour, ALMv1, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, angelofallars, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, armoks, Arteben, ArthurMousatov, artur, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, aspiringlich, astriloqua, avghdev, AzzyIsNotHere, BananaFlambe, BasedPugilist, BasedUser, beck-thompson, benev0, BGare, bhespiritu, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, bloodrizer, Bloody2372, blueDev2, BlueHNT, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, byondfuckery, c0rigin, c4llv07e, CaasGit, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, CerberusWolfie, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, christhirtle, chromiumboy, Chronophylos, Chubbygummibear, CilliePaint, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, CodedCrow, Cohnway, cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, DarkenedSynergy, Darkenson, DawBla, Daxxi3, dch-GH, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DeltaV-Bot, DerbyX, derek, dersheppard, dexlerxd, dffdff2423, dge21, digitalic, DinoWattz, DJB1gYAPPA, DjfjdfofdjfjD, DocNITE, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, dootythefrooty, Dorragon, Doru991, DoubleRiceEddiedd, DoutorWhite, drakewill-CRL, Drayff, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, eclips_e, eden077, EEASAS, Efruit, efzapa, ElectroSR, elsie, elthundercloud, Emisse, emmafornash, EmoGarbage404, Endecc, enumerate0, eoineoineoin, Erisfiregamer1, ERORR404V1, Errant-4, esguard, estacaoespacialpirata, eugene, Evgencheg, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, Fansana, Feluk6174, fenndragon, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, fl-oz, Flareguy, FluffiestFloof, FluffMe, FluidRock, flybik, flyingkarii, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, FoxxoTrystan, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, GalacticChimp, gamer3107, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, ghost581x, Git-Nivrak, gituhabu, GlassEclipse, gluesniffler, GNF54, Golinth, GoodWheatley, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, greggthefather, GreyMario, GTRsound, Guess-My-Name, gusxyz, h3half, Haltell, Hanzdegloker, Hardly3D, harikattar, Hebi, Henry, HerCoyote23, hiucko, Hmeister-fake, Hmeister-real, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, icekot8, icesickleone, Ichaie, iczero, iglov, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, ItsMeThom, Itzbenz, Jackal298, Jackrost, jacksonzck, Jackw2As, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, JIPDawg, jjtParadox, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, Jrpl, juliangiebel, juniwoofs, JustArt1m, JustCone14, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, komunre, KonstantinAngelov, koteq, Krunklehorn, Kukutis96513, Kupie, kxvvv, Kyoth25f, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, lizelive, lleftTheDragon, localcc, Lomcastar, lonoferars, LordCarve, LordEclipse, LovelyLophi, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, Lumminal, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, Mervill, metalgearsloth, mhamsterr, michaelcu, micheel665, Mike32oz, MilenVolf, milon, MilonPL, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, MLGTASTICa, Mnemotechnician, moderatelyaware, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, namespace-Memory, Nannek, NeLepus, neuPanda, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, not-gavnaed, notafet, notquitehadouken, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OCOtheOmega, OctoRocket, OldDanceJacket, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Phantom-Lily, PHCodes, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Piras314, Pireax, pissdemon, PixelTheKermit, PJB3005, Plasmaguy, PlasmaRaptor, plinyvic, Plykiya, pofitlo, pointer-to-null, poklj, PolterTzi, PoorMansDreams, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, RadsammyT, Rainbeon, Rainfey, Raitononai, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, RedFoxIV, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, Remuchi, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, Rinkashikachi, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, router, RumiTiger, S1ss3l, Saakra, saga3152, Salex08, sam, Samsterious, SaphireLattice, SapphicOverload, sapphirescript, SaveliyM360, sBasalto, ScalyChimp, scrato, Scribbles0, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, ShadowCommander, shadowtheprotogen546, shadowwailker, shaeone, shampunj, shariathotpatrol, ShatteredSwords, SignalWalker, siigiil, SimpleStation14, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, SleepyScarecrow, sleepyyapril, Slyfox333, snebl, sniperchance, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, SpaceManiac, SpaceRox1244, SpaceyLady, spartak, SpartanKadence, Spatison, SpeltIncorrectyl, spess-empyrean, SphiraI, SplinterGP, spoogemonster, sporekto, Squishy77, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, suraru, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, TadJohnson00, takemysoult, TaralGit, Taran, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGRCdev, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thevinter, ThunderBear2006, Timemaster99, timothyteakettle, TimrodDX, tin-man-tim, Tirochora, Titian3, tk-a369, tkdrg, Tmanzxd, tmtmtl30, toasterpm87, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, Tornado-Technology, tosatur, TotallyLemon, truepaintgit, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, twoducksonnaplane, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, unusualcrow, Uriende, UristMcDorf, user424242420, v0idRift, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, vlados1408, VMSolidus, volotomite, volundr-, Voomra, Vordenburg, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, zelezniciar1, ZelteHonor, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zymem, zzylex diff --git a/Resources/Fonts/Grenze_Gotisch/GrenzeGotisch.ttf b/Resources/Fonts/Grenze_Gotisch/GrenzeGotisch.ttf new file mode 100644 index 0000000000..3f93ccf31a Binary files /dev/null and b/Resources/Fonts/Grenze_Gotisch/GrenzeGotisch.ttf differ diff --git a/Resources/Fonts/Grenze_Gotisch/OFL.txt b/Resources/Fonts/Grenze_Gotisch/OFL.txt new file mode 100644 index 0000000000..a726762d01 --- /dev/null +++ b/Resources/Fonts/Grenze_Gotisch/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Grenze Gotisch Project Authors (https://github.com/Omnibus-Type/Grenze-Gotisch) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Resources/Fonts/LDFComicSans/LDFComicSans-Bold.ttf b/Resources/Fonts/LDFComicSans/LDFComicSans-Bold.ttf new file mode 100644 index 0000000000..5bd2ad387d Binary files /dev/null and b/Resources/Fonts/LDFComicSans/LDFComicSans-Bold.ttf differ diff --git a/Resources/Fonts/LDFComicSans/LDFComicSans-HairlineMedium.ttf b/Resources/Fonts/LDFComicSans/LDFComicSans-HairlineMedium.ttf new file mode 100644 index 0000000000..4da200d154 Binary files /dev/null and b/Resources/Fonts/LDFComicSans/LDFComicSans-HairlineMedium.ttf differ diff --git a/Resources/Fonts/LDFComicSans/LDFComicSans-Light.ttf b/Resources/Fonts/LDFComicSans/LDFComicSans-Light.ttf new file mode 100644 index 0000000000..d041f18981 Binary files /dev/null and b/Resources/Fonts/LDFComicSans/LDFComicSans-Light.ttf differ diff --git a/Resources/Fonts/LDFComicSans/LDFComicSans-Medium.ttf b/Resources/Fonts/LDFComicSans/LDFComicSans-Medium.ttf new file mode 100644 index 0000000000..38b3abf939 Binary files /dev/null and b/Resources/Fonts/LDFComicSans/LDFComicSans-Medium.ttf differ diff --git a/Resources/Fonts/LDFComicSans/LICENSE.txt b/Resources/Fonts/LDFComicSans/LICENSE.txt new file mode 100644 index 0000000000..f979389d95 --- /dev/null +++ b/Resources/Fonts/LDFComicSans/LICENSE.txt @@ -0,0 +1,2 @@ +license: Freeware +link: https://www.fontspace.com/ldfcomicsans-font-f16951 \ No newline at end of file diff --git a/Resources/Fonts/Only_You.otf b/Resources/Fonts/Only_You.otf new file mode 100644 index 0000000000..cd7f3547e0 Binary files /dev/null and b/Resources/Fonts/Only_You.otf differ diff --git a/Resources/Fonts/Rubik_Dirt/OFL.txt b/Resources/Fonts/Rubik_Dirt/OFL.txt new file mode 100644 index 0000000000..1a69de2a23 --- /dev/null +++ b/Resources/Fonts/Rubik_Dirt/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Rubik Filtered Project Authors (https://https://github.com/NaN-xyz/Rubik-Filtered) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Resources/Fonts/Rubik_Dirt/RubikDirt.ttf b/Resources/Fonts/Rubik_Dirt/RubikDirt.ttf new file mode 100644 index 0000000000..d3308a7f63 Binary files /dev/null and b/Resources/Fonts/Rubik_Dirt/RubikDirt.ttf differ diff --git a/Resources/Fonts/Sriracha/OFL.txt b/Resources/Fonts/Sriracha/OFL.txt new file mode 100644 index 0000000000..ca4dd03916 --- /dev/null +++ b/Resources/Fonts/Sriracha/OFL.txt @@ -0,0 +1,93 @@ +Copyright (c) 2015, Cadson Demak (info@cadsondemak.com), Copyright (c) 2014, Pablo Impallari (www.impallari.com|impallari@gmail.com) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Resources/Fonts/Sriracha/Sriracha.ttf b/Resources/Fonts/Sriracha/Sriracha.ttf new file mode 100644 index 0000000000..c74f555d3f Binary files /dev/null and b/Resources/Fonts/Sriracha/Sriracha.ttf differ diff --git a/Resources/Locale/en-US/_Arcadis/modularComputer.ftl b/Resources/Locale/en-US/_Arcadis/modularComputer.ftl index c3c60f3bb8..817b73cfae 100644 --- a/Resources/Locale/en-US/_Arcadis/modularComputer.ftl +++ b/Resources/Locale/en-US/_Arcadis/modularComputer.ftl @@ -3,3 +3,21 @@ modular-computer-no-program-on-disk = ERROR: No program on disk! modular-computer-examine-no-disk = This computer doesn't have a program loaded. modular-computer-examine-disk-error = This computer doesn't have a program loaded. An error on the display reports that the loaded disk has no program. modular-computer-examine-has-program = This computer has the {$program} program loaded. + +modular-computer-no-power = The computer is unpowered. + +program-disk-no-program = This disk has no program burnt to it. +program-disk-error = This disk has a corrupted program burnt to it. +program-disk-has-program = This disk has the {$program} program burnt to it. + +disk-burner-missing = The disk burner reports that there is no {$missing} inserted. +disk-burner-bad-disk = The disk burner reports that the disk is not suitable to be burned to. +disk-burner-incompatible-board = The disk burner reports that the inserted board is not compatible. +disk-burner-ready = The disk burner reports that it is ready. + +disk-burner-admemes-fail = The disk burner reports that a required slot is not available. + +disk-burner-activate-not-ready = The disk burner isn't ready yet! +disk-burner-activate-finished = The disk burner beeps successfully! + +research-technology-modular-computing = Modular Computing diff --git a/Resources/Locale/en-US/_EE/accessories/human-facial-hair.ftl b/Resources/Locale/en-US/_EE/accessories/human-facial-hair.ftl new file mode 100644 index 0000000000..8a031819bf --- /dev/null +++ b/Resources/Locale/en-US/_EE/accessories/human-facial-hair.ftl @@ -0,0 +1,10 @@ +marking-HumanFacialHairChin2 = Beard (Chinstrap 2) +marking-HumanFacialHairSuperLong = Beard (Super Long) +marking-HumanFacialHairShort = Beard (Short) +marking-HumanFacialHairThick = Beard (Thick) +marking-HumanFacialHairViking = Beard (Viking) +marking-HumanFacialHairBristle = Beard (Bristle) +marking-HumanFacialHairMoustacheWithStubble = Moustache (Stubble) +marking-HumanFacialHairThickBristle = Beard (Thick Bristle) +marking-HumanFacialHairHandlebar = Moustache (Handlebar 1) +marking-HumanFacialHairHandlebar2 = Moustache (Handlebar 2) diff --git a/Resources/Locale/en-US/_EE/accessories/human-hair.ftl b/Resources/Locale/en-US/_EE/accessories/human-hair.ftl new file mode 100644 index 0000000000..65425ef753 --- /dev/null +++ b/Resources/Locale/en-US/_EE/accessories/human-hair.ftl @@ -0,0 +1,13 @@ +marking-HumanHairArabicGathered = Arabic Gathered +marking-HumanHairClassicHair = Classic Hair +marking-HumanHairSideComb = Side Comb +marking-HumanHairLong4 = Long Four +marking-HumanHairManbun2 = Bun (Manbun 2) +marking-HumanHairPigtailTajaran = Tajaran Pigtails +marking-HumanHairShavedSide = Shaved Side +marking-HumanHairShorthair8 = Short Hair 8 +marking-HumanFembun = Fembun +marking-HumanHairAfricanPigtails = African Pigtails +marking-HumanHairAfropuffDouble = Afropuff (Double) +marking-HumanHairAfropuffLeft = Afropuff (Left) +marking-HumanHairAfropuffRight = Afropuff (Right) diff --git a/Resources/Locale/en-US/_EE/chat/chat-language.ftl b/Resources/Locale/en-US/_EE/chat/chat-language.ftl new file mode 100644 index 0000000000..24e68ffc85 --- /dev/null +++ b/Resources/Locale/en-US/_EE/chat/chat-language.ftl @@ -0,0 +1,5 @@ +chat-language-NalRasan-name = Nal'rasan +chat-language-SiikTajr-name = Siik'tajr +chat-language-SiikMaas-name = Siik'maas +chat-language-YaSsa-name = Ya'ssa +chat-language-Delvahii-name = Delvahii diff --git a/Resources/Locale/en-US/_EE/language/languages-sign.ftl b/Resources/Locale/en-US/_EE/language/languages-sign.ftl new file mode 100644 index 0000000000..3beb2c37f1 --- /dev/null +++ b/Resources/Locale/en-US/_EE/language/languages-sign.ftl @@ -0,0 +1,39 @@ +chat-sign-tajaran-language-message-wrap = [italic][BubbleHeader][Name]{$entityName}[/Name][/BubbleHeader] [BubbleContent]{$verb} [font="{$fontType}" size={$fontSize}][color={$color}]{$message}[/color][/font][/italic][/BubbleContent] +chat-sign-tajaran-language-whisper-wrap = [italic][BubbleHeader][Name]{$entityName}[/Name][/BubbleHeader] [BubbleContent]subtly {$verb} [font="{$fontType}" size={$fontSize}][color={$color}]{$message}[/color][/font][/italic][/BubbleContent] + +# Did I ever tell you the definition of insanity? +# Basically we have to get around the message formatter, and unless we decide to make an entire new system just for this language, we can't do anything else. +chat-speech-verb-sign-nalrasan-1 = moves their tail +chat-speech-verb-sign-nalrasan-2 = moves their tail briefly +chat-speech-verb-sign-nalrasan-3 = moves their tail several times in quick succession + +chat-speech-verb-sign-nalrasan-4 = flicks their ears +chat-speech-verb-sign-nalrasan-5 = flicks their ears a few times +chat-speech-verb-sign-nalrasan-6 = flicks their ears several times in quick succession + +chat-speech-verb-sign-nalrasan-7 = swivels their ears +chat-speech-verb-sign-nalrasan-8 = swivels their ears a few times +chat-speech-verb-sign-nalrasan-9 = swivels their ears several times in quick succession +chat-speech-verb-sign-nalrasan-10 = swivels their ears for a while + +chat-speech-verb-sign-nalrasan-11 = flicks their tail +chat-speech-verb-sign-nalrasan-12 = flicks their tail a few times +chat-speech-verb-sign-nalrasan-13 = flicks their tail several times in quick succession + +chat-speech-verb-sign-nalrasan-14 = shifts their ears and tail +chat-speech-verb-sign-nalrasan-15 = shifts their ears and tail briefly +chat-speech-verb-sign-nalrasan-16 = shifts their ears and tail for a while +chat-speech-verb-sign-nalrasan-17 = shifts their ears and tail several times in quick succession + +# There has to be a better way + +chat-speech-verb-sign-siiktajr-1 = moves their tail and purrs out +chat-speech-verb-sign-siiktajr-2 = moves their tail and mews +chat-speech-verb-sign-siiktajr-3 = flicks their ears and meows +chat-speech-verb-sign-siiktajr-4 = flicks their ears and mraows +chat-speech-verb-sign-siiktajr-5 = swivels their ears and purrs out +chat-speech-verb-sign-siiktajr-6 = swivels their ears and mews +chat-speech-verb-sign-siiktajr-7 = flicks their tail and meows +chat-speech-verb-sign-siiktajr-8 = flicks their tail and mraows +chat-speech-verb-sign-siiktajr-9 = shifts their ears and tail and purrs out +chat-speech-verb-sign-siiktajr-10 = shifts their ears and tail and mews diff --git a/Resources/Locale/en-US/_EE/language/languages.ftl b/Resources/Locale/en-US/_EE/language/languages.ftl new file mode 100644 index 0000000000..5d478b8562 --- /dev/null +++ b/Resources/Locale/en-US/_EE/language/languages.ftl @@ -0,0 +1,19 @@ +language-SiikMaas-name = Siik'maas +language-SiikMaas-description = + The ancient religious tongue of the Tajara, now the most widely spoken and taught language on Adhomai. + +language-NalRasan-name = Nal'rasan +language-NalRasan-description = + A body-language-heavy dialect created by M'sai hunters for stealth, later adopted by rebels for covert communication during the Great War. + +language-SiikTajr-name = Siik'tajr +language-SiikTajr-description = + A revolutionary language blending Siik'maas and Nal'rasan, designed for secrecy during the overthrow of the plutocracy and used heavily in the Great War. + +language-YaSsa-name = Ya'ssa +language-YaSsa-description = + A refined Siik'maas dialect once spoken by Njarir nobility, revived by the New Kingdom of Adhomai after centuries of disuse. + +language-Delvahii-name = Delvahii +language-Delvahii-description = + A Zhan-Khazan language tied to Ma'take worship, still used in religious rites and favored by farmers resisting government control. diff --git a/Resources/Locale/en-US/_EE/markings/tajaran.ftl b/Resources/Locale/en-US/_EE/markings/tajaran.ftl new file mode 100644 index 0000000000..ad787ea180 --- /dev/null +++ b/Resources/Locale/en-US/_EE/markings/tajaran.ftl @@ -0,0 +1,69 @@ +marking-TajaranTorsoBelly = Chest Fur +marking-TajaranTorsoBelly-belly = Fur +marking-TajaranTorsoCrest = Chest Fur (Crest) +marking-TajaranTorsoCrest-crest = Fur +marking-TajaranTorsoFullBelly = Chest Fur (Full) +marking-TajaranTorsoFullBelly-fullbelly = Fur +marking-TajaranHeadMuzzle = Muzzle +marking-TajaranHeadMuzzle-muzzle = Muzzle +marking-TajaranHeadMuzzleLarge = Muzzle (Large) +marking-TajaranHeadMuzzleLarge-muzzle_large = Muzzle +marking-TajaranHeadNose = Nose +marking-TajaranHeadNose-nose = Nose +marking-TajaranHeadPatches = Patches +marking-TajaranHeadPatches-patch = Patches +marking-TajaranHeadPoints = Points +marking-TajaranHeadPoints-points = Points +marking-TajaranHeadTiger = Tiger +marking-TajaranHeadTiger-tiger_face = Stripes +marking-TajaranHeadTigerAlt = Tiger (Alternative) +marking-TajaranHeadTigerAlt-tiger_head = Stripes +marking-TajaranEarsRetro = Classic Ears +marking-TajaranEarsRetro-ears = Ears +marking-TajaranEarsRetroNear = Classic Ears (Alternative) +marking-TajaranEarsRetroNear-ears_near = Ears +marking-TajaranEarsSeparate = Classic Ears (Separated) +marking-TajaranEarsSeparate-outears = Outer +marking-TajaranEarsSeparate-inears = Inner +marking-TajaranEarsSeparateNear = Classic Ears (Alternative, Separated) +marking-TajaranEarsSeparateNear-outears_near = Outer +marking-TajaranEarsSeparateNear-inears_near = Inner +marking-TajaranTailAnim = Classic Tail (Animated) +marking-TajaranTailAnim-tail_anim = Tail +marking-TajaranTailAnimRings = Classic Tail (Animated, Rings) +marking-TajaranTailAnimRings-tail_anim = Tail +marking-TajaranTailAnimRings-tail_anim_rings = Rings +marking-TajaranTailRetro = Classic Tail +marking-TajaranTailRetro-tail = Tail +marking-TajaranTailRetroRings = Classic Tail (Rings) +marking-TajaranTailRetroRings-tail = Tail +marking-TajaranTailRetroRings-tail_rings = Rings +marking-TajaranOverlayPatch = Patches +marking-TajaranOverlayPatch-patch = Patches +marking-TajaranOverlayPoints = Points +marking-TajaranOverlayPoints-points = Points +marking-TajaranEarsBasic = Basic Ears +marking-TajaranEarsBasic-basic_outer = Outer ear +marking-TajaranEarsBasic-basic_inner = Inner ear +marking-TajaranEarsCurled = Curled Ears +marking-TajaranEarsCurled-curled_outer = Outer ear +marking-TajaranEarsCurled-curled_inner = Inner ear +marking-TajaranEarsDroopy = Droopy Ears +marking-TajaranEarsDroopy-droopy_outer = Outer ear +marking-TajaranEarsDroopy-droopy_inner = Inner ear +marking-TajaranEarsFuzzy = Fuzzy Ears +marking-TajaranEarsFuzzy-basic_outer = Outer ear +marking-TajaranEarsFuzzy-fuzzy_inner = Ear fuzz +marking-TajaranEarsStubby = Stubby Ears +marking-TajaranEarsStubby-stubby_outer = Outer ear +marking-TajaranEarsStubby-stubby_inner = Inner ear +marking-TajaranEarsTall = Tall Ears +marking-TajaranEarsTall-tall_outer = Outer ear +marking-TajaranEarsTall-tall_inner = Inner ear +marking-TajaranEarsTall-tall_fuzz = Ear fuzz +marking-TajaranEarsTorn = Torn Ears +marking-TajaranEarsTorn-torn_outer = Outer ear +marking-TajaranEarsTorn-torn_inner = Inner ear +marking-TajaranEarsWide = Wide Ears +marking-TajaranEarsWide-wide_outer = Outer ear +marking-TajaranEarsWide-wide_inner = Inner ear diff --git a/Resources/Locale/en-US/_EE/species/species.ftl b/Resources/Locale/en-US/_EE/species/species.ftl new file mode 100644 index 0000000000..a2433c2399 --- /dev/null +++ b/Resources/Locale/en-US/_EE/species/species.ftl @@ -0,0 +1 @@ +species-name-tajaran = Tajaran diff --git a/Resources/Locale/en-US/_EE/traits/traits.ftl b/Resources/Locale/en-US/_EE/traits/traits.ftl new file mode 100644 index 0000000000..6a7fd47b2a --- /dev/null +++ b/Resources/Locale/en-US/_EE/traits/traits.ftl @@ -0,0 +1,29 @@ +trait-name-SiikMaas = Siik'maas +trait-description-SiikMaas = + Siik'maas is theorized to be the ancient religious tongue of the Tajara, once universally shared among them. + Though religious devotion waned over time, it became the lingua franca and remains the primary educational and most widely spoken language on Adhomai since the Migration Age. + Humans can learn to speak Siik'maas, as it relies less on body language than other Tajaran languages, but biological differences make certain inflections and subtle movements challenging, often resulting in slower, imprecise speech. + +trait-name-NalRasan = Nal'rasan (Tajara Sign Language) +trait-description-NalRasan = + A body-focused language created by M'sai, Nal'rasan was developed to communicate discreetly between parties. + Because the mrowling and vocal expressions of Siik'maas could sometimes alert prey to hunter presence and drive them away, hunting parties adopted this language to prevent such a thing from occurring. + Rebel sects saw the use of this language and made use of it for covert discussions and the transmission of highly classified information before and during the Great War. + +trait-name-SiikTajr = Siik'tajr +trait-description-SiikTajr = + Siik’tajr, unlike Siik’maas, is a modern language developed during the overthrow of the plutocracy to allow revolutionaries to communicate secretly. + Combining Siik’maas with the body-language-heavy Nal’rasan, it gained prominence during the Great War for covert operations. + While not commonly used in daily life due to its complexity, it remains a secondary language for many families with ties to the war. + +trait-name-YaSsa = Ya'ssa +trait-description-YaSsa = + Ya'ssa is a dialect of Siik'maas, widely spoken by Njarir Tajara. + Presumed to be the traditional tongue of the nobility, it uses a more refined alphabet and speech pattern believed to have evolved from a less-used ancient dialect. + Hadii members have been recorded to still use Ya'ssa, though ultimately with the widespread annihilation of noble families, this language has fallen into disuse until its revival by the New Kingdom of Adhomai. + +trait-name-Delvahii = Delvahii +trait-description-Delvahii = + Delvahhi is a language closely related to the Zhan-Khazan Tajara. + It is still widely used in religious ceremonies dedicated to Ma'take and amongst settlements comprised mostly of Zhan-Khazan. + It is also the favored language of farmers, who have adopted it in the wake of government intrusions into the agricultural industry of Adhomai. diff --git a/Resources/Locale/en-US/_Goobstation/accessories/human-hair.ftl b/Resources/Locale/en-US/_Goobstation/accessories/human-hair.ftl new file mode 100644 index 0000000000..fd1a3f05aa --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/accessories/human-hair.ftl @@ -0,0 +1,33 @@ +marking-HumanHairBraidedExtension = Braided Extension +marking-HumanHairCometTail = Comet Tail +marking-HumanHairFantasyHair = Fantasy Hair +marking-HumanHairFlatTwistsUpdo = Flat Twists Updo +marking-HumanHairFloorlengthBraid = Floorlength Braid +marking-HumanHairFloorlengthWavy = Floorlength Wavy +marking-HumanHairFrizzyBraid = Frizzy Braid +marking-HumanHairFrontBraidsLong = Front Braids Long +marking-HumanHairFrontBraidsMedium = Front Braids Medium +marking-HumanHairFrontBraidsShort = Front Braids Short +marking-HumanHairHairnet = Hairnet +marking-HumanHairJellyfish = Jellyfish +marking-HumanHairKazuyaMishima = Kazuya Mishima +marking-HumanHairLongBraids = Long Braids +marking-HumanHairLongCurvy = Long Curvy +marking-HumanHairLongPompadour = Long Pompadour +marking-HumanHairMediumCurls = Medium Curls +marking-HumanHairMullet = Mullet +marking-HumanHairPelvicLengthBraid = Pelvic Length Braid +marking-HumanHairPlateau = Plateau +marking-HumanHairQueenBee = Queen Bee +marking-HumanHairSaggedMohawk = Sagged Mohawk +marking-HumanHairSharpMohawk = Sharp Mohawk +marking-HumanHairShortAndPoofy = Short & Poofy +marking-HumanHairShortCurls = Short Curls +marking-HumanHairShoulderLengthBraid = Shoulder Length Braid +marking-HumanHairSideSpike = Side Spike +marking-HumanHairSpaceLoops = Space Loops +marking-HumanHairStar = Star +marking-HumanHairStarFro = Star Fro +marking-HumanHairStyledCurls = Styled Curls +marking-HumanHairUnkemptScientist = Unkempt Scientist +marking-HumanHairWispy = Wispy diff --git a/Resources/Locale/en-US/_Goobstation/alert-levels/alerts.ftl b/Resources/Locale/en-US/_Goobstation/alert-levels/alerts.ftl new file mode 100644 index 0000000000..9c1b0c121f --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/alert-levels/alerts.ftl @@ -0,0 +1,2 @@ +alerts-modsuit-power-name = [color=yellow]Modsuit Power[/color] +alerts-modsuit-power-desc = Displays the current power level of your modsuit. Low power may affect suit functionality. diff --git a/Resources/Locale/en-US/_Goobstation/clothing/sealable-clothing-component.ftl b/Resources/Locale/en-US/_Goobstation/clothing/sealable-clothing-component.ftl new file mode 100644 index 0000000000..e9c7ffe84b --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/clothing/sealable-clothing-component.ftl @@ -0,0 +1,23 @@ +sealable-clothing-equipment-not-toggled = Deploy all parts first! +sealable-clothing-equipment-seal-failed = Sealing failed! +sealable-clothing-seal-verb = Toggle Seals + +sealable-clothing-seal-up = The {$partName} is sealing +sealable-clothing-seal-up-helmet = The {$partName} hisses as it closes. +sealable-clothing-seal-up-gauntlets = The {$partName} tightens around your fingers and wrists. +sealable-clothing-seal-up-chestplate = The {$partName} clenches tightly around your chest. +sealable-clothing-seal-up-boots = The {$partName} seals around your feet. + +sealable-clothing-seal-down = The {$partName} is unsealing +sealable-clothing-seal-down-helmet = The {$partName} hisses open. +sealable-clothing-seal-down-gauntlets = The {$partName} become loose around your fingers. +sealable-clothing-seal-down-chestplate = The {$partName} releases your chest. +sealable-clothing-seal-down-boots= The {$partName} relaxes its grip on your legs. + +sealable-clothing-sealed-process-toggle-fail = Suit is already shutting down! +sealable-clothing-unsealed-process-toggle-fail = Suit is already starting up! +sealable-clothing-sealed-toggle-fail = Deactivate the suit first! + +sealable-clothing-not-powered = Suit is not powered! +sealable-clothing-open-sealed-panel-fail = Wiring panel is too tightly sealed! +sealable-clothing-close-panel-first = Close the wiring panel first! diff --git a/Resources/Locale/en-US/_Goobstation/forensics/fibers.ftl b/Resources/Locale/en-US/_Goobstation/forensics/fibers.ftl new file mode 100644 index 0000000000..e3cc656b7c --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/forensics/fibers.ftl @@ -0,0 +1 @@ +fibers-modular = modular diff --git a/Resources/Locale/en-US/_Goobstation/guidebook/ghost-gui.ftl b/Resources/Locale/en-US/_Goobstation/guidebook/ghost-gui.ftl new file mode 100644 index 0000000000..232c2a9a95 --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/guidebook/ghost-gui.ftl @@ -0,0 +1,5 @@ +ghost-target-window-ghostbar = Ghost Bar +ghost-window-spawn-ghostbar-button = Spawn at Ghost Bar +ghost-window-spawn-ghostbar-button-timer = Spawn at Ghost Bar ({$time}s) +ghost-bar-rules = Treat this role, and station, as you would just being a regular Ghost. You may talk about all current round events without the need for LOOC, and you remember everything from your previous life. DO NOT attack others, start fights, or attempt to break the station. If you see anyone doing this, please Ahelp and they will be promptly thrown into space. Also, if you decide to leave the bar, you DO NOT remember anything from being here, or your life before it. + diff --git a/Resources/Locale/en-US/_Goobstation/lathe/lathe-categories.ftl b/Resources/Locale/en-US/_Goobstation/lathe/lathe-categories.ftl new file mode 100644 index 0000000000..8d7f0f63b3 --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/lathe/lathe-categories.ftl @@ -0,0 +1,11 @@ +lathe-category-mechs-vim = Vim +lathe-category-mechs-honker = H.O.N.K. +lathe-category-mechs-hamptr = H.A.M.P.T.R. +lathe-category-mechs-ripley = Riley +lathe-category-mechs-ripleymkii = Riley MK-II +lathe-category-mechs-clarke = Clarke +lathe-category-mechs-gygax = Gygax +lathe-category-mechs-durand = Durand +lathe-category-mechs-equipment = Mech equipment +lathe-category-mechs-weapons = Mech weapons +lathe-category-modsuit = MOD Suits diff --git a/Resources/Locale/en-US/_Goobstation/markings/wings.ftl b/Resources/Locale/en-US/_Goobstation/markings/wings.ftl new file mode 100644 index 0000000000..52ca1c8855 --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/markings/wings.ftl @@ -0,0 +1,4 @@ +markings-category-Wings = Wings + +marking-WingsRobotic = Robotic Wings +marking-WingsRobotic-robotic = Robotic Wings diff --git a/Resources/Locale/en-US/_Goobstation/mech/mechs.ftl b/Resources/Locale/en-US/_Goobstation/mech/mechs.ftl new file mode 100644 index 0000000000..4543710a04 --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/mech/mechs.ftl @@ -0,0 +1,11 @@ +goobstation-clarke-bounty-desc = The local mining colony at the Sol Sector requires some more mechs. Send us a Clarke. +goobstation-clarke-bounty-name = Clarke + +goobstation-durand-bounty-desc = The Tranquility Assurance Force requires some more defensive power on the frontlines. We request a Durand. +goobstation-durand-bounty-name = Durand + +goobstation-ripley-bounty-desc = Hephaestus Industries is looking for some spare mechs to use in their dig sites. Send us a Ripley MkII. +goobstation-ripley-bounty-name = Ripley MkII + +goobstation-gygax-bounty-desc = The Tranquility Assurance Force needs to enhance their Peacekeeping squadrons, we request a Gygax. +goobstation-gygax-bounty-name = Gygax \ No newline at end of file diff --git a/Resources/Locale/en-US/_Goobstation/power/silicons.ftl b/Resources/Locale/en-US/_Goobstation/power/silicons.ftl new file mode 100644 index 0000000000..9d52b2210d --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/power/silicons.ftl @@ -0,0 +1 @@ +ipc-overheat-popup = {$name}'s circuits shut down from overheating! diff --git a/Resources/Locale/en-US/_Goobstation/research/technologies.ftl b/Resources/Locale/en-US/_Goobstation/research/technologies.ftl new file mode 100644 index 0000000000..ba68b2494c --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/research/technologies.ftl @@ -0,0 +1,9 @@ +research-technology-weapon-plasma-rifle = Experimental plasma rifle +research-technology-medical-defense = Medical Control Gear +research-technology-ripley-mkii = Ripley MK-II +research-technology-clarke = Clarke +research-technology-gygax = Gygax +research-technology-durand = Durand +research-technology-explosive-mech-ammunition = Explosive Mech Ammunition +research-technology-honk-weapons = Bananium Weapons +research-technology-modsuits = Modular Technologies diff --git a/Resources/Locale/en-US/_Goobstation/store/uplink-catalog.ftl b/Resources/Locale/en-US/_Goobstation/store/uplink-catalog.ftl new file mode 100644 index 0000000000..f94d63469d --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/store/uplink-catalog.ftl @@ -0,0 +1,7 @@ +# Mechs + +uplink-mech-teleporter-heavy-name = Heavy Mech teleporter +uplink-mech-teleporter-heavy-desc = Contains a heavily armored Cybersun mech with an integrated chainsword, Ultra AC-2, LBX AC 10 "Scattershot", BRM-6 Missile Rack and P-X Tesla Cannon. + +uplink-mech-teleporter-assault-name = Assault Mech teleporter +uplink-mech-teleporter-assault-desc = Contains a lightly armored Cybersun mech with an integrated chainsword, LBX AC 10 "Scattershot", SRM-8 Light Missile Rack and P-X Tesla Cannon. diff --git a/Resources/Locale/en-US/abilities/chitinid.ftl b/Resources/Locale/en-US/abilities/chitinid.ftl new file mode 100644 index 0000000000..e2e10c0eb4 --- /dev/null +++ b/Resources/Locale/en-US/abilities/chitinid.ftl @@ -0,0 +1,2 @@ +chitzite-mask = Take off your {$mask} first. +chitzite-cough = {CAPITALIZE(THE($name))} starts coughing up a hunk of Chitzite! diff --git a/Resources/Locale/en-US/accessories/human-facial-hair.ftl b/Resources/Locale/en-US/accessories/human-facial-hair.ftl index cd8865d02f..7b94d45503 100644 --- a/Resources/Locale/en-US/accessories/human-facial-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-facial-hair.ftl @@ -1,6 +1,6 @@ marking-HumanFacialHairAbe = Beard (Abraham Lincoln) marking-HumanFacialHairBrokenman = Beard (Broken Man) -marking-HumanFacialHairChin = Beard (Chinstrap) +marking-HumanFacialHairChin = Beard (Chinstrap 1) marking-HumanFacialHairDwarf = Beard (Dwarf) marking-HumanFacialHairFullbeard = Beard (Full) marking-HumanFacialHairCroppedfullbeard = Beard (Cropped Fullbeard) diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 7d3467a610..3b2f00f288 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -31,7 +31,7 @@ marking-HumanHairBun = Bun Head marking-HumanHairBunhead2 = Bun Head 2 marking-HumanHairBun3 = Bun Head 3 marking-HumanHairLargebun = Bun (Large) -marking-HumanHairManbun = Bun (Manbun) +marking-HumanHairManbun = Bun (Manbun 1) marking-HumanHairTightbun = Bun (Tight) marking-HumanHairBusiness = Business Hair marking-HumanHairBusiness2 = Business Hair 2 @@ -45,6 +45,8 @@ marking-HumanHairClassicBusiness = Classic Business Hair marking-HumanHairClassicCia = Classic CIA marking-HumanHairClassicCornrows2 = Classic Cornrows 2 marking-HumanHairClassicFloorlengthBedhead = Classic Floorlength Bedhead +marking-HumanHairClassicLong2 = Classic Long Hair 2 +marking-HumanHairClassicLong3 = Classic Long Hair 3 marking-HumanHairClassicModern = Classic Modern marking-HumanHairClassicMulder = Classic Mulder marking-HumanHairClassicWisp = Classic Wisp @@ -95,6 +97,7 @@ marking-HumanHairJensen = Jensen Hair marking-HumanHairJoestar = Joestar marking-HumanHairKeanu = Keanu Hair marking-HumanHairKusanagi = Kusanagi Hair +marking-HumanHairLongBow = Long Bow marking-HumanHairLong = Long Hair 1 marking-HumanHairLong2 = Long Hair 2 marking-HumanHairLong3 = Long Hair 3 @@ -143,8 +146,10 @@ marking-HumanHairSidetail3 = Ponytail (Side) 3 marking-HumanHairSidetail4 = Ponytail (Side) 4 marking-HumanHairSpikyponytail = Ponytail (Spiky) marking-HumanHairPoofy = Poofy +marking-HumanHairPulato = Pulato marking-HumanHairQuiff = Quiff marking-HumanHairRonin = Ronin +marking-HumanHairShaped = Shaped marking-HumanHairShaved = Shaved marking-HumanHairShavedpart = Shaved Part marking-HumanHairShortbangs = Short Bangs diff --git a/Resources/Locale/en-US/alerts/alerts.ftl b/Resources/Locale/en-US/alerts/alerts.ftl index b9d3b6269d..3babbb6c1a 100644 --- a/Resources/Locale/en-US/alerts/alerts.ftl +++ b/Resources/Locale/en-US/alerts/alerts.ftl @@ -4,6 +4,12 @@ alerts-low-oxygen-desc = There is [color=red]not enough oxygen[/color] in the ai alerts-low-nitrogen-name = [color=red]Low Nitrogen[/color] alerts-low-nitrogen-desc = There is [color=red]not enough nitrogen[/color] in the air you are breathing. Put on [color=green]internals[/color]. +alerts-low-plasma-name = [color=red]Low Plasma[/color] +alerts-low-plasma-desc = There is [color=red]not enough plasma[/color] in the air you are breathing. Put on [color=green]internals[/color]. + +alerts-high-oxygen-name = [color=red]High Oxygen[/color] +alerts-high-oxygen-desc = There is [color=red]too much oxygen[/color] in the air you are breathing. Put on [color=green]internals[/color]. + alerts-high-toxin-name = [color=red]High Toxin Level[/color] alerts-high-toxin-desc = There are [color=red]too many toxins[/color] in the air you are breathing. Put on [color=green]internals[/color] or get away. @@ -115,8 +121,4 @@ alerts-offer-name = Offer alerts-offer-desc = Someone offers you an item. alerts-deflecting-name = Deflecting -alerts-deflecting-desc = You have a chance to deflect incoming projectiles. Standing still or moving slowly will increase this chance. - -alerts-mana-name = Mana Level -alerts-mana-desc = How much mana is available to spend on your powers. -mana-alert = [font size=12][color=purple]Mana: {$mana}/{$manaMax}[/color][/font] +alerts-deflecting-desc = You have a chance to deflect incoming projectiles. Standing still or moving slowly will increase this chance. \ No newline at end of file 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/gas-pipe-sensor.ftl b/Resources/Locale/en-US/atmos/gas-pipe-sensor.ftl new file mode 100644 index 0000000000..8c3b8962e3 --- /dev/null +++ b/Resources/Locale/en-US/atmos/gas-pipe-sensor.ftl @@ -0,0 +1,5 @@ +gas-pipe-sensor-distribution-loop = Distribution loop +gas-pipe-sensor-waste-loop = Waste loop +gas-pipe-sensor-mixed-air = Mixed air +gas-pipe-sensor-teg-hot-loop = TEG hot loop +gas-pipe-sensor-teg-cold-loop = TEG cold loop 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/cartridge-loader/psiwatch.ftl b/Resources/Locale/en-US/cartridge-loader/psiwatch.ftl new file mode 100644 index 0000000000..33df99fd44 --- /dev/null +++ b/Resources/Locale/en-US/cartridge-loader/psiwatch.ftl @@ -0,0 +1,5 @@ +psi-watch-program-name = PsiWatch +psi-watch-title = PsiWatch 1.3 +psi-watch-no-entries = Nobody is registered. Why not enjoy a nice, cold brew? +psi-watch-entry = {$name}, {$job} +psi-watch-no-reason = [ERROR] No reason given? diff --git a/Resources/Locale/en-US/changelog/changelog-window.ftl b/Resources/Locale/en-US/changelog/changelog-window.ftl index e8e96c9bdc..59b97db286 100644 --- a/Resources/Locale/en-US/changelog/changelog-window.ftl +++ b/Resources/Locale/en-US/changelog/changelog-window.ftl @@ -5,7 +5,8 @@ changelog-author-changed = [color=#EEE]{ $author }[/color] changed: changelog-today = Today changelog-yesterday = Yesterday changelog-new-changes = new changes -changelog-version-tag = version v{ $version } +changelog-version-unknown = Unknown Version +changelog-version-tag = { $fork }/{ $version } changelog-button = Changelog changelog-button-new-entries = Changelog (new!) diff --git a/Resources/Locale/en-US/character-appearance/components/humanoid-appearance-component.ftl b/Resources/Locale/en-US/character-appearance/components/humanoid-appearance-component.ftl index a4a8634c64..4e535b82ba 100644 --- a/Resources/Locale/en-US/character-appearance/components/humanoid-appearance-component.ftl +++ b/Resources/Locale/en-US/character-appearance/components/humanoid-appearance-component.ftl @@ -1,2 +1,3 @@ humanoid-appearance-component-unknown-species = Person humanoid-appearance-component-examine = { CAPITALIZE(SUBJECT($user)) } { CONJUGATE-BE($user) } { INDEFINITE($age) } { $age } { $species }. +humanoid-appearance-component-examine-pronouns = { CAPITALIZE(SUBJECT($user)) } also accepts {$pronouns} as pronouns. \ No newline at end of file diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index 0a9dd1f42b..13b95c8539 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -44,7 +44,7 @@ chat-emote-name-vulpbark = Bark chat-emote-name-vulpsnarl = Snarl chat-emote-name-vulpwhine = Whine chat-emote-name-vulphowl = Howl -# Felinid +# Felinid / Tajaran chat-emote-name-meow = Meow chat-emote-name-mew = Mew chat-emote-name-purr = Purr diff --git a/Resources/Locale/en-US/chat/managers/chat-language.ftl b/Resources/Locale/en-US/chat/managers/chat-language.ftl index 00c41130ea..67762441e7 100644 --- a/Resources/Locale/en-US/chat/managers/chat-language.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-language.ftl @@ -12,9 +12,11 @@ chat-language-Elyran-name = Elyran chat-language-Canilunzt-name = Canilunzt chat-language-Moffic-name = Moffic chat-language-RobotTalk-name = Binary +chat-language-Calcic-name = Calcic chat-language-ValyrianStandard-name = Valyrian chat-language-Sign-name = Sign chat-language-Marish-name = Marish +chat-language-Chittin-name = Chittin # Animal Languages diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index 7f22425685..d8356dfa2d 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -112,10 +112,12 @@ chat-speech-verb-reptilian-1 = hisses chat-speech-verb-reptilian-2 = snorts chat-speech-verb-reptilian-3 = huffs -chat-speech-verb-name-skeleton = Skeleton +chat-speech-verb-name-skeleton = Skeleton / Plasmaman chat-speech-verb-skeleton-1 = rattles -chat-speech-verb-skeleton-2 = clacks -chat-speech-verb-skeleton-3 = gnashes +chat-speech-verb-skeleton-2 = ribs +chat-speech-verb-skeleton-3 = bones +chat-speech-verb-skeleton-4 = clacks +chat-speech-verb-skeleton-5 = cracks chat-speech-verb-name-vox = Vox chat-speech-verb-vox-1 = screeches diff --git a/Resources/Locale/en-US/chemistry/components/chem-master-component.ftl b/Resources/Locale/en-US/chemistry/components/chem-master-component.ftl index aff0cfac66..9631801a44 100644 --- a/Resources/Locale/en-US/chemistry/components/chem-master-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/chem-master-component.ftl @@ -10,22 +10,26 @@ chem-master-bound-user-interface-title = ChemMaster 4000 chem-master-window-input-tab = Input chem-master-window-output-tab = Output -chem-master-window-container-label = Container +chem-master-window-pill-buffer-tab = Pill Buffer +chem-master-window-container-label = Container chem-master-window-amount-placeholder = Transfer Amount chem-master-window-eject-button = Eject chem-master-window-no-container-loaded-text = No container loaded. chem-master-window-buffer-text = Buffer chem-master-window-buffer-label = buffer: -chem-master-window-buffer-all-amount = All chem-master-window-buffer-empty-text = Buffer empty. chem-master-window-buffer-low-text = Not enough solution in buffer +chem-master-window-pill-buffer-text = Pill Buffer +chem-master-window-pill-buffer-label = pill buffer: +chem-master-window-pill-buffer-empty-text = Pill buffer empty. +chem-master-window-pill-buffer-low-text = Not enough solution in pill buffer chem-master-window-transfer-button = Transfer chem-master-window-sort-method-tooltip = Choose your buffer's sort method. chem-master-window-sort-method-Time-text = Last Added chem-master-window-sort-method-Alphabetical-text = Alphabetical Order chem-master-window-sort-method-Amount-text = Quantity -chem-master-window-transferring-label = Transferring: [color={$color}]{$quantity}[/color] -chem-master-window-transferring-default-label = Transferring: [color=#ffa500]50[/color] +chem-master-window-transferring-label = Transferring: [color={$color}]{$quantity}[/color] +chem-master-window-transferring-default-label = Transferring: [color=#ffffff]50[/color] chem-master-window-reagent-move-button = Move chem-master-window-discard-button = Discard chem-master-window-packaging-text = Packaging diff --git a/Resources/Locale/en-US/chemistry/components/injector-component.ftl b/Resources/Locale/en-US/chemistry/components/injector-component.ftl index 24f524081e..0b7d485daf 100644 --- a/Resources/Locale/en-US/chemistry/components/injector-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/injector-component.ftl @@ -27,3 +27,4 @@ injector-component-drawing-user = You start drawing the needle. injector-component-injecting-user = You start injecting the needle. injector-component-drawing-target = {CAPITALIZE(THE($user))} is trying to use a needle to draw from you! injector-component-injecting-target = {CAPITALIZE(THE($user))} is trying to inject a needle into you! +injector-component-deny-chitinid = {CAPITALIZE(THE($target))}'s exoskeleton is too thick for the needle to pierce. diff --git a/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl b/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl index 746eea4a28..a7d08623f4 100644 --- a/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl +++ b/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl @@ -1,3 +1,6 @@ toggle-clothing-verb-text = Toggle {CAPITALIZE($entity)} toggleable-clothing-remove-first = You have to unequip {$entity} first. +toggleable-clothing-remove-all-attached-first = You have to unequip all toggled clothing first. +toggleable-clothing-attach-tooltip = Equip +toggleable-clothing-unattach-tooltip = Unequip 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/Locale/en-US/deltav/accessories/hair.ftl b/Resources/Locale/en-US/deltav/accessories/hair.ftl index 7fbfc78629..024606ea44 100644 --- a/Resources/Locale/en-US/deltav/accessories/hair.ftl +++ b/Resources/Locale/en-US/deltav/accessories/hair.ftl @@ -7,6 +7,4 @@ marking-HumanHairClassicLowFade = Fade (Low, Classic) marking-HumanHairClassicMedFade = Fade (Medium, Classic) marking-HumanHairClassicOmbre = Ombre Classic marking-HumanHairClassicCrewcut = Crewcut Classic -marking-HumanHairClassicLong = Long 1 (Classic) -marking-HumanHairClassicLong2 = Long 2 (Classic) -marking-HumanHairClassicLong3 = Long 3 (Classic) +marking-HumanHairClassicLong = Classic Long Hair 1 diff --git a/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl b/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl index 22cc34b271..7602189d5c 100644 --- a/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl +++ b/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl @@ -15,3 +15,9 @@ chat-speech-verb-harpy-1 = chirps chat-speech-verb-harpy-2 = tweets chat-speech-verb-harpy-3 = caws chat-speech-verb-harpy-4 = trills + +chat-speech-verb-name-chitinid = Chitinid +chat-speech-verb-chitinid-1 = clicks +chat-speech-verb-chitinid-2 = chitters +chat-speech-verb-chitinid-3 = hisses +chat-speech-verb-chitinid-4 = buzzes diff --git a/Resources/Locale/en-US/deltav/markings/chitinid.ftl b/Resources/Locale/en-US/deltav/markings/chitinid.ftl new file mode 100644 index 0000000000..be5ae5896a --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/chitinid.ftl @@ -0,0 +1,164 @@ +marking-ChitinidAntennasDefault-default = Antennae +marking-ChitinidAntennasDefault = Antennae (Default) + +marking-ChitinidAntennasCurly-curly = Antennae +marking-ChitinidAntennasCurly = Antennae (Curly) + +marking-ChitinidAntennasGray-gray = Antennae +marking-ChitinidAntennasGray = Antennae (Gray) + +marking-ChitinidAntennasSlick-slick = Antennae +marking-ChitinidAntennasSlick = Antennae (Slick) + +marking-ChitinidAntennasShort-short = Antennae +marking-ChitinidAntennasShort = Antennae (short) + +marking-ChitinidAntennasLong-long = Antennae +marking-ChitinidAntennasLong = Antennae (Long) + +marking-ChitinidAntennasBee-bee = Antennae +marking-ChitinidAntennasBee = Antennae (Bee) + +marking-ChitinidAntennasFirefly-firefly_primary = Primary +marking-ChitinidAntennasFirefly-firefly_secondary = Secondary +marking-ChitinidAntennasFirefly = Antennae (Firefly) + +marking-ChitinidAntennasRadar-radar = Antennae +marking-ChitinidAntennasRadar = Antennae (Radar) + +marking-ChitinidAntennasSpeed-speed = Antennae +marking-ChitinidAntennasSpeed = Antennae (Speed) + + + +marking-ChitinidWingsDefault-default = Wing +marking-ChitinidWingsDefault = Tail (Default) + +marking-ChitinidWingsSmooth-smooth = Wing +marking-ChitinidWingsSmooth = Tail (Smooth) + +marking-ChitinidWingsHoneypot-honeypot_primary = Primary +marking-ChitinidWingsHoneypot-honeypot_secondary = Secondary +marking-ChitinidWingsHoneypot = Tail (Honeypot) + +marking-ChitinidWingsStubby-stubby = Wing +marking-ChitinidWingsStubby = Tail (Stubby) + +marking-ChitinidWingsBee-bee_primary = Primary +marking-ChitinidWingsBee-bee_secondary = Secondary +marking-ChitinidWingsBee = Tail (Bee) + +marking-ChitinidWingsFirefly-firefly_primary = Primary +marking-ChitinidWingsFirefly-firefly_secondary = Secondary +marking-ChitinidWingsFirefly = Tail (Firefly) + + + +marking-ChitinidChestCharred-charred_chest = Chest +marking-ChitinidChestCharred = Chitinid Chest (Charred) + +marking-ChitinidHeadCharred-charred_head = Head +marking-ChitinidHeadCharred = Chitinid Head (Charred) + +marking-ChitinidLLegCharred-charred_l_leg = Left Leg +marking-ChitinidLLegCharred = Chitinid Left Leg (Charred) + +marking-ChitinidRLegCharred-charred_r_leg = Right Leg +marking-ChitinidRLegCharred = Chitinid Right Leg (Charred) + +marking-ChitinidLArmCharred-charred_l_arm = Left Arm +marking-ChitinidLArmCharred = Chitinid Left Arm (Charred) + +marking-ChitinidRArmCharred-charred_r_arm = Right Arm +marking-ChitinidRArmCharred = Chitinid Right Arm (Charred) + + + +marking-ChitinidChestPlated-plated_chest = Chest +marking-ChitinidChestPlated = Chitinid Chest (Plated) + +marking-ChitinidLArmPlated-plated_l_arm = Left Arm +marking-ChitinidLArmPlated = Chitinid Left Arm (Plated) + +marking-ChitinidRArmPlated-plated_r_arm = Right Arm +marking-ChitinidRArmPlated = Chitinid Right Arm (Plated) + + + +marking-ChitinidChestStripes-stripes_chest = Chest +marking-ChitinidChestStripes = Chitinid Chest (Stripes) + +marking-ChitinidHeadStripes-stripes_head = Head +marking-ChitinidHeadStripes = Chitinid Head (Stripes) + +marking-ChitinidLLegStripes-stripes_l_leg = Left Leg +marking-ChitinidLLegStripes = Chitinid Left Leg (Stripes) + +marking-ChitinidRLegStripes-stripes_r_leg = Right Leg +marking-ChitinidRLegStripes = Chitinid Right Leg (Stripes) + +marking-ChitinidLArmStripes-stripes_l_arm = Left Arm +marking-ChitinidLArmStripes = Chitinid Left Arm (Stripes) + +marking-ChitinidRArmStripes-stripes_r_arm = Right Arm +marking-ChitinidRArmStripes = Chitinid Right Arm (Stripes) + + + +marking-ChitinidChestRadiant-radiant_chest = Chest +marking-ChitinidChestRadiant = Chitinid Chest (Radiant) + +marking-ChitinidHeadRadiant-radiant_head = Head +marking-ChitinidHeadRadiant = Chitinid Head (Radiant) + +marking-ChitinidLLegRadiant-radiant_l_leg = Left Leg +marking-ChitinidLLegRadiant = Chitinid Left Leg (Radiant) + +marking-ChitinidRLegRadiant-radiant_r_leg = Right Leg +marking-ChitinidRLegRadiant = Chitinid Right Leg (Radiant) + +marking-ChitinidLArmRadiant-radiant_l_arm = Left Arm +marking-ChitinidLArmRadiant = Chitinid Left Arm (Radiant) + +marking-ChitinidRArmRadiant-radiant_r_arm = Right Arm +marking-ChitinidRArmRadiant = Chitinid Right Arm (Radiant) + + + +marking-ChitinidChestToxic-toxic_chest = Chest +marking-ChitinidChestToxic = Chitinid Chest (Toxic) + +marking-ChitinidHeadToxic-toxic_head = Head +marking-ChitinidHeadToxic = Chitinid Head (Toxic) + +marking-ChitinidLLegToxic-toxic_l_leg = Left Leg +marking-ChitinidLLegToxic = Chitinid Left Leg (Toxic) + +marking-ChitinidRLegToxic-toxic_r_leg = Right Leg +marking-ChitinidRLegToxic = Chitinid Right Leg (Toxic) + +marking-ChitinidLArmToxic-toxic_l_arm = Left Arm +marking-ChitinidLArmToxic = Chitinid Left Arm (Toxic) + +marking-ChitinidRArmToxic-toxic_r_arm = Right Arm +marking-ChitinidRArmToxic = Chitinid Right Arm (Toxic) + + + +marking-ChitinidChestSpotted-spotted_chest = Chest +marking-ChitinidChestSpotted = Chitinid Chest (Spotted) + +marking-ChitinidHeadSpotted-spotted_head = Head +marking-ChitinidHeadSpotted = Chitinid Head (Spotted) + +marking-ChitinidLLegSpotted-spotted_l_leg = Left Leg +marking-ChitinidLLegSpotted = Chitinid Left Leg (Spotted) + +marking-ChitinidRLegSpotted-spotted_r_leg = Right Leg +marking-ChitinidRLegSpotted = Chitinid Right Leg (Spotted) + +marking-ChitinidLArmSpotted-spotted_l_arm = Left Arm +marking-ChitinidLArmSpotted = Chitinid Left Arm (Spotted) + +marking-ChitinidRArmSpotted-spotted_r_arm = Right Arm +marking-ChitinidRArmSpotted = Chitinid Right Arm (Spotted) diff --git a/Resources/Locale/en-US/deltav/objectives/conditions/teach-person.ftl b/Resources/Locale/en-US/deltav/objectives/conditions/teach-person.ftl new file mode 100644 index 0000000000..0c557dbb0c --- /dev/null +++ b/Resources/Locale/en-US/deltav/objectives/conditions/teach-person.ftl @@ -0,0 +1 @@ +objective-condition-teach-person-title = Teach {$targetName}, {CAPITALIZE($job)} a lesson. You need to be within 30 meters of the target, otherwise the syndicate can't take credit for the job. diff --git a/Resources/Locale/en-US/deltav/species/species.ftl b/Resources/Locale/en-US/deltav/species/species.ftl index 83437bd651..9f3c8a5ffe 100644 --- a/Resources/Locale/en-US/deltav/species/species.ftl +++ b/Resources/Locale/en-US/deltav/species/species.ftl @@ -2,3 +2,4 @@ species-name-vulpkanin = Vulpkanin species-name-harpy = Harpy +species-name-chitinid = Chitinid diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Locale/en-US/envirosuit/envirosuit.ftl similarity index 100% rename from Resources/Prototypes/Loadouts/loadout_groups.yml rename to Resources/Locale/en-US/envirosuit/envirosuit.ftl diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index 6861c8ee5e..66cf2d9429 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -19,6 +19,7 @@ ui-options-general-discord = Discord ui-options-general-cursor = Cursor ui-options-general-speech = Speech ui-options-general-storage = Storage +ui-options-general-other = Other ui-options-general-accessibility = Accessibility ui-options-chatstack = Automatically merge identical chat messages ui-options-chatstack-off = Off @@ -159,6 +160,7 @@ ui-options-function-save-item-location = Save item location ui-options-function-toggle-standing = Toggle standing ui-options-function-toggle-crawling-under = Toggle crawling under furniture ui-options-static-storage-ui = Lock storage window to hotbar +ui-options-modern-progress-bar = Modern progress bar ui-options-function-smart-equip-backpack = Smart-equip to backpack ui-options-function-smart-equip-belt = Smart-equip to belt @@ -218,6 +220,9 @@ ui-options-function-editor-line-place = Place line ui-options-function-editor-rotate-object = Rotate ui-options-function-editor-flip-object = Flip ui-options-function-editor-copy-object = Copy +ui-options-function-mapping-enable-pick = Pick object/tile +ui-options-function-mapping-enable-decal-pick = Pick decal +ui-options-function-mapping-enable-delete = Delete object ui-options-function-show-debug-console = Open Console ui-options-function-show-debug-monitors = Show Debug Monitors diff --git a/Resources/Locale/en-US/estacao-pirata/cards/cards.ftl b/Resources/Locale/en-US/estacao-pirata/cards/cards.ftl new file mode 100644 index 0000000000..f721e3ff01 --- /dev/null +++ b/Resources/Locale/en-US/estacao-pirata/cards/cards.ftl @@ -0,0 +1,89 @@ +card-examined = This is the {$target}. +cards-verb-shuffle = Shuffle +card-verb-shuffle-success = Cards shuffled +cards-verb-draw = Draw card +cards-verb-flip = Flip cards +card-verb-join = Join cards +card-verb-organize-success = Cards flipped face { $facedown -> + [true] down + *[false] up +} +cards-verb-organize-up = Flip cards face up +cards-verb-organize-down = Flip cards face down +cards-verb-pickcard = Pick a card +card-stack-examine = { $count -> + [one] There is {$count} card in this stack. + *[other] There are {$count} cards in this stack. +} +cards-stackquantitychange-added = Card was added (Total cards: {$quantity}) +cards-stackquantitychange-removed = Card was removed (Total cards: {$quantity}) +cards-stackquantitychange-joined = Stack was merged (Total cards: {$quantity}) +cards-stackquantitychange-split = Stack was split (Total cards: {$quantity}) +cards-stackquantitychange-unknown = Stack count changed (Total cards: {$quantity}) +cards-verb-convert-to-deck = Convert to deck +cards-verb-split = Split in half + +card-base-name = card +card-deck-name = deck of cards + +card-sc-2-clubs = 2 of clubs +card-sc-3-clubs = 3 of clubs +card-sc-4-clubs = 4 of clubs +card-sc-5-clubs = 5 of clubs +card-sc-6-clubs = 6 of clubs +card-sc-7-clubs = 7 of clubs +card-sc-8-clubs = 8 of clubs +card-sc-9-clubs = 9 of clubs +card-sc-10-clubs = 10 of clubs +card-sc-ace-clubs = ace of clubs +card-sc-jack-clubs = jack of clubs +card-sc-king-clubs = king of clubs +card-sc-queen-clubs = queen of clubs + +card-sc-2-diamonds = 2 of diamonds +card-sc-3-diamonds = 3 of diamonds +card-sc-4-diamonds = 4 of diamonds +card-sc-5-diamonds = 5 of diamonds +card-sc-6-diamonds = 6 of diamonds +card-sc-7-diamonds = 7 of diamonds +card-sc-8-diamonds = 8 of diamonds +card-sc-9-diamonds = 9 of diamonds +card-sc-10-diamonds = 10 of diamonds +card-sc-ace-diamonds = ace of diamonds +card-sc-jack-diamonds = jack of diamonds +card-sc-king-diamonds = king of diamonds +card-sc-queen-diamonds = queen of diamonds + +card-sc-2-hearts = 2 of hearts +card-sc-3-hearts = 3 of hearts +card-sc-4-hearts = 4 of hearts +card-sc-5-hearts = 5 of hearts +card-sc-6-hearts = 6 of hearts +card-sc-7-hearts = 7 of hearts +card-sc-8-hearts = 8 of hearts +card-sc-9-hearts = 9 of hearts +card-sc-10-hearts = 10 of hearts +card-sc-ace-hearts = ace of hearts +card-sc-jack-hearts = jack of hearts +card-sc-king-hearts = king of hearts +card-sc-queen-hearts = queen of hearts + +card-sc-2-spades = 2 of spades +card-sc-3-spades = 3 of spades +card-sc-4-spades = 4 of spades +card-sc-5-spades = 5 of spades +card-sc-6-spades = 6 of spades +card-sc-7-spades = 7 of spades +card-sc-8-spades = 8 of spades +card-sc-9-spades = 9 of spades +card-sc-10-spades = 10 of spades +card-sc-ace-spades = ace of spades +card-sc-jack-spades = jack of spades +card-sc-king-spades = king of spades +card-sc-queen-spades = queen of spades + +card-sc-joker = joker + +container-sealed = A holographic security seal is on it. Opening it will have the seal dissipate. +container-unsealed = The seal attached to it dissipates. + diff --git a/Resources/Locale/en-US/estacao-pirata/store/uplink-catalog.ftl b/Resources/Locale/en-US/estacao-pirata/store/uplink-catalog.ftl new file mode 100644 index 0000000000..c94ffdba16 --- /dev/null +++ b/Resources/Locale/en-US/estacao-pirata/store/uplink-catalog.ftl @@ -0,0 +1,2 @@ +uplink-syndicate-deck-name = Syndicate Deck Box +uplink-syndicate-deck-desc = A deck box with the standard 53 playing cards with syndicate branding. Please gamble responsibly. diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 543e9be50d..2fb0aef07c 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -177,6 +177,7 @@ flavor-complex-true-nature = like the true nature of reality flavor-complex-false-meat = not entirely unlike meat flavor-complex-paper = like mushy pulp flavor-complex-compressed-meat = like compressed meat +flavor-complex-plasma = like plasma # Drink-specific flavors. diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index a625847fc2..097c6c2699 100644 --- a/Resources/Locale/en-US/forensics/fibers.ftl +++ b/Resources/Locale/en-US/forensics/fibers.ftl @@ -23,4 +23,8 @@ fibers-white = white fibers-yellow = yellow fibers-regal-blue = regal blue fibers-olive = olive -fibers-dyed = dyed fibers \ No newline at end of file +fibers-dyed = dyed fibers +fibers-silver = silver +fibers-gold = gold +fibers-maroon = maroon +fibers-pink = pink diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index 40d9975a46..bf7cd7c1a7 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -72,6 +72,9 @@ petting-success-syndicate-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} petting-success-derelict-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} rusty metal head. petting-success-recycler = You pet {THE($target)} on {POSS-ADJ($target)} mildly threatening steel exterior. petting-success-station-ai = You pet {THE($target)} on {POSS-ADJ($target)} cold, square screen. +petting-success-gladiabot = You pet {THE($target)} on {POSS-ADJ($target)} vicious cardboard head. +petting-success-batonbot = You pet {THE($target)} on {POSS-ADJ($target)} protective metal head. +petting-success-disablerbot = You pet {THE($target)} on {POSS-ADJ($target)} protective metal head. petting-failure-honkbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} honks in refusal! petting-failure-cleanbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy mopping! @@ -87,6 +90,9 @@ petting-failure-service-cyborg = You reach out to pet {THE($target)}, but {SUBJE petting-failure-syndicate-cyborg = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} treacherous affiliation makes you reconsider. petting-failure-derelict-cyborg = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} rusty and jagged exterior makes you reconsider. petting-failure-station-ai = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BASIC($target, "zap", "zaps")} your hand away. +petting-failure-gladiabot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} only wants to fight! +petting-failure-batonbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} nearly prods you with its baton! +petting-failure-disablerbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} angrily waves its weapon at you! petting-success-station-ai-others = { CAPITALIZE(THE($user)) } pets {THE($target)} on {POSS-ADJ($target)} cold, square screen. diff --git a/Resources/Locale/en-US/language/languages.ftl b/Resources/Locale/en-US/language/languages.ftl index fb3b1a1d04..e4033155c7 100644 --- a/Resources/Locale/en-US/language/languages.ftl +++ b/Resources/Locale/en-US/language/languages.ftl @@ -58,11 +58,14 @@ language-Moffic-description = The language of the mothpeople borders on complete language-RobotTalk-name = RobotTalk language-RobotTalk-description = A language consisting of harsh binary chirps, whistles, hisses, and whines. Organic tongues cannot speak it without aid from special translators. +language-Calcic-name = Calcic +language-Calcic-description = The bone-rattling language of skeletons and Plasmamen. It sounds like a harmonic trousle of bones with a humerus tone, sans any off-tune ribbing. + language-Sign-name = Tau-Ceti Basic Sign Language language-Sign-description = TCB-SL for short, this sign language is prevalent among mute and deaf people. language-Marish-name = Marish -language-Marish-description = An inherently empathetic language, conveying emotions with a single word; spoken effortlessly by Shadowkins, though nearly impossible to learn or replicate. +language-Marish-description = A language spoken only by Shadowkin, one that is unable to be replicated by normal tongues. language-ValyrianStandard-name = Valyrian Standard language-ValyrianStandard-description = @@ -70,6 +73,11 @@ language-ValyrianStandard-description = It is rarely spoken outside of the worlds of its native speakers, and has in modern times been supplanted by the 'Conlangs of the Sol Alliance. Its speakers are those who wish to uphold the traditions and beliefs of ancient peoples from before the colonial era. +language-Chittin-name = Chittin +language-Chittin-description = + A language consisting of clicks, buzzes, and some variety of harsh insect sounds. + Most of what makes up their speech comes from their antennae, making it a near-impossible language for those without to learn. + # Animal Languages language-Cat-name = Cat diff --git a/Resources/Locale/en-US/lathe/lathe-categories.ftl b/Resources/Locale/en-US/lathe/lathe-categories.ftl index 9fa331f3a4..2a31138b7a 100644 --- a/Resources/Locale/en-US/lathe/lathe-categories.ftl +++ b/Resources/Locale/en-US/lathe/lathe-categories.ftl @@ -1,7 +1,6 @@ lathe-category-ammo = Ammo lathe-category-circuitry = Circuitry lathe-category-lights = Lights -lathe-category-mechs = Mechs lathe-category-parts = Parts lathe-category-robotics = Robotics lathe-category-tacsuits = Tacsuits diff --git a/Resources/Locale/en-US/loadouts/generic/hands.ftl b/Resources/Locale/en-US/loadouts/generic/hands.ftl index 409691f577..69c7a9e7be 100644 --- a/Resources/Locale/en-US/loadouts/generic/hands.ftl +++ b/Resources/Locale/en-US/loadouts/generic/hands.ftl @@ -1,3 +1,5 @@ loadout-name-LoadoutHandsColorWhite = gloves (colorable) loadout-name-LoadoutHandsGlovesFingerlessWhite = fingerless gloves (colorable) loadout-name-LoadoutHandsGlovesEvening = evening gloves (colorable) +loadout-name-LoadoutHandsGlovesEnviroglovesColor = envirogloves (colorable) +loadout-name-LoadoutHandsGlovesEnviroglovesEvening = evening envirogloves (colorable) diff --git a/Resources/Locale/en-US/loadouts/generic/items.ftl b/Resources/Locale/en-US/loadouts/generic/items.ftl index f107823447..72d8275022 100644 --- a/Resources/Locale/en-US/loadouts/generic/items.ftl +++ b/Resources/Locale/en-US/loadouts/generic/items.ftl @@ -1,3 +1,5 @@ +loadout-description-LoadoutItemBlackDeck = A black box containing the standard 53 playing cards. Please gamble responsibly. +loadout-description-LoadoutItemNTDeck = A Nanotrasen-branded box containing the standard 53 playing cards. Please gamble responsibly. loadout-description-LoadoutItemCig = Cool guys always have one. loadout-description-LoadoutItemCigsGreen = A pack a day keeps the doctor well-paid! loadout-description-LoadoutItemCigsRed = A pack a day keeps the doctor well-paid! diff --git a/Resources/Locale/en-US/loadouts/generic/species.ftl b/Resources/Locale/en-US/loadouts/generic/species.ftl new file mode 100644 index 0000000000..943ddbf3c2 --- /dev/null +++ b/Resources/Locale/en-US/loadouts/generic/species.ftl @@ -0,0 +1,5 @@ +loadout-name-LoadoutSpeciesDoubleEmergencyPlasmaTank = extra plasma internals tank +loadout-description-LoadoutSpeciesDoubleEmergencyPlasmaTank = An extra plasma tank to extend your plasma supply for about another hour. + +loadout-name-LoadoutSpeciesDrinkMilkCartonAndSyringe = milk carton and syringe +loadout-description-LoadoutSpeciesDrinkMilkCartonAndSyringe = A milk carton full of nutritious calcium to heal your bones, and a syringe to inject the milk directly. diff --git a/Resources/Locale/en-US/loadouts/generic/uniform.ftl b/Resources/Locale/en-US/loadouts/generic/uniform.ftl index b05a926935..1fcf270f29 100644 --- a/Resources/Locale/en-US/loadouts/generic/uniform.ftl +++ b/Resources/Locale/en-US/loadouts/generic/uniform.ftl @@ -43,3 +43,5 @@ loadout-name-LoadoutUniformJumpsuitSailor = sailor suit (colorable) loadout-name-LoadoutUniformJumpsuitTrackpants = track pants (colorable) loadout-name-LoadoutUniformJumpsuitTurtleneckGrey = grey turtleneck (colorable) loadout-name-LoadoutUniformJumpsuitYogaGymBra = yoga gym bra (colorable) +loadout-name-LoadoutUniformEnvirosuitBlackPinkAlt = black pink envirosuit, alternative +loadout-name-LoadoutUniformEnvirosuitEnviroslacksMNKAlt = MNK enviroslacks, alternative diff --git a/Resources/Locale/en-US/loadouts/itemgroups.ftl b/Resources/Locale/en-US/loadouts/itemgroups.ftl index 6250fbcb89..e35316e661 100644 --- a/Resources/Locale/en-US/loadouts/itemgroups.ftl +++ b/Resources/Locale/en-US/loadouts/itemgroups.ftl @@ -19,6 +19,7 @@ character-item-group-LoadoutSmokes = Smokeables character-item-group-LoadoutBoxKits = Survival Kits character-item-group-LoadoutWritables = Writing Tools character-item-group-LoadoutPets = Pets +character-item-group-LoadoutCards = Playing Cards # Job Specific Template character-item-group-LoadoutJOBBackpacks = JOB Backpacks @@ -796,3 +797,7 @@ character-item-group-LoadoutReporterUniforms = Reporter Uniforms # Traits - Languages character-item-group-TraitsLanguagesBasic = Basic Languages character-item-group-TraitsAccents = Accents + +# Traits - Mind Or Machine +character-item-group-TraitsMind = Mind Over Machine +character-item-group-TraitsMachine = Machine Over Mind diff --git a/Resources/Locale/en-US/loadouts/jobs/security.ftl b/Resources/Locale/en-US/loadouts/jobs/security.ftl index 442dc65326..b3fa965ef3 100644 --- a/Resources/Locale/en-US/loadouts/jobs/security.ftl +++ b/Resources/Locale/en-US/loadouts/jobs/security.ftl @@ -33,3 +33,8 @@ loadout-name-LoadoutSecurityRevolverFitz = Fitz (lethal) loadout-name-LoadoutSecurityRevolverFitzNonlethal = Fitz (non-lethal) loadout-name-LoadoutSecurityRevolverPython = Python (lethal) loadout-name-LoadoutSecurityRevolverPythonNonlethal = Python (non-lethal) +loadout-name-LoadoutSecurityPistolEnergyRevolver = EG-4 Energy Revolver + +# Duty Melee +loadout-name-LoadoutSecurityEquipmentTruncheon = Truncheon +loadout-name-LoadoutSecurityEquipmentEnergySword = Energy Sword diff --git a/Resources/Locale/en-US/mapping/editor.ftl b/Resources/Locale/en-US/mapping/editor.ftl index 153df531e2..3ad7b8e642 100644 --- a/Resources/Locale/en-US/mapping/editor.ftl +++ b/Resources/Locale/en-US/mapping/editor.ftl @@ -1,7 +1,30 @@ mapping-entities = Entities mapping-tiles = Tiles mapping-decals = Decals +mapping-favorite = Favorite +mapping-template = Templates +mapping-search = Search mapping-replace = Replace mapping-erase-entity = Erase Entity -mapping-erase-decal = Erase Decal \ No newline at end of file +mapping-erase-tile = Erase Tile +mapping-erase-decal = Erase Decal + +mapping-erase-entity-tooltip = Hold {$key} + +mapping-flip-tooltip = Flip sides +mapping-visibility-tooltip = Visibility +mapping-pick-tooltip = Pick entity or tile (Hold {$key}) +mapping-pick-decal-tooltip = Pick decal (Hold {$key}) + Press the middle mouse button to switch between decals +mapping-fixgridatmos-tooltip = Add atmosphere to the grid +mapping-remove-grid-tooltip = Remove grid +mapping-move-grid-tooltip = Move grid +mapping-grid-vv-tooltip = View grid variables +mapping-pipes-color-tooltip = Paint the pipes + Click on the pipe to paint in the currently selected color +mapping-chat-button-tooltip = Toggle chat visibility + +mapping-collapse-all-tooltip = Collapse All +mapping-clear-search-tooltip = Clear search + diff --git a/Resources/Locale/en-US/mapping/mapping-visibility.ftl b/Resources/Locale/en-US/mapping/mapping-visibility.ftl new file mode 100644 index 0000000000..d2f103a5c0 --- /dev/null +++ b/Resources/Locale/en-US/mapping/mapping-visibility.ftl @@ -0,0 +1,14 @@ +mapping-visibility-window-title = Visibility +mapping-visibility-light = Light +mapping-visibility-fov = Fov +mapping-visibility-shadows = Shadows +mapping-visibility-entities = Entities +mapping-visibility-markers = Markers +mapping-visibility-walls = Walls +mapping-visibility-airlocks = Airlocks +mapping-visibility-decals = Decals +mapping-visibility-subfloor = Subfloor +mapping-visibility-cables = Cables +mapping-visibility-disposal = Disposal +mapping-visibility-atmos = Atmos + diff --git a/Resources/Locale/en-US/mapping/templates.ftl b/Resources/Locale/en-US/mapping/templates.ftl new file mode 100644 index 0000000000..00a8462028 --- /dev/null +++ b/Resources/Locale/en-US/mapping/templates.ftl @@ -0,0 +1,55 @@ +mapping-template-common = Common + +mapping-template-service = Service +mapping-template-bar = Bar +mapping-template-kitchen = Kitchen +mapping-template-fridge = Fridge +mapping-template-hydroponics = Hydroponics +mapping-template-janitorscloset = Janitor's Closet +mapping-template-theater = Theater +mapping-template-reportersoffice = Reporter's Office +mapping-template-church = Church + +mapping-template-cargo = Cargo +mapping-template-qmroom = QM's room +mapping-template-salvage = Salvage + +mapping-template-command = Command +mapping-template-bridge = Bridge +mapping-template-captainsquarters = Captain's Quarters +mapping-template-hopoffice = HOP's Office + +mapping-template-medical = Medical +mapping-template-chemistry = Chemistry +mapping-template-medbay = Medbay +mapping-template-morgueroom = Morgue +mapping-template-cmoroom = CMO's Room +mapping-template-cryonics = Cryonics +mapping-template-operatingroom = Operating Room +mapping-template-virology = Virology + +mapping-template-science = Science +mapping-template-anomalygenerator = Anomaly Generator +mapping-template-robotics = Robotics +mapping-template-artifactlab = Artifact Lab +mapping-template-rdroom = RD's Room +mapping-template-rnd = Research And Development + +mapping-template-engineering = Engineering +mapping-template-ceroom = CE's Room +mapping-template-atmos = Atmospherics +mapping-template-materials = Materials +mapping-template-telecoms = Telecommunication +mapping-template-solarpanels = Solar Panels +mapping-template-ame = AME Room +mapping-template-paroom = Particle Accelerator Room + +mapping-template-security = Security +mapping-template-hosroom = HOS's Room +mapping-template-brig = Brig +mapping-template-wardensoffice = Warden's Office +mapping-template-armory = Armory +mapping-template-permabrig = Perma Brig +mapping-template-detectiveroom = Detective's Room +mapping-template-gunnery = Gunnery + diff --git a/Resources/Locale/en-US/markings/face.ftl b/Resources/Locale/en-US/markings/face.ftl index 50fb935bef..e50803dffd 100644 --- a/Resources/Locale/en-US/markings/face.ftl +++ b/Resources/Locale/en-US/markings/face.ftl @@ -90,3 +90,6 @@ marking-FaceNeckSlimThick-neck_thick_f = Neck Cover (Slim Thick) marking-FaceNeckWideThick = Neck Cover (Wide Thick) marking-FaceNeckWideThick-neck_thick_m = Neck Cover (Wide Thick) + +marking-IronJaw = Iron Jaw +marking-IronJaw-iron_jaw = Iron Jaw diff --git a/Resources/Locale/en-US/markings/gauze.ftl b/Resources/Locale/en-US/markings/gauze.ftl index f8bedc3195..7ed35a90ba 100644 --- a/Resources/Locale/en-US/markings/gauze.ftl +++ b/Resources/Locale/en-US/markings/gauze.ftl @@ -46,6 +46,9 @@ marking-GauzeUpperLegRight = Gauze Thigh Wrap (Right) marking-GauzeBlindfold-gauze_blindfold = Gauze Blindfold marking-GauzeBlindfold = Gauze Blindfold +marking-GauzeHead-gauze_head = Gauze Head Wrap +marking-GauzeHead = Gauze Head Wrap + marking-GauzeLizardBlindfold-gauze_lizard_blindfold = Gauze Blindfold marking-GauzeLizardBlindfold = Gauze Blindfold diff --git a/Resources/Locale/en-US/markings/plasmaman_wings.ftl b/Resources/Locale/en-US/markings/plasmaman_wings.ftl new file mode 100644 index 0000000000..af5b56b28c --- /dev/null +++ b/Resources/Locale/en-US/markings/plasmaman_wings.ftl @@ -0,0 +1,2 @@ +marking-WingsSkeleton = Skeleton Wings +marking-WingsSkeleton-skeleton = Skeleton Wings diff --git a/Resources/Locale/en-US/metabolism/metabolizer-types.ftl b/Resources/Locale/en-US/metabolism/metabolizer-types.ftl index d0f57e2bc0..97d5c068c4 100644 --- a/Resources/Locale/en-US/metabolism/metabolizer-types.ftl +++ b/Resources/Locale/en-US/metabolism/metabolizer-types.ftl @@ -12,3 +12,4 @@ metabolizer-type-arachnid = Arachnid metabolizer-type-vampiric = Vampiric metabolizer-type-liquorlifeline = Liquor Lifeline metabolizer-type-shadowkin = Shadowkin +metabolizer-type-plasmaman = Plasmaman diff --git a/Resources/Locale/en-US/mood/mood.ftl b/Resources/Locale/en-US/mood/mood.ftl index aa348ce627..213fbb7443 100644 --- a/Resources/Locale/en-US/mood/mood.ftl +++ b/Resources/Locale/en-US/mood/mood.ftl @@ -1,4 +1,4 @@ -mood-show-effects-start = [font size=12]Mood:[/font] +mood-show-effects-start = [font size=12]Mood:[/font] mood-effect-HungerOverfed = I ate so much, I feel as though I'm about to burst! mood-effect-HungerOkay = I am feeling full. @@ -78,3 +78,10 @@ mood-effect-EthanolBenefit = I feel so relaxed from drinking. mood-effect-SpaceDrugsBenefit = Woaaaah, such pretty colors maaaaan. It's like I can hear color and taste sound maaan. + +# Plasmaman +mood-effect-PlasmamanIngestPlasma = + My body is rejuvenated by the fresh plasma coursing through my body. + +mood-effect-PlasmamanIngestMilk = + I can feel the milk's calcium repairing my bones. This is dairy-lightful! diff --git a/Resources/Locale/en-US/npc/factions.ftl b/Resources/Locale/en-US/npc/factions.ftl new file mode 100644 index 0000000000..8aaa2b6e8f --- /dev/null +++ b/Resources/Locale/en-US/npc/factions.ftl @@ -0,0 +1 @@ +npcfaction-component-faction-set = Faction set to: {$faction} diff --git a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl index 04a4aeb816..53b7f890d9 100644 --- a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl @@ -15,8 +15,11 @@ humanoid-profile-editor-height-label = Height: {$height}cm humanoid-profile-editor-width-label = Width: {$width}cm humanoid-profile-editor-weight-label = Weight: {$weight}kg humanoid-profile-editor-species-label = Species: -humanoid-profile-editor-customspeciename-label = Custom Specie Name: -humanoid-profile-editor-pronouns-label = Pronouns: +humanoid-profile-editor-customspeciename-label = Custom Species Name: +humanoid-profile-editor-station-ai-name-label = Station AI Name: +humanoid-profile-editor-cyborg-name-label = Cyborg Name: +humanoid-profile-editor-pronouns-label = Primary Pronouns: +humanoid-profile-editor-display-pronouns-label = Cosmetic Pronouns: humanoid-profile-editor-pronouns-male-text = He / Him humanoid-profile-editor-pronouns-female-text = She / Her humanoid-profile-editor-pronouns-epicene-text = They / Them diff --git a/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl b/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl index af0a836ce9..17b41b7001 100644 --- a/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl +++ b/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl @@ -4,6 +4,8 @@ ent-ClothingHeadHelmetHardsuitAtmos = HpI-19t helmet .desc = The Fotia's standard helmet, it features the same heat protection as the suit, along with some integrated protective gear for the wearer's head. ent-ClothingHeadHelmetHardsuitEngineering = HpI-19r helmet .desc = The Lampsi's standard helmet, it features the same radiation protection as the suit, along with some integrated protective gear for the wearer's head. +ent-ClothingHeadHelmetHardsuitEngineeringUnpainted = HpI-19r helmet + .desc = { ent-ClothingHeadHelmetHardsuitEngineering.desc } ent-ClothingHeadHelmetHardsuitSpatio = HpI-20s helmet .desc = A lightweight helmet designed for the Kriti hardsuit, it allows for better mobility, along with some protection against radiation. ent-ClothingHeadHelmetHardsuitSalvage = HpI-20a helmet @@ -55,6 +57,8 @@ ent-ClothingHeadHelmetHardsuitLuxury = HpI-20c helmet .desc = A modified helmet for the Minos hardsuit, fashioned after the Logistics Officer's colors. It's been modified for greater mobility at the expense of physical trauma protection. ent-ClothingHeadHelmetHardsuitSyndie = CSA-51a helmet .desc = An armored helmet deployed over a Shanlin tacsuit. This one has been painted blood red. +ent-ClothingHeadHelmetHardsuitShanlinUnpainted = CSA-51a helmet + .desc = An armored helmet deployed over a Shanlin tacsuit. This one is unpainted bare metal. ent-ClothingHeadHelmetHardsuitSyndieReverseEngineered = CSA-51a helmet .desc = An armored helmet deployed over a Shanlin tacsuit. This one has been painted blue. ent-ClothingHeadHelmetHardsuitSyndieMedic = CSA-51m helmet @@ -62,6 +66,9 @@ ent-ClothingHeadHelmetHardsuitSyndieMedic = CSA-51m helmet Designed to enable the survival of combat medics in the most dangerous of environments. ent-ClothingHeadHelmetHardsuitSyndieElite = CSA-54UA helmet .desc = An elite version of the Shanlin tacsuit's helmet, featuring improved armor and fireproofing. +ent-ClothingHeadHelmetHardsuitShiweiUnpainted = CSA-54UA helmet + .desc = An elite version of the Shanlin tacsuit's helmet, featuring improved armor and fireproofing. + It is unpainted bare spaceship alloy. ent-ClothingHeadHelmetHardsuitSyndieCommander = CSA-54c helmet .desc = A bulked up version of the Shanlin tacsuit's helmet, purpose-built for commanders of special operation squads. This one has been painted blood-red. ent-ClothingHeadHelmetHardsuitCybersun = CSA-80UA helmet diff --git a/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl b/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl index 95348243e7..5d7b55c163 100644 --- a/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl +++ b/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl @@ -6,6 +6,8 @@ ent-ClothingOuterHardsuitAtmos = HpI-19t "Fotia" hardsuit ent-ClothingOuterHardsuitEngineering = HpI-19r "Lampsi" hardsuit .desc = A standard-issue hardsuit produced by Hephaestus Industries, used by engineers in low & high pressure environments. The label indicates that its rated for moderate amounts of radiation exposure. It feels a bit heavy. +ent-ClothingOuterHardsuitEngineeringUnpainted = HpI-19r "Lampsi" hardsuit + .desc = { ent-ClothingOuterHardsuitEngineering.desc } ent-ClothingOuterHardsuitSpatio = HpI-20s "Kriti" hardsuit .desc = A standard-issue hardsuit produced by Hephaestus Industries, designed for industrial work in low pressure environments. The label indicates that its rated for moderate amounts of radiation exposure, and it feels somewhat light. @@ -74,6 +76,9 @@ ent-ClothingOuterHardsuitLuxury = HpI-20c - "Minos" hardsuit ent-ClothingOuterHardsuitSyndie = CSA-51a - "Shanlin" tacsuit .desc = A tactical combat hardsuit produced by the Cybersun-Armaments Corporation, the suit's tags indicate it provides moderate protection against most forms of damage. This one has been painted blood red. It feels incredibly light. +ent-ClothingOuterHardsuitShanlinUnpainted = CSA-51a - "Shanlin" tacsuit + .desc = A tactical combat hardsuit produced by the Cybersun-Armaments Corporation, the suit's tags indicate it provides moderate protection against most forms of damage. + This one is unpainted bare metal. It feels incredibly light. ent-ClothingOuterHardsuitSyndieReverseEngineered = CSA-51a - "Shanlin" tacsuit .desc = A tactical combat hardsuit produced by the Cybersun-Armaments Corporation, the suit's tags indicate it provides moderate protection against most forms of damage. This one has been painted blue. It feels incredibly light. @@ -84,6 +89,10 @@ ent-ClothingOuterHardsuitSyndieElite = CSA-54UA - "Shiwei" tacsuit .desc = An "Up-Armored" tactical combat hardsuit produced by the Cybersun-Armaments Corporation. The suit's tags indicate its rated for high exposure to radiation, heat and explosions, along with moderate physical trauma protection. It feels incredibly light. +ent-ClothingOuterHardsuitShiweiUnpainted = CSA-54UA - "Shiwei" tacsuit + .desc = An "Up-Armored" tactical combat hardsuit produced by the Cybersun-Armaments Corporation. + The suit's tags indicate its rated for high exposure to radiation, heat and explosions, along with moderate physical trauma protection. + It is unpainted bare spaceship alloy. It feels incredibly light. ent-ClothingOuterHardsuitSyndieCommander = CSA-54c - "Tianming" tacsuit .desc = A "Commander" tactical combat hardsuit produced by the Cybersun-Armaments Corporation. The suit's tags indicate that it protects greatly against all forms of damage. This one has been painted blood red. It doesn't seem to have any weight. diff --git a/Resources/Locale/en-US/psionics-records/psionics-records.ftl b/Resources/Locale/en-US/psionics-records/psionics-records.ftl new file mode 100644 index 0000000000..ff2c2b8a4c --- /dev/null +++ b/Resources/Locale/en-US/psionics-records/psionics-records.ftl @@ -0,0 +1,37 @@ +psionics-records-console-window-title = Psionics Registry Records +psionics-records-console-records-list-title = Crewmembers +psionics-records-console-select-record-info = Select a record. +psionics-records-console-no-records = No records found! +psionics-records-console-no-record-found = No record was found for the selected person. + +## Status + +psionics-records-console-status = Status +psionics-records-status-none = None +psionics-records-status-registered = Registered Psionic +psionics-records-status-suspected = Suspected Psionics +psionics-records-status-abusing = Abusing Psionics + +psionics-records-console-wanted-reason = [color=gray]Psionics Listed[/color] +psionics-records-console-suspected-reason = [color=gray]Suspected Reason[/color] +psionics-records-console-reason = Psionics/Reason +psionics-records-console-reason-placeholder = For example: {$placeholder} + +psionics-records-permission-denied = Permission denied + +## Security channel notifications + +psionics-records-console-registered = {$name} is registered as psionic by {$officer}: {$reason}. +psionics-records-console-suspected = {$officer} marked {$name} as a possible psionic because of: {$reason}. +psionics-records-console-not-suspected = {$name} is no longer a suspected psionic. +psionics-records-console-not-registered = {$name} is no longer registered as psionic. +psionics-records-console-abusing = {$officer} marked {$name} as abusing psionics because of: {$reason}. +psionics-records-console-not-abusing = {$name} is no longer marked as abusing psionics. +psionics-records-console-unknown-officer = + +## Filters + +psionics-records-filter-placeholder = Input text and press "Enter" +psionics-records-name-filter = Name +psionics-records-prints-filter = Fingerprints +psionics-records-dna-filter = DNA diff --git a/Resources/Locale/en-US/psionics/psionic-powers.ftl b/Resources/Locale/en-US/psionics/psionic-powers.ftl index f7d225f58f..6a14139fd1 100644 --- a/Resources/Locale/en-US/psionics/psionic-powers.ftl +++ b/Resources/Locale/en-US/psionics/psionic-powers.ftl @@ -1,6 +1,5 @@ generic-power-initialization-feedback = I Awaken. already-casting = I cannot channel more than one power at a time. -no-mana = I cannot channel enough power. # Dispel dispel-power-description = Dispel summoned entities such as familiars or forcewalls. diff --git a/Resources/Locale/en-US/self-extinguisher/self-extinguisher.ftl b/Resources/Locale/en-US/self-extinguisher/self-extinguisher.ftl new file mode 100644 index 0000000000..04d705ae49 --- /dev/null +++ b/Resources/Locale/en-US/self-extinguisher/self-extinguisher.ftl @@ -0,0 +1,18 @@ +self-extinguisher-verb = Self-Extinguish + +self-extinguisher-examine-cooldown-ready = The self-extinguisher is ready to be used. +self-extinguisher-examine-cooldown-recharging = The self-extinguisher is recharging for [color=teal]{$cooldown}[/color] seconds. +self-extinguisher-examine-no-charges = The self-extinguisher is recharging for [color=teal]{$cooldown}[/color] seconds. + +self-extinguisher-no-charges = The {$item} has no charges left! +self-extinguisher-on-cooldown = The {$item}'s extinguisher is recharging! +self-extinguisher-not-on-fire-self = You are not on fire! +self-extinguisher-not-on-fire-other = {$target} {CONJUGATE-BE($target)} not on fire! +self-extinguisher-not-immune-to-fire-self = You are not insulated against fire! +self-extinguisher-not-immune-to-fire-other = {$target} {CONJUGATE-BE($target)} not insulated against fire! + +self-extinguisher-extinguish-self = The {$item} extinguishes you! +self-extinguisher-extinguish-other = The {$item} extinguishes {$target}! + +self-extinguisher-refill = You refill the suit's self-extinguisher, using up the cartridge. +self-extinguisher-refill-full = The self-extinguisher is full. diff --git a/Resources/Locale/en-US/species/species.ftl b/Resources/Locale/en-US/species/species.ftl index bfebc705c5..6ffc9ac2bd 100644 --- a/Resources/Locale/en-US/species/species.ftl +++ b/Resources/Locale/en-US/species/species.ftl @@ -1,4 +1,4 @@ -## Species Names +## Species Names species-name-human = Human species-name-dwarf = Dwarf @@ -12,7 +12,8 @@ species-name-skeleton = Skeleton species-name-vox = Vox species-name-ipc = IPC species-name-shadowkin = Shadowkin +species-name-plasmaman = Plasmaman ## Misc species things -snail-hurt-by-salt-popup = The salty solution burns like acid! \ No newline at end of file +snail-hurt-by-salt-popup = The salty solution burns like acid! diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 214a259296..523d37c839 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -213,8 +213,8 @@ uplink-chemistry-kit-desc = A starter kit for the aspiring chemist, includes tox uplink-knives-kit-name = Throwing Knives Kit uplink-knives-kit-desc = A set of 4 syndicate branded throwing knives, perfect for embedding into the body of your victims. -uplink-meds-bundle-name = Medical Bundle -uplink-meds-bundle-desc = All you need to get your comrades back in the fight: mainly a combat medkit, a defibrillator and three combat medipens. +uplink-meds-bundle-name = Interdyne Medical Bundle +uplink-meds-bundle-desc = An assortment of autoinjectors and premium medical equipment to cover for every possible situation. Contains an elite compact defibrillator that can be used as a weapon. uplink-ammo-bundle-name = Ammo Bundle uplink-ammo-bundle-desc = Reloading! Contains 4 magazines for the C-20r, 4 drums for the Bulldog, and 2 ammo boxes for the L6 SAW. @@ -436,6 +436,9 @@ uplink-syndicate-pai-desc = A Syndicate variant of the pAI with access to the Sy uplink-bribe-name = Lobbying Bundle uplink-bribe-desc = A heartfelt gift that can help you sway someone's opinion. Real or counterfeit? Yes. +uplink-bribe-plasmaman-name = Lobbying Bundle +uplink-bribe-plasmaman-desc = A heartfelt gift that can help you sway someone's opinion. Real or counterfeit? Yes. Includes a tacticool envirosuit for a tacticool plasmaman like you. + uplink-hypodart-name = Hypodart uplink-hypodart-desc = A seemingly unremarkable dart with an enlarged reservoir for chemicals. It can store up to 7u reagents in itself, and instantly inject when it hits the target. Starts empty. diff --git a/Resources/Locale/en-US/thief/backpack.ftl b/Resources/Locale/en-US/thief/backpack.ftl index 90cb0031fb..b779bded0b 100644 --- a/Resources/Locale/en-US/thief/backpack.ftl +++ b/Resources/Locale/en-US/thief/backpack.ftl @@ -54,6 +54,13 @@ thief-backpack-category-communicator-description = for all station channels, a cybersun pen, a portable crew monitor, a voice chameleon mask and lots of money for business deals. +thief-backpack-category-communicator-plasmaman-name = communicator's kit +thief-backpack-category-communicator-plasmaman-description = + A communication enthusiast's kit. Includes a master key + for all station channels, a cybersun pen, a portable + crew monitor, a voice chameleon mask, a tacticool envirosuit + and lots of money for business deals. + thief-backpack-category-smuggler-name = smuggler's kit thief-backpack-category-smuggler-description = A kit for those who like to have big pockets. diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index 43dd9f66a9..8b4d5d5674 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -95,6 +95,9 @@ trait-description-NormalVisionHarpy = Your eyes have been modified by means of advanced medicine to see in the standard colors of Red, Green, and Blue. You do not have the usual vision anomaly that your species may possess. +trait-name-SkeletonAccent = Skeleton Accent +trait-description-SkeletonAccent = You have a humerus skeleton accent that will rattle others to the bone! + trait-name-NormalVision = Trichromat Modification trait-description-NormalVision = Your eyes have been modified by means of advanced medicine to see in the standard colors of Red, Green, and Blue. @@ -328,7 +331,7 @@ trait-description-Clumsy = trait-name-Small = Small trait-description-Small = You are much smaller than a typical person, and can climb into spaces others would not normally be able to fit into, such as duffel bags. - This trait does not in any way modify your character's size, it merely requires that your character be at most the size of a standard Felinid. + This trait does not in any way modify your character's size, it merely requires that your character be at most the size of a standard Tajaran. trait-name-TemperatureTolerance = Temperature Tolerance trait-description-TemperatureTolerance = @@ -500,11 +503,12 @@ trait-description-PsychognomyPower = trait-name-Redshirt = Redshirt trait-description-Redshirt = - They said this air would be breathable. + "They said this air would be breathable. Get in, get out again, and no one gets hurt. Something is pulling me up the hill. I look down in my red shirt. - I look down in my red shirt. + I look down in my red shirt." + Reduces your threshold for death by 100 points. trait-name-BrittleBoneDisease = Osteogenesis Imperfecta trait-description-BrittleBoneDisease = @@ -519,3 +523,7 @@ trait-name-ThermographicVision = CyberEyes Module: Thermographic Scanner trait-description-ThermographicVision = Your CyberEyes have been enhanced with a Thermographic Scanner. When enabled, it captures a snapshot of the user's surroundings, while highlighting all biological life forms. It can even detect individuals through the walls of a station. + +trait-name-ShadowkinBlackeye = Blackeye +trait-description-ShadowkinBlackeye = + You lose your special Shadowkin powers & respect amongst your peers, in return for some points. Effectively, you are only a Shadowkin in name, not in practice. diff --git a/Resources/Locale/en-US/verbs/verb-system.ftl b/Resources/Locale/en-US/verbs/verb-system.ftl index c99f9987cb..d579f045c5 100644 --- a/Resources/Locale/en-US/verbs/verb-system.ftl +++ b/Resources/Locale/en-US/verbs/verb-system.ftl @@ -26,6 +26,7 @@ verb-categories-set-sensor = Sensor verb-categories-timer = Set Delay verb-categories-lever = Lever verb-categories-select-type = Select Type +verb-categories-select-faction = Select Faction verb-categories-fax = Set Destination verb-categories-power-level = Power Level verb-categories-interaction = Interact diff --git a/Resources/Maps/CentralCommand/harmony.yml b/Resources/Maps/CentralCommand/harmony.yml new file mode 100644 index 0000000000..2f63a966ba --- /dev/null +++ b/Resources/Maps/CentralCommand/harmony.yml @@ -0,0 +1,44804 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorArcadeBlue2 + 2: FloorDark + 9: FloorFreezer + 11: FloorGreenCircuit + 16: FloorKitchen + 17: FloorMetalDiamond + 4: FloorMowedAstroGrass + 13: FloorRGlass + 12: FloorReinforced + 14: FloorShowroom + 19: FloorSteel + 8: FloorSteelCheckerDark + 10: FloorSteelCheckerLight + 6: FloorTechMaint + 1: FloorTechMaint2 + 7: FloorWhite + 5: FloorWood + 3: Lattice + 147: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + pos: -50,-50 + parent: invalid + - type: MapGrid + chunks: + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAEwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAgAAAAADkwAAAAAAEwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAgAAAAADAgAAAAADEwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAgAAAAABkwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAABEwAAAAABEwAAAAAAkwAAAAAAEwAAAAACEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAABkwAAAAAAEwAAAAACEwAAAAADkwAAAAAABgAAAAAAAQAAAAAABgAAAAAAAgAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAABEwAAAAACkwAAAAAAEwAAAAACEwAAAAADkwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAgAAAAACAgAAAAABEwAAAAABkwAAAAAAEwAAAAABEwAAAAADEwAAAAABEwAAAAABEwAAAAACEwAAAAACEwAAAAADEwAAAAADkwAAAAAABgAAAAAAAQAAAAAABgAAAAAAAgAAAAADkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAACkwAAAAAAEwAAAAADEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAABkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAABEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAEwAAAAABEwAAAAACEwAAAAABAgAAAAAAAgAAAAABAgAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: kwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAAAEwAAAAACEwAAAAADEwAAAAAADQAAAAAAkwAAAAAAAQAAAAAAEwAAAAADEwAAAAAAEwAAAAAAAgAAAAADAgAAAAAAAgAAAAADEwAAAAACEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAACEwAAAAABEwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAADEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAACAgAAAAABkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACEwAAAAACEwAAAAABEwAAAAABEwAAAAADEwAAAAACAQAAAAAAkwAAAAAABgAAAAAAkwAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAADAgAAAAADkwAAAAAAAgAAAAACEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABEwAAAAABkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAABAgAAAAACkwAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAADkwAAAAAABgAAAAAABgAAAAAAkwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAABAgAAAAACkwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAADkwAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAADAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAACBQAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAABQAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAACBQAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAABAgAAAAADAgAAAAAB + version: 6 + 1,4: + ind: 1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADAAAAAAAkwAAAAAADAAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAkwAAAAAADAAAAAAAkwAAAAAADAAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABBgAAAAAABgAAAAAABgAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABAQAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAACEwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: BgAAAAAABgAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAAAEwAAAAABkwAAAAAAEwAAAAACEwAAAAACEwAAAAABkwAAAAAAEwAAAAACEwAAAAACkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAAQAAAAAAEwAAAAADEwAAAAADEwAAAAAAAQAAAAAAEwAAAAAAEwAAAAABBgAAAAAABgAAAAAAEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAACEwAAAAADkwAAAAAAEwAAAAACEwAAAAADEwAAAAABkwAAAAAAEwAAAAACEwAAAAABkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAAEwAAAAADkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAAgAAAAACBgAAAAAAAgAAAAADBgAAAAAAAgAAAAACAgAAAAAABgAAAAAAkwAAAAAABgAAAAAAEwAAAAABkwAAAAAAEwAAAAACAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACBgAAAAAAAgAAAAABBgAAAAAAAgAAAAADAgAAAAABBgAAAAAAkwAAAAAABgAAAAAAEwAAAAACkwAAAAAAEwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAgAAAAABBgAAAAAAAgAAAAACBgAAAAAAAgAAAAACAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAABAAAAAAAkwAAAAAAEwAAAAACAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAAAEwAAAAADEwAAAAABEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAEwAAAAABAgAAAAACAgAAAAAABgAAAAAAAgAAAAACBgAAAAAAAgAAAAACBgAAAAAAAgAAAAADBgAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAADEwAAAAABEwAAAAABEwAAAAAAkwAAAAAAAgAAAAAABgAAAAAAAgAAAAABBgAAAAAAAgAAAAACBgAAAAAAAgAAAAADBgAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAADAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAACAgAAAAABAgAAAAADkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAACAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAABEwAAAAABEwAAAAAAEwAAAAAAAgAAAAADAgAAAAADAgAAAAACEwAAAAADEwAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: DQAAAAAADQAAAAABEwAAAAAAEwAAAAABEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABkwAAAAAAAgAAAAACkwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAACAgAAAAACAgAAAAAAAgAAAAABEwAAAAADEwAAAAAAkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABAgAAAAABAgAAAAACkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAACkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAACAgAAAAABAgAAAAABAgAAAAAAkwAAAAAAAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAABAgAAAAABAgAAAAADAgAAAAACBQAAAAADBQAAAAABAgAAAAAAkwAAAAAAAgAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAABkwAAAAAABAAAAAAAkwAAAAAAEwAAAAABAgAAAAACAgAAAAAAAgAAAAAABQAAAAACBQAAAAADAgAAAAADAgAAAAACAgAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAAAkwAAAAAABAAAAAAAkwAAAAAAEwAAAAAAAgAAAAABAgAAAAACAgAAAAABBQAAAAACBQAAAAACAgAAAAACkwAAAAAAAgAAAAABBQAAAAADBQAAAAAABQAAAAABBQAAAAACkwAAAAAABAAAAAAAkwAAAAAAEwAAAAABAgAAAAABAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAACkwAAAAAAAgAAAAABAgAAAAABAgAAAAABAgAAAAAAAgAAAAACkwAAAAAABAAAAAAAkwAAAAAAEwAAAAABAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABAgAAAAACAgAAAAAAAgAAAAAAAgAAAAABkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAABAgAAAAACAgAAAAADEwAAAAACEwAAAAACBQAAAAADBQAAAAAABQAAAAACAgAAAAADkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAABAgAAAAADkwAAAAAAEwAAAAACEwAAAAADBQAAAAADBQAAAAADBQAAAAACAgAAAAACkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADBQAAAAAABQAAAAAABQAAAAACAgAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAACAgAAAAACkwAAAAAAEwAAAAADEwAAAAABAgAAAAADAgAAAAAAAgAAAAADAgAAAAACkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAACEwAAAAABEwAAAAADEwAAAAACAgAAAAABkwAAAAAAEwAAAAADEwAAAAAC + version: 6 + 2,4: + ind: 2,4 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAACEwAAAAACEwAAAAACEwAAAAABAgAAAAABAgAAAAACEwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAgAAAAADEwAAAAAAEwAAAAABEwAAAAABAgAAAAADAgAAAAACEwAAAAABEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAgAAAAACEwAAAAACEwAAAAAAEwAAAAADAgAAAAAAkwAAAAAAkwAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAABAgAAAAACkwAAAAAAEwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAEwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAEwAAAAACEwAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAABEwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAADEwAAAAAAEwAAAAACEwAAAAADEwAAAAADEwAAAAADEwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAACEwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAABEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAEwAAAAADEwAAAAABEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAAAEwAAAAABEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAEwAAAAAAEwAAAAABEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAABEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAAAEwAAAAADEwAAAAADEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAAD + version: 6 + 2,5: + ind: 2,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAAAEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAACEwAAAAAB + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAABEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAAQAAAAAAAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAABgAAAAAAkwAAAAAABQAAAAAABQAAAAADkwAAAAAACAAAAAABEwAAAAAAkwAAAAAABQAAAAADBQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAABgAAAAAAkwAAAAAABQAAAAAABQAAAAADkwAAAAAAEwAAAAACCAAAAAACkwAAAAAABQAAAAADBQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABQAAAAADBQAAAAABAgAAAAABCAAAAAADEwAAAAABAgAAAAAABQAAAAACBQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAABgAAAAAAkwAAAAAABQAAAAADBQAAAAABkwAAAAAAEwAAAAAACAAAAAAAkwAAAAAABQAAAAAABQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAABEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAABgAAAAAAkwAAAAAADgAAAAAADgAAAAAAkwAAAAAAEwAAAAAACAAAAAABDwAAAAAADwAAAAAADwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAABwAAAAAABgAAAAAABgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAAEwAAAAABDwAAAAAADwAAAAAADwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAgAAAAADBgAAAAAABgAAAAAAkwAAAAAADgAAAAAADgAAAAAAkwAAAAAAEwAAAAADCAAAAAADDwAAAAAADwAAAAAADwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAB + version: 6 + 3,2: + ind: 3,2 + tiles: EwAAAAAAEwAAAAACkwAAAAAACAAAAAADEwAAAAABCAAAAAABEwAAAAACCAAAAAABEwAAAAAACAAAAAABkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAABkwAAAAAAEwAAAAADCAAAAAACEwAAAAAACAAAAAADEwAAAAADCAAAAAABEwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABAAAAAAAEwAAAAAAEwAAAAAAkwAAAAAACAAAAAAAEwAAAAADCAAAAAABEwAAAAABCAAAAAACEwAAAAADCAAAAAABkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACCAAAAAABEwAAAAADCAAAAAAAEwAAAAABCAAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAABAAAAAAAEwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAADCAAAAAABkwAAAAAAkwAAAAAAkwAAAAAACAAAAAADCAAAAAACCAAAAAADkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAAgAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAABEwAAAAABEwAAAAABEwAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAABEwAAAAAAEwAAAAACDQAAAAACEwAAAAADAgAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAACEwAAAAAADQAAAAABDQAAAAABDQAAAAABEwAAAAAADQAAAAADDQAAAAACDQAAAAACEwAAAAAADQAAAAADEwAAAAABAgAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAABEwAAAAACEwAAAAADEwAAAAADEwAAAAADEwAAAAAAEwAAAAABEwAAAAABEwAAAAABEwAAAAADDQAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAAEwAAAAAAEwAAAAADkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAACkwAAAAAAAgAAAAABCAAAAAABCAAAAAADAgAAAAACEwAAAAADEwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAgAAAAACBQAAAAACBQAAAAAABQAAAAACAgAAAAADAgAAAAABCAAAAAADCAAAAAABAgAAAAADEwAAAAABEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACBQAAAAABBQAAAAABBQAAAAADAgAAAAADAgAAAAABCAAAAAAACAAAAAACAgAAAAABEwAAAAABEwAAAAAAkwAAAAAABQAAAAAABQAAAAABBQAAAAACkwAAAAAAAgAAAAACBQAAAAADBQAAAAACBQAAAAAAAgAAAAABAgAAAAACCAAAAAACCAAAAAABCAAAAAAAEwAAAAAAEwAAAAADkwAAAAAABQAAAAABBQAAAAAABQAAAAACkwAAAAAAAgAAAAADBQAAAAACBQAAAAADBQAAAAABAgAAAAACAgAAAAACCAAAAAADCAAAAAACAgAAAAADAgAAAAACAgAAAAACkwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAACkwAAAAAAkwAAAAAAAgAAAAADCAAAAAAACAAAAAAAAgAAAAADEwAAAAABEwAAAAADkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAADBQAAAAABCAAAAAADCAAAAAADCAAAAAAB + version: 6 + 3,3: + ind: 3,3 + tiles: DQAAAAAAEwAAAAACAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABQAAAAACBQAAAAACCAAAAAAADQAAAAAADQAAAAACEwAAAAAAEwAAAAABkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABQAAAAACBQAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAACkwAAAAAACQAAAAAACQAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAAkwAAAAAAAgAAAAABCAAAAAACCAAAAAAAAgAAAAABEwAAAAACEwAAAAACkwAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACgAAAAADCgAAAAADCgAAAAACCgAAAAADAgAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAABEwAAAAACEwAAAAAAkwAAAAAACQAAAAAACQAAAAAAkwAAAAAAEAAAAAAACgAAAAABCgAAAAADCgAAAAAACgAAAAADAgAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADEwAAAAABEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEAAAAAAACgAAAAABCgAAAAACCgAAAAABCgAAAAAAAgAAAAADAgAAAAAACAAAAAAACAAAAAADAgAAAAAAEwAAAAADEwAAAAADkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEAAAAAAACgAAAAABCgAAAAACCgAAAAACCgAAAAADAgAAAAABAgAAAAACCAAAAAAACAAAAAACAgAAAAABEwAAAAACEwAAAAABkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAkwAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAABDQAAAAADEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAADQAAAAABEwAAAAACAgAAAAADEwAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAAAEwAAAAAADQAAAAACEwAAAAACAgAAAAADEwAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAADDQAAAAAADQAAAAAADQAAAAACEwAAAAAADQAAAAACDQAAAAAADQAAAAABEwAAAAACEwAAAAAAEwAAAAAAAgAAAAACEwAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAADEwAAAAABEwAAAAAAEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAADCAAAAAAACAAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAABgAAAAAAEwAAAAABEwAAAAACkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAEwAAAAABEwAAAAABkwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAACkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABgAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: EwAAAAABEwAAAAADkwAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAACkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAACkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAACAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAgAAAAADEwAAAAADEwAAAAAAkwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAAAAgAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADEwAAAAADEwAAAAAAkwAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAADBQAAAAADBQAAAAABBQAAAAABAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAADkwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAACBQAAAAACkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAEwAAAAADEwAAAAABkwAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAABkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAEwAAAAAAEwAAAAABkwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAACBQAAAAADkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAEwAAAAACEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAACkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAADAAAAAAAAgAAAAABEwAAAAADEwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADAAAAAAADAAAAAAAEwAAAAAAEwAAAAADkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAADkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAADAAAAAAADAAAAAAAEwAAAAACEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADAAAAAAAAgAAAAACEwAAAAAAEwAAAAADkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAADAAAAAAAAgAAAAAB + version: 6 + 3,5: + ind: 3,5 + tiles: EwAAAAACEwAAAAADkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAADAAAAAAAAgAAAAADEwAAAAACEwAAAAACkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADEwAAAAAAEwAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: EwAAAAADEwAAAAAAEwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABkwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAAkwAAAAAAAgAAAAACAgAAAAADAgAAAAAAAgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAABkwAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABkwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAAkwAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACkwAAAAAAkwAAAAAAAgAAAAADkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAAAgAAAAADkwAAAAAAAgAAAAABAgAAAAADAgAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAACkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAAgAAAAABkwAAAAAAAgAAAAABAgAAAAABAgAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAADkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAAgAAAAADAgAAAAAAAgAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAADkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAADkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAADkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAADBwAAAAABkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAABwAAAAAABwAAAAAAkwAAAAAAEwAAAAABEwAAAAABEwAAAAACkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAAABwAAAAABkwAAAAAAEwAAAAABEwAAAAACEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAABwAAAAADBwAAAAAAkwAAAAAAEwAAAAACEwAAAAABEwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAABBwAAAAADkwAAAAAAEwAAAAABEwAAAAABEwAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAABAgAAAAACEwAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADAgAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAABEwAAAAABEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAABEwAAAAAAEwAAAAAAAgAAAAACEwAAAAABEwAAAAADEwAAAAACDQAAAAABEwAAAAABEwAAAAADAgAAAAABEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAADEwAAAAAAAgAAAAACEwAAAAACEwAAAAACEwAAAAADEwAAAAABAgAAAAABAgAAAAACkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAABAgAAAAABEwAAAAAAEwAAAAABEwAAAAACEwAAAAACAgAAAAAAAgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABEwAAAAABEwAAAAADkwAAAAAAAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAEwAAAAACEwAAAAABkwAAAAAAAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAACAAAAAAACAAAAAACkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAAgAAAAABAgAAAAABkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAACEwAAAAAAEwAAAAACkwAAAAAAAgAAAAABAgAAAAABBQAAAAAABQAAAAADBQAAAAABAgAAAAADAgAAAAADAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADAgAAAAADAgAAAAACkwAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAACCAAAAAAACAAAAAABAgAAAAADCAAAAAACCAAAAAACAgAAAAABEwAAAAADEwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAAgAAAAADBQAAAAABBQAAAAACBQAAAAADAgAAAAAB + version: 6 + 4,3: + ind: 4,3 + tiles: DQAAAAAACAAAAAACkwAAAAAAAgAAAAADAgAAAAADkwAAAAAAEwAAAAABDQAAAAAAEwAAAAABAgAAAAABAgAAAAAAAgAAAAADBQAAAAAABQAAAAACBQAAAAADAgAAAAADCAAAAAADCAAAAAABAgAAAAABCAAAAAACCAAAAAACAgAAAAADEwAAAAAAEwAAAAADEwAAAAACkwAAAAAAkwAAAAAAAgAAAAACBQAAAAACBQAAAAADBQAAAAABAgAAAAACAgAAAAACAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADAgAAAAABAgAAAAAAkwAAAAAAAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAACkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAACEwAAAAABEwAAAAADkwAAAAAAAgAAAAADAgAAAAAABQAAAAADBQAAAAADBQAAAAABAgAAAAACCAAAAAAACAAAAAADkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABEwAAAAABEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAAgAAAAABAgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABEwAAAAADEwAAAAACkwAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAACEwAAAAACEwAAAAADkwAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAACkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAEwAAAAABEwAAAAACEwAAAAACEwAAAAACEwAAAAACAgAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAABEwAAAAABAgAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAADAgAAAAAAEwAAAAADEwAAAAACEwAAAAACDQAAAAABEwAAAAADEwAAAAADAgAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAAAAgAAAAABEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAABEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAABAgAAAAACEwAAAAAAEwAAAAAAEwAAAAACEwAAAAADEwAAAAADEwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAADkwAAAAAAEwAAAAABEwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAACEwAAAAAAkwAAAAAAEwAAAAACEwAAAAACEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAACEwAAAAABkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,4: + ind: 4,4 + tiles: AgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAABkwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAADAgAAAAAAAgAAAAADAgAAAAABEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAACkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACAgAAAAABAgAAAAACAgAAAAAAAgAAAAACEwAAAAAAEwAAAAAAEwAAAAADEwAAAAADkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABkwAAAAAAAgAAAAABkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAABkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAACkwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAACEwAAAAAAkwAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAADEwAAAAABEwAAAAABEwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAgAAAAACEQAAAAAAAgAAAAADDAAAAAAAkwAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAACkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABgAAAAAAkwAAAAAADAAAAAAAkwAAAAAAAgAAAAABDAAAAAAAkwAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAACkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAADAgAAAAADAgAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAAAgAAAAACDAAAAAAAkwAAAAAAAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAADAgAAAAADDAAAAAAAkwAAAAAAAgAAAAAAAgAAAAADkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAAAgAAAAACDAAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,5: + ind: 4,5 + tiles: AgAAAAAAAgAAAAABAgAAAAACAgAAAAABEQAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAAAgAAAAACAgAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAACCAAAAAAAAgAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAADCAAAAAABAgAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAgAAAAAACAAAAAABAgAAAAACkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAABCAAAAAABAgAAAAACkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: AAAAAAAAAQAAAAAAAgAAAAAACAAAAAACAgAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAACAAAAAAAAgAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAgAAAAADCAAAAAACAgAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAABCAAAAAADAgAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAACCAAAAAACAgAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAACAgAAAAAAAgAAAAADkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAACEwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAABEwAAAAAAEwAAAAACEwAAAAADEwAAAAADEwAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADDQAAAAAADQAAAAADDQAAAAACEwAAAAAAEwAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAACEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAABkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAAgAAAAACAgAAAAACAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAEwAAAAABEwAAAAADEwAAAAADAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAADAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABAgAAAAACAgAAAAAAAgAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: kwAAAAAAEwAAAAACEwAAAAACEwAAAAACEwAAAAABAgAAAAAAAgAAAAAAAgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAAAAgAAAAADAgAAAAAAAgAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAACEwAAAAACEwAAAAACEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACkwAAAAAAEwAAAAADEwAAAAAAEwAAAAADAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAAgAAAAADAgAAAAACAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAADQAAAAABDQAAAAABDQAAAAABEwAAAAAAEwAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAABEwAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAACEwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAADAgAAAAABAgAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAABCAAAAAAAAgAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAACCAAAAAACAgAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAgAAAAADCAAAAAABAgAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAABCAAAAAABAgAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,4: + ind: 5,4 + tiles: AAAAAAAAAQAAAAAAAgAAAAADCAAAAAACAgAAAAACkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAACAAAAAAAAgAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAgAAAAAACAAAAAADAgAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAABCAAAAAACAgAAAAADkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAACCAAAAAADAgAAAAABkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAACAgAAAAADAgAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 260: 82.99919,43.189243 + 261: 82.99919,45.18824 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 262: 82.96833,50.845253 + 263: 82.96833,52.84132 + - node: + angle: -1.5707963267948966 rad + color: '#52B4E996' + id: ArrowsGreyscale + decals: + 947: 67.94693,24.000368 + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3AFF' + id: ArrowsGreyscale + decals: + 1813: 67.24835,79.99227 + - node: + color: '#DE3A3AFF' + id: ArrowsGreyscale + decals: + 1814: 66.0011,77.28108 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 55: 74,54 + 56: 74,53 + 57: 75,53 + 58: 76,53 + 59: 78,53 + 60: 79,53 + 61: 80,53 + 62: 80,54 + 63: 80,42 + 64: 80,43 + 65: 79,43 + 66: 78,43 + 67: 76,43 + 68: 75,43 + 69: 74,43 + 70: 74,42 + 257: 83,45 + 258: 83,51 + 259: 83,53 + 391: 27,38 + 392: 26,37 + 393: 27,36 + 394: 28,37 + 399: 26,41 + 400: 25,42 + 401: 27,42 + 402: 26,43 + 464: 83,43 + 472: 41,81 + 760: 69,72 + 761: 69,71 + 762: 69,70 + 1068: 47,72 + 1069: 47,74 + 1070: 47,76 + 1071: 47,78 + 1072: 42,72 + 1073: 42,74 + 1074: 42,76 + 1075: 42,78 + 1252: 55,82 + 1752: 19,49 + 1753: 20,49 + 1754: 20,47 + 1755: 19,47 + 1756: 16,50 + 1757: 16,46 + 2097: 47,30 + 2098: 47,29 + 2099: 48,29 + 2100: 48,30 + 2101: 49,30 + 2102: 49,29 + 2229: 55,77 + 2394: 63,15 + 2395: 65,15 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 2231: 55,73 + - node: + color: '#29722EC6' + id: BotGreyscale + decals: + 832: 31,49 + 833: 33,49 + - node: + color: '#334E6DC8' + id: BotGreyscale + decals: + 834: 33,47 + 835: 31,47 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 946: 67,24 + - node: + color: '#DE3A3AFF' + id: BotGreyscale + decals: + 1821: 65,81 + 1822: 66,81 + 1823: 67,77 + 1824: 67,78 + 1825: 67,79 + - node: + cleanable: True + color: '#DE3A3AFF' + id: BotGreyscale + decals: + 1806: 62,77 + 1807: 62,78 + 1808: 62,79 + 1809: 62,80 + - node: + cleanable: True + color: '#DE3A3AFF' + id: BotLeft + decals: + 1812: 64,77 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 467: 40,81 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 387: 26,38 + 388: 28,36 + 395: 25,43 + 396: 27,41 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 469: 42,81 + 470: 40,80 + 471: 42,80 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 389: 26,36 + 390: 28,38 + 397: 25,41 + 398: 27,43 + - node: + color: '#FFFFFFFF' + id: BrickBoxOverlay + decals: + 891: 54,67 + 1057: 51,67 + 1058: 57,67 + - node: + color: '#FFFFFFFF' + id: BrickCornerOverlayNE + decals: + 892: 57,71 + - node: + color: '#FFFFFFFF' + id: BrickCornerOverlayNW + decals: + 890: 51,71 + - node: + color: '#FFFFFFFF' + id: BrickCornerOverlaySE + decals: + 894: 57,63 + - node: + color: '#FFFFFFFF' + id: BrickCornerOverlaySW + decals: + 893: 51,63 + - node: + color: '#52B4E996' + id: BrickLineOverlayE + decals: + 862: 52,63 + 863: 52,64 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 879: 52,70 + 880: 52,71 + - node: + color: '#FFFFFFFF' + id: BrickLineOverlayE + decals: + 900: 57,64 + 901: 57,65 + 902: 57,66 + 904: 57,68 + 905: 57,69 + 906: 57,70 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayN + decals: + 878: 54,68 + - node: + color: '#FFFFFFFF' + id: BrickLineOverlayN + decals: + 907: 52,71 + 908: 53,71 + 909: 54,71 + 910: 55,71 + 911: 56,71 + 912: 53.00579,66.61778 + 913: 52.010002,66.61778 + 915: 54.998432,66.620865 + 916: 55.999092,66.620865 + - node: + color: '#52B4E996' + id: BrickLineOverlayS + decals: + 868: 54,66 + - node: + color: '#FFFFFFFF' + id: BrickLineOverlayS + decals: + 895: 52,63 + 896: 53,63 + 897: 54,63 + 898: 55,63 + 899: 56,63 + - node: + color: '#52B4E996' + id: BrickLineOverlayW + decals: + 864: 56,63 + 865: 56,64 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 881: 56,70 + 882: 56,71 + - node: + color: '#FFFFFFFF' + id: BrickLineOverlayW + decals: + 883: 51,64 + 884: 51,65 + 885: 51,66 + 887: 51,68 + 888: 51,69 + 889: 51,70 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 1153: 40,25 + 1632: 64,48 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 1162: 38,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 1148: 36,25 + 1631: 62,48 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 1158: 38,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 1159: 38,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 1161: 38,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 1160: 38,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1150: 38,26 + 1225: 58,29 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 1156: 37,25 + 1157: 39,25 + 1634: 63,48 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 1154: 39,25 + 1155: 37,25 + 1633: 63,48 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1149: 38,26 + 1223: 56,30 + 1224: 56,28 + 1443: 61,47 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelBox + decals: + 1627: 48,48 + 1628: 72,57 + 1629: 71,48 + 1630: 72,39 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 1966: 33,34 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 1971: 31,34 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 1972: 33,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 1973: 31,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 1598: 58,38 + 1599: 62,38 + 1600: 83,40 + 1601: 83,56 + 1602: 62,58 + 1603: 58,58 + 1604: 33,48 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 1607: 48,58 + 1608: 48,40 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 1605: 48,38 + 1606: 48,56 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 1591: 81,40 + 1592: 81,56 + 1593: 60,58 + 1594: 56,58 + 1595: 31,48 + 1596: 56,38 + 1597: 60,38 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 1981: 31,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 1982: 33,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 1980: 31,34 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 1983: 33,34 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 1195: 58,28 + 1197: 58,30 + 1611: 48,57 + 1612: 48,39 + 1969: 33,33 + 1977: 31,33 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 1620: 57,58 + 1621: 61,58 + 1622: 82,56 + 1623: 82,40 + 1624: 61,38 + 1625: 57,38 + 1626: 32,48 + 1967: 32,34 + 1978: 32,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 1613: 32,48 + 1614: 57,38 + 1615: 61,38 + 1616: 82,40 + 1617: 82,56 + 1618: 61,58 + 1619: 57,58 + 1974: 32,32 + 1979: 32,34 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 1199: 56,29 + 1609: 48,39 + 1610: 48,57 + 1975: 31,33 + 1976: 33,33 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 1850: 72,77 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 1849: 69,77 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 1492: 72,74 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 1836: 69,74 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 2138: 38,36 + 2195: 42,43 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2150: 40,38 + 2182: 38,42 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 2146: 40,36 + 2168: 36,42 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 2158: 43,36 + 2169: 36,43 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 2149: 40,37 + 2186: 38,43 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineE + decals: + 2160: 43,38 + 2161: 43,39 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineE + decals: + 2142: 38,38 + 2189: 40,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 1493: 72,75 + 1494: 72,76 + 2139: 38,37 + 2196: 42,42 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 2072: 43.999012,33.497955 + 2073: 43.999012,32.500347 + 2159: 43,37 + 2193: 40,43 + - node: + color: '#FA750096' + id: BrickTileWhiteLineE + decals: + 2226: 67,61 + 2227: 67,62 + 2228: 67,63 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 1638: 72,35 + 1639: 73,35 + 1640: 74,35 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1484: 63,67 + 1485: 64,67 + 1486: 65,67 + 1487: 66,67 + 1488: 67,67 + 1501: 72,63 + 1502: 73,63 + 1503: 74,63 + 1839: 70,77 + 1840: 71,77 + 1845: 69,80 + 1846: 70,80 + 1847: 71,80 + 1848: 72,80 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 2070: 43.501442,33.998653 + 2071: 42.501442,33.998653 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1635: 72,33 + 1636: 73,33 + 1637: 74,33 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 1479: 67,65 + 1480: 66,65 + 1481: 65,65 + 1482: 64,65 + 1483: 63,65 + 1490: 70,74 + 1491: 71,74 + 1498: 72,61 + 1499: 73,61 + 1500: 74,61 + 1841: 69,79 + 1842: 70,79 + 1843: 71,79 + 1844: 72,79 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 2074: 43.499012,32 + 2075: 42.499012,32 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 2137: 40,36 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 2151: 42,38 + 2183: 40,42 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 2147: 42,36 + 2166: 38,42 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 2167: 38,43 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 2148: 42,37 + 2187: 40,43 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineW + decals: + 2162: 38,36 + 2163: 38,37 + 2164: 38,38 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineW + decals: + 2141: 40,38 + 2190: 42,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 1837: 69,75 + 1838: 69,76 + 2140: 40,37 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 2068: 42.001442,33.501396 + 2069: 42.001442,32.5007 + 2194: 42,43 + - node: + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 2223: 63,61 + 2224: 63,62 + 2225: 63,63 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 2366: 38,30 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 2065: 42,32 + 2066: 43,33 + 2067: 44,34 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 2232: 72,34 + 2233: 73,34 + 2234: 74,34 + 2422: 72,27 + 2423: 71,28 + 2424: 70,29 + 2425: 69,30 + 2426: 68,31 + 2427: 70,31 + 2428: 71,30 + 2429: 72,29 + 2431: 70,27 + 2432: 69,28 + 2433: 68,29 + 2434: 67,30 + 2436: 67,28 + 2477: 70,24 + 2478: 71,24 + 2487: 66,29 + 2488: 66,31 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 1954: 48,63 + 1955: 47,63 + 1956: 47,64 + 1957: 48,64 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 2324: 33,53 + 2325: 32,54 + 2326: 31,55 + 2327: 33,55 + 2328: 32,56 + 2329: 31,57 + 2330: 31,53 + 2331: 33,57 + 2333: 34,56 + 2334: 34,54 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 1943: 86,49 + 1944: 86,48 + 1945: 86,47 + 1946: 87,47 + 1947: 87,48 + 1948: 87,49 + 1949: 85,49 + 1958: 73,62 + 1959: 72,62 + 1960: 74,62 + 2235: 72,65 + 2236: 71,66 + 2237: 70,67 + 2238: 69,68 + 2239: 70,65 + 2240: 69,66 + 2241: 71,68 + 2242: 72,67 + 2243: 70,69 + 2244: 72,69 + 2245: 71,70 + 2246: 70,71 + 2247: 71,72 + 2248: 72,71 + 2249: 73,72 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 2062: 44,32 + 2063: 43,33 + 2064: 42,34 + - node: + color: '#FA750096' + id: CheckerNWSE + decals: + 966: 67,20 + 967: 67,19 + 968: 68,19 + 969: 68,20 + 2216: 64,62 + 2217: 65,62 + 2218: 66,62 + - node: + cleanable: True + color: '#DE3A3AFF' + id: Delivery + decals: + 1810: 65,77 + 1811: 63,77 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 53: 77,43 + 54: 77,53 + 113: 68,57 + 114: 68,58 + 115: 68,59 + 116: 75,57 + 117: 75,56 + 118: 75,55 + 119: 82,54 + 120: 83,54 + 121: 84,54 + 122: 82,42 + 123: 83,42 + 124: 84,42 + 125: 75,39 + 126: 75,40 + 127: 75,41 + 128: 68,37 + 129: 68,38 + 130: 68,39 + 131: 50,37 + 132: 50,38 + 133: 50,39 + 134: 50,57 + 135: 50,58 + 136: 50,59 + 227: 70,50 + 228: 71,50 + 229: 72,50 + 230: 72,46 + 231: 71,46 + 232: 70,46 + 233: 73,48 + 659: 68,65 + 660: 68,66 + 661: 68,67 + 791: 47,50 + 792: 48,50 + 793: 49,50 + 794: 49,46 + 795: 48,46 + 796: 47,46 + 1037: 82,38 + 1038: 83,38 + 1039: 84,38 + 1040: 84,58 + 1041: 83,58 + 1042: 82,58 + 1076: 42,73 + 1077: 42,77 + 1078: 47,75 + 1125: 45,64 + 1126: 45,65 + 1244: 31,51 + 1245: 32,51 + 1246: 33,51 + 1253: 54,82 + 1254: 56,82 + 1257: 59,72 + 1258: 81,71 + 1259: 61,65 + 1260: 50,21 + 1261: 58,21 + 1262: 61,31 + 1263: 80,25 + 1264: 30,29 + 1660: 22,47 + 1661: 22,48 + 1662: 22,49 + 1663: 44,47 + 1664: 44,48 + 1665: 44,49 + 1758: 18,47 + 1759: 18,49 + 1984: 31,45 + 1985: 32,45 + 1986: 33,45 + 2498: 54,31 + 2499: 55,31 + - node: + color: '#DE3A3AFF' + id: DeliveryGreyscale + decals: + 1817: 64,81 + 1818: 67,81 + - node: + cleanable: True + color: '#DEA58F76' + id: Dirt + decals: + 1887: 69,75 + 1888: 70,75 + - node: + cleanable: True + color: '#DEA58FA1' + id: Dirt + decals: + 1874: 64,78 + 1875: 62,77 + 1876: 62,78 + 1877: 64,77 + 1878: 65,81 + 1879: 67,78 + 1880: 67,75 + 1881: 67,74 + 1882: 65,74 + 1883: 66,76 + 1884: 68,80 + 1885: 72,78 + 1886: 71,79 + - node: + cleanable: True + color: '#DEAF886F' + id: Dirt + decals: + 1892: 66,78 + 1893: 65,80 + 1894: 67,80 + 1895: 66,80 + 1896: 64,74 + 1897: 63,74 + 1898: 62,74 + 1899: 62,75 + 1900: 63,75 + 1901: 64,75 + 1902: 67,75 + 1903: 67,74 + 1904: 66,74 + 1905: 66,75 + 1906: 65,74 + 1907: 70,73 + 1908: 69,74 + 1909: 70,76 + 1910: 72,74 + 1911: 71,71 + 1912: 67,65 + 1913: 65,66 + 1914: 64,67 + 1915: 63,69 + 1916: 66,70 + 1918: 73,62 + 1919: 72,61 + 1921: 63,62 + 1922: 63,65 + 1923: 66,68 + 1930: 69,72 + 1931: 69,71 + 1932: 69,70 + 1933: 65,78 + 1934: 64,79 + 1935: 65,79 + 1936: 64,79 + - node: + color: '#FFEBD05D' + id: Dirt + decals: + 1677: 51,71 + 1678: 52,71 + 1679: 53,71 + 1680: 54,71 + 1681: 55,71 + 1682: 56,71 + 1683: 57,71 + 1684: 57,70 + 1685: 56,70 + 1686: 55,70 + 1687: 54,70 + 1688: 53,70 + 1689: 52,70 + 1690: 51,70 + 1691: 51,69 + 1692: 52,69 + 1693: 53,69 + 1694: 54,69 + 1695: 55,69 + 1696: 56,69 + 1697: 57,69 + 1698: 57,68 + 1699: 56,68 + 1700: 55,68 + 1701: 54,68 + 1702: 53,68 + 1703: 52,68 + 1704: 51,68 + 1705: 51,67 + 1706: 52,67 + 1707: 53,67 + 1708: 54,67 + 1709: 55,67 + 1710: 56,67 + 1711: 57,67 + 1712: 57,66 + 1713: 56,66 + 1714: 55,66 + 1715: 54,66 + 1716: 53,66 + 1717: 52,66 + 1718: 51,66 + 1719: 51,65 + 1720: 52,65 + 1721: 53,65 + 1722: 54,65 + 1723: 55,65 + 1724: 56,65 + 1725: 57,65 + 1726: 57,64 + 1727: 56,64 + 1728: 55,64 + 1729: 54,64 + 1730: 53,64 + 1731: 52,64 + 1732: 51,64 + 1733: 51,63 + 1734: 52,63 + 1735: 53,63 + 1736: 54,63 + 1737: 55,63 + 1738: 56,63 + 1739: 57,63 + 1740: 51,62 + 1741: 51,61 + 1742: 52,61 + 1743: 53,61 + 1744: 54,61 + 1745: 55,61 + 1746: 56,61 + 1747: 57,61 + 1748: 57,62 + 1749: 54,60 + 1750: 63,66 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 675: 70,58 + 676: 72,59 + 677: 74,58 + 678: 68,59 + 1523: 69,70 + 2258: 69,65 + 2259: 72,66 + 2260: 70,68 + 2261: 70,70 + 2262: 72,72 + 2263: 71,69 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 641: 64,69 + 644: 64,62 + 648: 66,69 + 649: 67,71 + 668: 69,61 + 673: 70,60 + 674: 70,64 + 697: 62,66 + 1505: 63,65 + 1506: 66,65 + 1507: 65,67 + 1516: 72,61 + 1542: 68,67 + 1751: 63,66 + 1851: 70,73 + 1852: 71,74 + 1853: 69,77 + 1863: 69,80 + 2264: 70,65 + 2265: 69,67 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 663: 64,66 + 664: 67,66 + 665: 65,66 + 666: 69,63 + 667: 70,61 + 670: 71,59 + 681: 73,62 + 694: 66,71 + 695: 63,70 + 696: 64,71 + 1043: 51,61 + 1044: 54,61 + 1045: 54,60 + 1046: 57,61 + 1054: 56,61 + 1055: 55,61 + 1056: 54,60 + 1508: 64,67 + 1509: 63,67 + 1517: 73,61 + 1518: 74,61 + 1519: 73,63 + 1533: 70,69 + 1854: 70,76 + 1855: 71,77 + 1864: 69,79 + 2270: 64,63 + 2271: 67,63 + 2272: 65,61 + 2275: 65,62 + 2276: 70,66 + 2277: 72,65 + 2278: 71,71 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 650: 64,71 + 651: 63,71 + 652: 63,69 + 653: 64,70 + 654: 66,70 + 655: 67,70 + 657: 64,68 + 658: 63,62 + 669: 70,59 + 688: 66,68 + 1047: 52,61 + 1048: 56,61 + 1049: 53,61 + 1050: 51,62 + 1051: 57,62 + 1510: 67,67 + 1511: 65,65 + 1512: 67,65 + 1513: 64,65 + 1514: 66,67 + 1515: 72,63 + 1543: 68,66 + 1861: 72,74 + 1862: 70,79 + 1866: 72,79 + 1867: 66,79 + 1868: 63,78 + 1869: 64,80 + 1870: 66,75 + 1871: 63,74 + 1872: 65,80 + 1873: 66,77 + 2273: 65,62 + 2274: 63,62 + 2281: 73,71 + 2282: 71,68 + 2283: 70,67 + 2284: 69,68 + 2285: 29,62 + 2286: 29,60 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 671: 69,59 + 672: 69,60 + 683: 72,62 + 684: 70,62 + 685: 70,63 + 686: 66,66 + 692: 66,62 + 693: 67,69 + 1052: 52,61 + 1053: 57,62 + 1520: 74,63 + 1544: 68,65 + 1856: 70,77 + 1857: 69,76 + 1858: 70,74 + 1859: 69,74 + 1860: 72,76 + 1865: 72,80 + 2266: 71,65 + 2267: 71,67 + 2268: 66,63 + 2269: 63,61 + 2279: 70,72 + 2280: 73,72 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 196: 27.285002,50.9381 + 204: 37.148827,50.898525 + 222: 41.28508,44.93605 + 500: 44.98679,54.207253 + 510: 45.007626,41.75784 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 207: 37.148827,44.998592 + 539: 73.98068,27.283142 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 209: 35.721745,44.93605 + 224: 42.66008,44.93605 + 537: 74.01193,28.617403 + 2471: 65.80453,34.96382 + 2472: 64.42953,32.89989 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 201: 28.13985,44.956898 + 212: 41.537655,50.929794 + 214: 28.859528,50.908947 + 497: 44.997208,56.344154 + 532: 73.97027,65.64673 + 2465: 63.16911,34.974247 + 2466: 66.01286,32.972855 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 217: 28.984528,44.904778 + 508: 45.038876,43.012413 + 514: 45.038876,39.131012 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 198: 25.9211,44.93605 + 504: 45.007626,51.90357 + 529: 73.98068,67.35625 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 205: 37.85716,50.961067 + 218: 35.08196,45.009018 + 219: 34.946545,50.929794 + 220: 40.03508,44.956898 + 226: 42.999016,50.92669 + 513: 45.007626,39.808567 + 535: 74.00152,30.014206 + 2473: 63.544113,32.910316 + 2474: 66.50244,34.942974 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 194: 25.722502,50.99022 + 200: 27.57735,44.967323 + 203: 36.367577,50.94022 + 211: 40.881405,50.94022 + 223: 42.12883,44.915203 + 503: 45.01804,52.383068 + 528: 74.02235,68.0338 + 531: 74.07443,66.18877 + 538: 74.06402,27.960697 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 197: 28.097502,50.99022 + 208: 36.502995,44.93605 + 498: 45.01804,55.583206 + 501: 44.945126,53.633938 + 507: 45.04929,43.720604 + 511: 45.007626,41.09071 + 2469: 64.83578,34.995094 + 2470: 66.82536,32.962433 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 195: 26.51417,50.927677 + 199: 26.7336,44.904778 + 215: 25.119946,50.919373 + 216: 25.119946,44.894356 + 221: 40.66008,44.904778 + 509: 45.007626,42.37285 + 527: 74.02235,68.63839 + 533: 74.00152,64.95875 + 534: 74.00152,30.650064 + 536: 74.01193,29.347076 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 206: 37.961327,44.977745 + 2467: 64.06494,35.00552 + 2468: 65.20036,32.93116 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 202: 35.534245,50.94022 + 213: 42.412655,50.877678 + 499: 45.038876,54.82226 + 505: 44.98679,51.226013 + 506: 45.007626,44.387733 + 512: 45.028458,40.35061 + 530: 74.00152,66.75166 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 210: 40.162655,50.919373 + 225: 43.076748,44.925625 + 502: 44.997208,52.987656 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 2201: 43,43 + 2214: 39,36 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 574: 69,32 + 575: 70,32 + 576: 70,36 + 577: 69,36 + 1641: 72,32 + 2210: 39,42 + 2211: 41,38 + 2383: 63,27 + 2384: 64,27 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2202: 41,36 + 2203: 37,42 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 1774: 43,61 + 1775: 45,59 + 2204: 37,43 + 2205: 44,36 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 2212: 39,43 + 2213: 41,37 + - node: + color: '#D4D4D496' + id: FullTileOverlayGreyscale + decals: + 2208: 39,38 + 2209: 41,42 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 596: 69,64 + 597: 70,64 + 598: 70,60 + 599: 69,60 + 623: 66,68 + 624: 64,68 + 757: 69,72 + 758: 69,71 + 759: 69,70 + 1504: 72,64 + 1890: 69,78 + 1891: 70,78 + 2199: 43,42 + 2200: 39,37 + 2215: 64,64 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 1067: 48,35 + 2206: 41,43 + 2207: 44,37 + - node: + color: '#FA750096' + id: FullTileOverlayGreyscale + decals: + 2392: 63,17 + 2393: 64,17 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 159: 35.512943,51.011066 + 161: 37.950443,51.031914 + 162: 40.060837,51.000645 + 166: 42.918972,51.031914 + 168: 35.88282,45.059017 + 178: 41.224537,45.03817 + 182: 28.963814,51.021492 + 187: 26.682564,51.000645 + 192: 28.307564,45.017323 + 484: 45.08231,42.063705 + 493: 45.028458,54.35093 + 515: 73.97027,30.928997 + 520: 74.01193,27.207663 + 521: 73.9911,65.02116 + 523: 73.9911,66.678696 + 2453: 63.221195,33.02498 + 2460: 66.41911,33.02498 + 2461: 64.27328,35.08891 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 173: 37.778652,45.04859 + 181: 24.963814,51.000645 + 193: 28.94298,44.996475 + 481: 44.98856,44.12764 + 485: 45.05106,41.313183 + 488: 44.967724,39.09289 + 489: 45.01804,51.04655 + 492: 44.965958,53.464897 + 495: 44.997208,55.967873 + 526: 73.97027,68.94068 + 2464: 62.867027,35.047215 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 174: 38.049488,45.027744 + 177: 40.734955,45.027744 + 180: 41.005787,45.006897 + 185: 26.50548,50.979797 + 186: 27.422146,51.021492 + 491: 45.070126,52.662254 + 496: 44.98679,56.728817 + 516: 74.02235,30.13678 + 525: 74.01193,68.221436 + 2456: 65.98161,35.047215 + 2457: 64.80453,32.95201 + 2462: 63.471195,35.047215 + 2463: 67.18994,32.983284 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 156: 35,51 + 157: 37,51 + 163: 40.51917,50.948524 + 167: 35.091152,44.996475 + 175: 40.02662,45.006897 + 176: 42.96412,44.996475 + 183: 25.703396,50.96937 + 184: 28.16173,50.99022 + 188: 25.078396,44.98605 + 191: 27.484646,44.965202 + 483: 45.01981,42.720413 + 487: 45.01981,39.86426 + 490: 45.04929,51.81792 + 517: 73.9911,29.490498 + 522: 74.04318,65.79253 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 165: 42.231472,51.011066 + 170: 37.309902,45.027744 + 171: 35.60157,45.006897 + 172: 36.278652,51.021492 + 179: 42.037037,45.027744 + 190: 26.63048,44.996475 + 486: 45.01981,40.68775 + 494: 45.070126,55.21735 + 518: 74.00152,28.771248 + 524: 73.98068,67.5126 + 2458: 65.58578,32.983284 + 2459: 65.18994,35.078487 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 158: 36,51 + 160: 37.575443,51.000645 + 164: 41.36689,50.979797 + 169: 36.466152,45.027744 + 189: 25.807564,45.017323 + 480: 44.98856,44.888584 + 482: 45.00939,43.46051 + 519: 74.01193,28.020727 + 2454: 64.08578,32.962433 + 2455: 66.78369,34.984673 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 952: 69,25 + 953: 70,25 + 954: 71,25 + 955: 72,25 + 2379: 63,22 + 2380: 64,22 + 2439: 71,31 + 2440: 69,31 + 2489: 67,31 + 2491: 72,31 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 1079: 46,65 + 1080: 48,65 + 1113: 48,81 + 1114: 47,81 + 1115: 46,81 + 1116: 45,81 + 1117: 44,81 + 1136: 41,67 + 1138: 44,67 + 1140: 40,79 + 1141: 41,79 + 1142: 42,79 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale + decals: + 2400: 63,16 + 2401: 64,16 + 2402: 65,16 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 2254: 72,72 + 2255: 70,72 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 1059: 46,34 + 1060: 47,34 + 1061: 48,34 + 1062: 49,34 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale + decals: + 637: 63,71 + 638: 64,71 + 639: 66,71 + 640: 67,71 + 956: 70,21 + 957: 69,21 + 958: 68,21 + 959: 67,21 + 960: 66,21 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 948: 69,23 + 949: 70,23 + 950: 71,23 + 951: 72,23 + 2385: 63,28 + 2386: 64,28 + 2387: 65,28 + 2445: 71,27 + 2446: 69,27 + 2493: 68,27 + 2494: 67,27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 1082: 46,62 + 1083: 47,62 + 1084: 48,62 + 1090: 40,69 + 1091: 41,69 + 1092: 42,69 + 1093: 44,69 + 1094: 45,69 + 1099: 48,67 + 1127: 44,62 + 1128: 42,62 + 1129: 41,62 + 1771: 44,59 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 2250: 69,65 + 2251: 71,65 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 1063: 46,32 + 1064: 47,32 + 1065: 48,32 + 1066: 49,32 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale180 + decals: + 633: 66,69 + 634: 67,69 + 635: 64,69 + 636: 63,69 + 961: 66,18 + 962: 67,18 + 963: 68,18 + 964: 69,18 + 965: 70,18 + 2381: 63,22 + 2382: 64,22 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 568: 69,35 + 569: 69,34 + 570: 69,33 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 1097: 46,68 + 1131: 40,63 + 1132: 40,64 + 1133: 40,65 + 1134: 40,66 + 1144: 43,80 + 1773: 43,60 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale270 + decals: + 2398: 62,15 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 584: 69,61 + 585: 69,62 + 586: 69,63 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 571: 70,35 + 572: 70,34 + 573: 70,33 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 1088: 49,63 + 1089: 49,64 + 1100: 49,68 + 1101: 49,69 + 1102: 49,70 + 1103: 49,71 + 1105: 49,74 + 1106: 49,75 + 1107: 49,76 + 1108: 49,77 + 1109: 49,78 + 1110: 49,79 + 1111: 49,80 + 1673: 49,72 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale90 + decals: + 2399: 66,15 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 587: 70,63 + 588: 70,62 + 589: 70,61 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 77: 80,42 + 78: 74,54 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 73: 79,53 + 74: 75,53 + 75: 79,43 + 76: 75,43 + 107: 41,73 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 71: 74,42 + 72: 80,54 + 1145: 47,77 + 1255: 55,82 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 106: 41,77 + 2230: 55,73 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 473: 41,80 + 1146: 47,73 + - node: + color: '#52B4E996' + id: MonoOverlay + decals: + 855: 53,63 + 856: 54,63 + 857: 55,63 + 858: 53,64 + 859: 54,64 + 860: 55,64 + 861: 54,65 + - node: + color: '#DE3A3A96' + id: MonoOverlay + decals: + 869: 53,71 + 870: 54,71 + 871: 55,71 + 872: 55,70 + 873: 54,70 + 874: 53,70 + 875: 54,69 + - node: + cleanable: True + color: '#FFFFFFFF' + id: North + decals: + 1781: 54,79 + - node: + color: '#29722EC6' + id: QuarterTileOverlayGreyscale + decals: + 453: 82,53 + 454: 82,52 + 455: 81,51 + 456: 81,50 + 457: 81,49 + 458: 81,48 + 459: 81,47 + 460: 81,46 + 461: 81,45 + 462: 82,44 + 463: 82,43 + 825: 30,49 + 826: 29,49 + 827: 28,49 + 828: 27,49 + 829: 26,49 + 830: 25,49 + 831: 24,49 + 854: 24,48 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 581: 70,35 + 582: 70,34 + 583: 70,33 + 932: 51,61 + 933: 51,62 + 2373: 64,23 + 2374: 64,24 + 2375: 64,25 + 2388: 64,26 + 2480: 72,24 + 2495: 68,27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 1013: 49,60 + 1014: 48,60 + 1015: 47,60 + 1016: 46,60 + 1143: 43,79 + 1549: 47,57 + 1550: 47,58 + 1551: 46,59 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 978: 35,49 + 979: 36,49 + 980: 37,49 + 981: 38,49 + 982: 39,49 + 983: 40,49 + 984: 41,49 + 985: 42,49 + 986: 24,47 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 1281: 47,51 + 1282: 47,52 + 1283: 47,53 + 1284: 47,54 + 1285: 47,55 + 1286: 47,56 + 1569: 70,45 + 1570: 70,44 + 1571: 70,43 + 1572: 70,42 + 1573: 70,41 + 1574: 70,40 + 1575: 70,39 + 1576: 69,39 + 1762: 17,54 + 1763: 18,54 + 1764: 19,54 + 1765: 20,54 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 556: 69,59 + 557: 70,59 + 558: 71,59 + 559: 72,59 + 560: 73,59 + 561: 74,59 + 746: 71,75 + 747: 70,75 + 748: 70,76 + 749: 71,76 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 2089: 33,35 + 2090: 33,36 + 2091: 33,37 + 2092: 33,38 + 2103: 31,41 + 2104: 32,41 + 2105: 33,41 + 2114: 34,42 + 2119: 40,32 + 2135: 34,41 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale + decals: + 971: 69,19 + 2221: 65,61 + 2222: 66,61 + 2370: 64,18 + 2371: 64,19 + 2372: 64,20 + 2391: 64,21 + - node: + color: '#29722EC6' + id: QuarterTileOverlayGreyscale180 + decals: + 412: 76,39 + 413: 77,39 + 414: 78,39 + 415: 79,39 + 416: 80,39 + 417: 81,39 + 418: 82,39 + 419: 83,39 + 420: 84,39 + 421: 85,39 + 422: 85,40 + 423: 85,41 + 424: 76,55 + 425: 77,55 + 426: 78,55 + 427: 79,55 + 428: 80,55 + 429: 81,55 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 836: 42,48 + 837: 42,47 + 838: 41,47 + 839: 40,47 + 840: 39,47 + 841: 38,47 + 842: 37,47 + 843: 36,47 + 844: 35,47 + 845: 34,47 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 578: 69,33 + 579: 69,34 + 580: 69,35 + 925: 51,61 + 926: 52,61 + 927: 53,61 + 928: 54,61 + 929: 55,61 + 930: 56,61 + 931: 57,61 + 934: 57,62 + 1029: 67,37 + 1030: 66,37 + 1031: 65,37 + 1034: 64,37 + 1035: 63,37 + 1036: 62,37 + 2376: 63,26 + 2377: 63,25 + 2378: 63,24 + 2389: 63,23 + 2479: 69,24 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 1319: 67,57 + 1320: 66,57 + 1321: 65,57 + 1322: 64,57 + 1323: 63,57 + 1414: 62,57 + 1415: 61,57 + 1416: 60,57 + 1417: 59,57 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 2500: 46,64 + 2501: 46,63 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 1003: 24,47 + 1004: 25,47 + 1005: 26,47 + 1006: 27,47 + 1007: 28,47 + 1008: 29,47 + 1009: 42,49 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 1289: 49,40 + 1290: 49,41 + 1291: 49,42 + 1292: 49,43 + 1293: 49,44 + 1294: 49,45 + 1395: 51,37 + 1396: 52,37 + 1397: 53,37 + 1398: 54,37 + 1399: 55,37 + 1400: 56,37 + 1401: 57,37 + 1402: 58,37 + 1406: 58,57 + 1407: 57,57 + 1408: 56,57 + 1409: 55,57 + 1410: 54,57 + 1411: 53,57 + 1412: 52,57 + 1413: 51,57 + 1584: 72,51 + 1585: 72,52 + 1586: 72,53 + 1587: 72,54 + 1588: 72,55 + 1589: 73,55 + 1590: 74,55 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 738: 71,75 + 739: 70,75 + 745: 71,76 + 750: 70,76 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 2093: 31,35 + 2094: 31,36 + 2095: 31,37 + 2096: 31,38 + 2106: 31,43 + 2107: 32,43 + 2108: 33,43 + 2111: 30,42 + 2116: 32,39 + 2134: 31,39 + 2136: 30,43 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale180 + decals: + 970: 66,20 + 2219: 64,63 + 2220: 65,63 + 2367: 63,21 + 2368: 63,20 + 2369: 63,19 + 2390: 63,18 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 846: 30,47 + 847: 29,47 + 848: 28,47 + 849: 27,47 + 850: 26,47 + 851: 25,47 + 852: 24,47 + 853: 24,48 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 562: 69,37 + 563: 70,37 + 564: 71,37 + 565: 72,37 + 566: 73,37 + 567: 74,37 + 2448: 70,27 + 2449: 72,27 + 2450: 69,27 + 2497: 66,28 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 1098: 46,69 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 994: 35,47 + 995: 36,47 + 996: 37,47 + 997: 38,47 + 998: 39,47 + 999: 40,47 + 1000: 41,47 + 1001: 42,47 + 1002: 24,49 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 1297: 47,40 + 1298: 47,41 + 1299: 47,42 + 1300: 47,43 + 1301: 47,44 + 1302: 47,45 + 1561: 70,57 + 1562: 69,57 + 1563: 70,56 + 1564: 70,55 + 1565: 70,54 + 1566: 70,53 + 1567: 70,52 + 1568: 70,51 + 1766: 17,53 + 1767: 18,53 + 1768: 19,53 + 1769: 20,53 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 593: 70,61 + 594: 70,62 + 595: 70,63 + 918: 51,61 + 919: 52,61 + 920: 53,61 + 921: 54,61 + 922: 55,61 + 923: 56,61 + 924: 57,61 + 937: 51,62 + 2252: 70,65 + 2253: 72,65 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 1010: 47,36 + 1011: 48,36 + 1012: 49,36 + 1546: 47,37 + 1547: 47,38 + 1548: 47,39 + 2113: 34,43 + 2115: 33,39 + 2126: 34,34 + 2127: 35,34 + 2128: 36,34 + 2129: 37,34 + 2130: 38,34 + 2131: 39,34 + 2132: 40,33 + 2133: 40,34 + - node: + color: '#29722EC6' + id: QuarterTileOverlayGreyscale90 + decals: + 406: 76,41 + 407: 77,41 + 408: 78,41 + 409: 79,41 + 410: 80,41 + 411: 81,41 + 430: 76,57 + 431: 77,57 + 432: 78,57 + 433: 79,57 + 434: 80,57 + 435: 81,57 + 436: 82,57 + 437: 83,57 + 438: 84,57 + 439: 85,57 + 440: 85,56 + 441: 85,55 + 442: 84,53 + 443: 84,52 + 444: 84,51 + 445: 84,50 + 446: 84,49 + 447: 84,48 + 448: 84,47 + 449: 84,46 + 450: 84,45 + 451: 84,44 + 452: 84,43 + 799: 42,49 + 816: 42,48 + 817: 41,49 + 818: 40,49 + 819: 39,49 + 820: 38,49 + 821: 37,49 + 822: 36,49 + 823: 35,49 + 824: 34,49 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 2442: 70,31 + 2444: 68,31 + 2490: 66,31 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 1346: 63,39 + 1347: 64,39 + 1348: 65,39 + 1349: 66,39 + 1350: 67,39 + 1375: 62,39 + 1376: 61,39 + 1377: 60,39 + 1378: 59,39 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 987: 29,49 + 988: 28,49 + 989: 27,49 + 990: 26,49 + 991: 25,49 + 992: 24,49 + 993: 42,47 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 1275: 49,56 + 1276: 49,55 + 1277: 49,54 + 1278: 49,53 + 1279: 49,52 + 1280: 49,51 + 1367: 58,59 + 1368: 57,59 + 1369: 56,59 + 1370: 55,59 + 1371: 54,59 + 1372: 53,59 + 1373: 52,59 + 1374: 51,59 + 1390: 55,39 + 1391: 54,39 + 1392: 53,39 + 1393: 52,39 + 1394: 51,39 + 1403: 56,39 + 1404: 57,39 + 1405: 58,39 + 1577: 74,41 + 1578: 73,41 + 1579: 72,41 + 1580: 72,42 + 1581: 72,43 + 1582: 72,44 + 1583: 72,45 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 590: 69,61 + 591: 69,62 + 592: 69,63 + 935: 57,61 + 936: 57,62 + 1023: 67,59 + 1024: 66,59 + 1025: 65,59 + 1026: 64,59 + 1027: 63,59 + 1028: 62,59 + 2256: 71,72 + 2257: 73,72 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 2112: 30,41 + 2120: 39,32 + 2121: 38,32 + 2122: 37,32 + 2123: 36,32 + 2124: 35,32 + 2125: 34,32 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1135: 40,67 + 1139: 43,81 + - node: + color: '#D4D4D496' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1760: 16,54 + 2396: 62,16 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 877: 55,69 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 866: 53,65 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1087: 49,62 + 1096: 49,67 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 867: 55,65 + 2496: 66,27 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1095: 46,67 + 1130: 40,62 + 1770: 43,59 + - node: + color: '#D4D4D496' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1761: 16,53 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1086: 49,65 + 1112: 49,81 + - node: + color: '#D4D4D496' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2397: 66,16 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 876: 53,69 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Tunnel + decals: + 1782: 80,72 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 2475: 59,58 + 2476: 59,38 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNE + decals: + 938: 68,25 + 2483: 65,31 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNW + decals: + 939: 66,25 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSE + decals: + 941: 68,23 + 2482: 65,29 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSW + decals: + 940: 66,23 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 977: 47,27 + - node: + color: '#DE3A3AFF' + id: WarnCornerNW + decals: + 1815: 63,74 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnCornerNW + decals: + 1783: 63,80 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnCornerSW + decals: + 1784: 63,78 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleNW + decals: + 2485: 65,29 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleSW + decals: + 2486: 65,31 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallNE + decals: + 1833: 63,78 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallNW + decals: + 1832: 66,78 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 237: 60,18 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallSE + decals: + 1835: 63,80 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnCornerSmallSE + decals: + 1802: 66,80 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 384: 25,39 + 2342: 36,32 + 2364: 36,30 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallSW + decals: + 1834: 66,80 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnCornerSmallSW + decals: + 1803: 66,78 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 238: 60,20 + 383: 29,39 + 2343: 40,32 + 2365: 40,30 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 239: 59,19 + - node: + color: '#FFFFFF19' + id: WarnFullGreyscale + decals: + 1658: 46,36 + 1659: 46,37 + - node: + color: '#DE3A3AFF' + id: WarnLineE + decals: + 1827: 63,79 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnLineE + decals: + 1793: 66,77 + 1794: 66,78 + 1795: 66,79 + 1804: 66,75 + 1805: 66,74 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 371: 25,38 + 372: 25,37 + 373: 25,36 + 2361: 36,27 + 2362: 36,28 + 2363: 36,29 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 943: 68,24 + 2484: 65,30 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1672: 49,73 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 944: 67,25 + 2411: 64,31 + 2412: 63,31 + 2413: 63,29 + 2414: 64,29 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 299: 83,37 + 300: 84,37 + 1419: 82,37 + 1668: 47,65 + 1671: 43,67 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 942: 67,23 + 2407: 64,29 + 2408: 63,29 + 2416: 63,31 + 2417: 64,31 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 305: 83,59 + 306: 84,59 + 1418: 82,59 + 1669: 47,67 + 1670: 43,69 + 1674: 43,62 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 945: 66,24 + 2481: 65,30 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1675: 40,74 + 1676: 40,76 + - node: + color: '#DE3A3AFF' + id: WarnLineN + decals: + 1828: 64,80 + 1829: 65,80 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnLineN + decals: + 1786: 64,78 + 1787: 65,78 + 1801: 67,80 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 235: 59,20 + 380: 26,39 + 381: 27,39 + 382: 28,39 + 2339: 38,32 + 2340: 39,32 + 2341: 37,32 + 2358: 39,30 + 2359: 38,30 + 2360: 37,30 + - node: + color: '#DE3A3AFF' + id: WarnLineS + decals: + 1826: 66,79 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnLineS + decals: + 1785: 63,79 + 1788: 66,77 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 234: 60,19 + 377: 29,36 + 378: 29,37 + 379: 29,38 + 403: 28,41 + 404: 28,42 + 405: 28,43 + 2355: 40,27 + 2356: 40,28 + 2357: 40,29 + - node: + color: '#DE3A3AFF' + id: WarnLineW + decals: + 1816: 64,74 + 1830: 64,78 + 1831: 65,78 + - node: + cleanable: True + color: '#DE3A3AFF' + id: WarnLineW + decals: + 1796: 64,80 + 1797: 65,80 + 1798: 66,80 + 1799: 67,80 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 236: 59,18 + 972: 42,27 + 973: 43,27 + 974: 44,27 + 975: 45,27 + 976: 46,27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 548: 58,42 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 1471: 60,47 + 1472: 60,48 + 1473: 60,49 + 1646: 58,42 + 1647: 58,43 + 1648: 58,44 + 1649: 58,45 + 1650: 53,46 + 1651: 53,45 + 1652: 53,44 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 5: 60,46 + 19: 77,46 + 20: 78,46 + 83: 76,46 + 84: 76,50 + 85: 77,50 + 86: 78,50 + 2287: 30,59 + 2288: 31,59 + 2289: 32,59 + 2290: 33,59 + 2291: 34,59 + 2304: 26,53 + 2305: 27,53 + 2306: 28,53 + 2307: 40,53 + 2308: 41,53 + 2309: 42,53 + 2312: 36,53 + 2332: 35,53 + 2335: 43,53 + 2336: 25,53 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 3: 60,50 + 15: 76,50 + 16: 77,50 + 17: 78,50 + 80: 76,46 + 81: 77,46 + 82: 78,46 + 2292: 30,63 + 2293: 31,63 + 2294: 32,63 + 2295: 33,63 + 2296: 34,63 + 2301: 26,57 + 2302: 27,57 + 2303: 28,57 + 2314: 35,57 + 2315: 36,57 + 2316: 40,57 + 2317: 41,57 + 2318: 42,57 + 2337: 25,57 + 2338: 43,57 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 9: 59,47 + 10: 59,48 + 11: 59,49 + 1642: 56,42 + 1643: 56,43 + 1644: 56,44 + 1645: 56,45 + 1653: 51,44 + 1654: 51,45 + 1655: 51,46 + - node: + cleanable: True + color: '#FFFFFFFF' + id: beepsky + decals: + 1778: 61,68 + - node: + cleanable: True + color: '#FFFFFFFF' + id: engie + decals: + 1779: 31,30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: guy + decals: + 1776: 60,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: matt + decals: + 1777: 48,20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: med + decals: + 1780: 76,24 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + tiles: + 3,9: + 0: 2048 + 4,9: + 0: 3840 + 4,10: + 1: 65535 + 4,11: + 1: 64783 + 3,11: + 1: 32768 + 3,12: + 1: 128 + 4,12: + 1: 36348 + 4,13: + 1: 65535 + 6,6: + 0: 32768 + 7,6: + 0: 61440 + 7,7: + 1: 15344 + 7,8: + 1: 48043 + 8,6: + 0: 29764 + 8,7: + 1: 2032 + 5,9: + 0: 4044 + 5,10: + 1: 56797 + 5,11: + 1: 61901 + 5,12: + 1: 49653 + 5,8: + 0: 52416 + 6,11: + 1: 61664 + 6,8: + 1: 60928 + 6,9: + 1: 61166 + 6,10: + 1: 61152 + 6,12: + 1: 57599 + 7,9: + 1: 48123 + 7,10: + 1: 57296 + 7,11: + 1: 61616 + 7,12: + 1: 14591 + 8,8: + 1: 16383 + 8,9: + 1: 48123 + 8,10: + 1: 32625 + 8,11: + 1: 61873 + 5,13: + 1: 56829 + 5,14: + 0: 34944 + 6,14: + 0: 61440 + 1: 238 + 6,13: + 1: 61152 + 7,13: + 1: 64440 + 7,14: + 1: 57531 + 7,15: + 1: 61166 + 8,12: + 1: 33535 + 8,13: + 1: 65522 + 8,14: + 1: 61951 + 8,15: + 1: 65535 + 8,5: + 0: 16384 + 9,5: + 1: 61440 + 9,6: + 1: 65535 + 9,7: + 1: 20479 + 9,8: + 1: 4095 + 10,5: + 1: 4096 + 0: 3276 + 10,6: + 1: 53521 + 2: 68 + 10,7: + 1: 36349 + 10,8: + 1: 36349 + 10,4: + 0: 49152 + 11,6: + 3: 17 + 1: 61440 + 0: 68 + 11,7: + 1: 4095 + 11,5: + 1: 3686 + 11,8: + 1: 36349 + 12,5: + 1: 46075 + 12,6: + 1: 15259 + 12,7: + 1: 3003 + 9,9: + 1: 56797 + 9,10: + 1: 65520 + 9,11: + 1: 61552 + 9,12: + 1: 28927 + 10,9: + 1: 65535 + 10,10: + 1: 65524 + 10,11: + 1: 61680 + 10,12: + 1: 61687 + 11,9: + 1: 43229 + 11,11: + 1: 63658 + 11,10: + 1: 43690 + 11,12: + 1: 43261 + 12,8: + 1: 39867 + 12,9: + 1: 65523 + 12,10: + 1: 13107 + 0: 2176 + 12,11: + 1: 15291 + 9,13: + 1: 64432 + 9,14: + 1: 187 + 0: 57344 + 9,15: + 0: 26222 + 9,16: + 0: 17478 + 10,13: + 1: 65520 + 10,14: + 1: 33023 + 0: 12288 + 10,15: + 0: 3 + 1: 65416 + 10,16: + 1: 65535 + 11,14: + 1: 63658 + 11,15: + 1: 56717 + 11,13: + 1: 43690 + 11,16: + 1: 55807 + 12,12: + 1: 13119 + 4: 34816 + 12,13: + 1: 13107 + 4: 8 + 0: 34816 + 12,14: + 1: 65523 + 12,15: + 1: 48019 + 9,17: + 0: 29764 + 9,18: + 1: 3936 + 9,19: + 1: 111 + 0: 28672 + 9,20: + 0: 50244 + 10,17: + 1: 65528 + 10,18: + 1: 65535 + 10,19: + 1: 65535 + 10,20: + 1: 255 + 0: 61440 + 11,17: + 1: 65532 + 11,18: + 1: 65535 + 11,19: + 1: 65535 + 11,20: + 1: 255 + 0: 28672 + 12,16: + 1: 47291 + 12,17: + 1: 48059 + 12,18: + 1: 15347 + 12,19: + 1: 13243 + 0: 32768 + 11,21: + 0: 102 + 12,20: + 1: 61491 + 0: 136 + 12,21: + 1: 47 + 13,3: + 0: 13296 + 1: 32768 + 13,4: + 0: 819 + 1: 2184 + 14,3: + 0: 240 + 1: 61440 + 14,4: + 1: 39743 + 15,3: + 0: 17 + 1: 55496 + 15,4: + 1: 64397 + 16,3: + 1: 29282 + 13,5: + 1: 54527 + 13,6: + 1: 52733 + 13,7: + 1: 52733 + 13,8: + 1: 65535 + 14,5: + 1: 24827 + 14,6: + 1: 1654 + 14,7: + 1: 1911 + 14,8: + 1: 15291 + 15,5: + 1: 48059 + 15,6: + 1: 48059 + 15,7: + 1: 44987 + 15,8: + 1: 41650 + 16,4: + 1: 64791 + 16,5: + 1: 53727 + 16,6: + 1: 53725 + 16,7: + 1: 65535 + 13,9: + 1: 65532 + 13,10: + 0: 816 + 1: 34944 + 13,11: + 1: 8123 + 13,12: + 1: 60447 + 4: 4352 + 14,9: + 1: 65528 + 14,10: + 1: 65392 + 14,11: + 1: 33791 + 14,12: + 1: 62367 + 15,9: + 1: 65523 + 15,10: + 1: 65524 + 15,11: + 1: 65535 + 15,12: + 1: 65535 + 16,8: + 1: 61680 + 16,9: + 1: 65520 + 16,10: + 1: 13104 + 0: 128 + 16,11: + 1: 62259 + 0: 128 + 13,13: + 4: 1 + 0: 4352 + 1: 52428 + 13,14: + 1: 65520 + 13,15: + 1: 61684 + 13,16: + 1: 65535 + 14,13: + 1: 32767 + 14,14: + 1: 65520 + 14,15: + 1: 47672 + 14,16: + 1: 63291 + 15,13: + 1: 65535 + 15,14: + 1: 65524 + 15,15: + 1: 47779 + 15,16: + 1: 49058 + 16,12: + 1: 13307 + 0: 32768 + 16,13: + 1: 13107 + 0: 32768 + 16,14: + 1: 65520 + 16,15: + 1: 65520 + 13,17: + 1: 65535 + 13,18: + 1: 57328 + 13,19: + 1: 52441 + 0: 4096 + 13,20: + 0: 17 + 1: 64716 + 14,17: + 1: 47927 + 14,18: + 1: 24568 + 14,19: + 1: 4572 + 0: 49152 + 14,20: + 1: 61713 + 0: 204 + 15,17: + 1: 48051 + 15,18: + 1: 52224 + 15,19: + 1: 52416 + 15,20: + 1: 28684 + 16,16: + 1: 65525 + 16,17: + 1: 56789 + 16,18: + 1: 56576 + 16,19: + 1: 65520 + 13,21: + 1: 47 + 14,21: + 1: 47 + 15,21: + 1: 39 + 16,20: + 1: 255 + 17,3: + 0: 4369 + 17,4: + 0: 15 + 1: 30464 + 17,5: + 1: 62071 + 17,6: + 1: 63743 + 17,7: + 1: 65535 + 17,8: + 1: 26214 + 18,4: + 0: 241 + 1: 61440 + 18,5: + 1: 54783 + 18,6: + 1: 20701 + 18,7: + 1: 21845 + 18,8: + 1: 30577 + 19,4: + 0: 16 + 19,6: + 1: 255 + 0: 4096 + 19,7: + 0: 4113 + 19,5: + 1: 19968 + 19,8: + 0: 4113 + 20,6: + 1: 51454 + 17,9: + 1: 65526 + 17,10: + 0: 16 + 1: 52428 + 17,11: + 0: 16 + 1: 64716 + 17,12: + 1: 52477 + 0: 4096 + 18,9: + 1: 63347 + 18,10: + 1: 53759 + 18,11: + 1: 40401 + 18,12: + 1: 56729 + 19,9: + 0: 17 + 1: 61440 + 19,10: + 1: 61695 + 19,11: + 1: 65522 + 19,12: + 1: 65535 + 20,9: + 1: 64718 + 20,10: + 1: 56575 + 17,13: + 0: 4096 + 1: 52428 + 17,14: + 1: 65532 + 17,15: + 1: 26214 + 17,16: + 1: 65526 + 18,13: + 1: 61905 + 18,14: + 1: 30719 + 18,15: + 1: 30579 + 18,16: + 1: 21841 + 19,13: + 1: 61682 + 19,14: + 1: 255 + 0: 4096 + 19,15: + 0: 4113 + 19,16: + 0: 4113 + 20,13: + 1: 64732 + 20,14: + 1: 52479 + 17,17: + 1: 61166 + 17,18: + 1: 61134 + 17,19: + 1: 59118 + 17,20: + 1: 14 + 0: 57344 + 18,17: + 1: 45397 + 18,18: + 1: 4367 + 0: 34816 + 18,19: + 1: 4113 + 18,20: + 1: 1 + 0: 28672 + 19,17: + 0: 17 + 1: 61440 + 19,18: + 1: 3215 + 0: 4352 + 20,17: + 1: 63694 + 20,18: + 1: 269 + 0: 19456 + 20,5: + 0: 3584 + 20,7: + 1: 52430 + 20,8: + 1: 52430 + 21,5: + 0: 768 + 21,6: + 1: 4113 + 0: 16384 + 21,7: + 1: 4369 + 0: 17476 + 21,8: + 1: 4369 + 0: 17476 + 20,11: + 1: 61164 + 20,12: + 1: 61166 + 21,9: + 1: 12561 + 0: 35012 + 21,10: + 1: 61747 + 0: 136 + 21,11: + 1: 61937 + 21,12: + 1: 61951 + 22,10: + 0: 16 + 1: 4096 + 22,11: + 1: 16 + 20,15: + 1: 52430 + 20,16: + 1: 52430 + 21,13: + 1: 12785 + 0: 32768 + 21,14: + 1: 4403 + 0: 51336 + 21,15: + 1: 4369 + 0: 17476 + 21,16: + 1: 4369 + 0: 17476 + 22,12: + 1: 4096 + 22,13: + 1: 16 + 0: 4096 + 21,17: + 1: 4113 + 0: 68 + 21,18: + 1: 1 + 0: 768 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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 + - 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 + chunkSize: 4 + - type: BecomesStation + id: centcomm +- proto: AirAlarm + entities: + - uid: 4628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 6602 + - 6634 + - 6633 + - 6643 + - 3343 + - 3705 + - uid: 6725 + components: + - type: Transform + pos: 68.5,32.5 + parent: 1 + - type: DeviceList + devices: + - 6594 + - 6596 + - 6597 + - 2427 + - 2426 + - 3704 + - 3703 + - uid: 6778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,21.5 + parent: 1 + - type: DeviceList + devices: + - 6616 + - 6649 + - 6620 + - 6657 + - 6777 + - 3701 + - 3702 + - 6574 + - 6573 + - 3703 + - 3704 + - uid: 6781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,18.5 + parent: 1 + - type: DeviceList + devices: + - 6603 + - 2213 + - 6642 + - 2328 + - 3697 + - 3705 + - uid: 6782 + components: + - type: Transform + pos: 65.5,40.5 + parent: 1 + - type: DeviceList + devices: + - 3320 + - 3324 + - 3319 + - 1949 + - 1948 + - 1947 + - 2431 + - 2778 + - 2779 + - 2777 + - 1940 + - 1939 + - 1711 + - uid: 6783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,50.5 + parent: 1 + - type: DeviceList + devices: + - 3484 + - 3460 + - 3461 + - 3433 + - 3459 + - 3435 + - 2432 + - 2431 + - 4719 + - 4720 + - 1931 + - 1930 + - 1929 + - 1928 + - 1935 + - 1934 + - 1933 + - 1932 + - uid: 6784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 3475 + - 3483 + - 3476 + - 1031 + - 1935 + - 1934 + - 1933 + - 1932 + - 4735 + - uid: 6785 + components: + - type: Transform + pos: 58.5,56.5 + parent: 1 + - type: DeviceList + devices: + - 1931 + - 1930 + - 1929 + - 1928 + - 3449 + - 3450 + - 3448 + - uid: 6786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,56.5 + parent: 1 + - type: DeviceList + devices: + - 1944 + - 1945 + - 1946 + - 3342 + - 3420 + - 3341 + - 2432 + - 1938 + - 1937 + - 1936 + - 2775 + - 2776 + - 2774 + - uid: 6787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,51.5 + parent: 1 + - type: DeviceList + devices: + - 1999 + - 1998 + - 2000 + - 3652 + - 3657 + - 3633 + - 1946 + - 1945 + - 1944 + - 2434 + - 2435 + - 1926 + - 1927 + - 1981 + - 1982 + - 1983 + - uid: 6788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 2003 + - 2002 + - 2001 + - 3653 + - 3655 + - 3654 + - 1947 + - 1948 + - 1949 + - 1922 + - 1923 + - 1984 + - 1985 + - 1986 + - uid: 6789 + components: + - type: Transform + pos: 81.5,42.5 + parent: 1 + - type: DeviceList + devices: + - 3658 + - 3660 + - 3659 + - 1984 + - 1985 + - 1986 + - 1943 + - 1942 + - 1941 + - 3635 + - 3614 + - 3634 + - uid: 6790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,52.5 + parent: 1 + - type: DeviceList + devices: + - 3677 + - 3675 + - 3676 + - 6791 + - 6792 + - 6793 + - 1950 + - 1951 + - 1952 + - 1943 + - 1942 + - 1941 + - uid: 6794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,55.5 + parent: 1 + - type: DeviceList + devices: + - 1950 + - 1951 + - 1952 + - 3663 + - 3661 + - 3662 + - 1981 + - 1982 + - 1983 + - 3613 + - 3615 + - 3617 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,65.5 + parent: 1 + - type: DeviceList + devices: + - 1955 + - 1954 + - 1953 + - 5848 + - 5850 + - 5849 + - 2435 + - 2434 + - 1926 + - 1927 + - uid: 6796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,67.5 + parent: 1 + - type: DeviceList + devices: + - 5817 + - 5845 + - 5825 + - 6151 + - 6150 + - 1955 + - 1954 + - 1953 + - 5827 + - 5826 + - 5835 + - 5828 + - 5838 + - uid: 6799 + components: + - type: Transform + pos: 55.5,72.5 + parent: 1 + - type: DeviceList + devices: + - 4324 + - 4335 + - 4322 + - 6798 + - 6797 + - uid: 6800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,77.5 + parent: 1 + - type: DeviceList + devices: + - 5928 + - 4685 + - 4686 + - 4687 + - 6801 + - uid: 6802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,72.5 + parent: 1 + - type: DeviceList + devices: + - 5889 + - 5906 + - 5903 + - 4747 + - 5926 + - 5927 + - 5925 + - uid: 6803 + components: + - type: Transform + pos: 49.5,66.5 + parent: 1 + - type: DeviceList + devices: + - 5875 + - 5863 + - 5874 + - 2048 + - 1921 + - 2436 + - 2437 + - uid: 6804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,52.5 + parent: 1 + - type: DeviceList + devices: + - 1395 + - 2882 + - 2883 + - 2770 + - 3678 + - 2784 + - 1938 + - 1937 + - 1936 + - 2048 + - 1921 + - uid: 6805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,61.5 + parent: 1 + - type: DeviceList + devices: + - 5890 + - 5891 + - 5881 + - 4746 + - 4747 + - 2436 + - 2437 + - uid: 6806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,43.5 + parent: 1 + - type: DeviceList + devices: + - 2792 + - 2773 + - 2780 + - 2884 + - 2885 + - 2886 + - 1711 + - 1939 + - 1940 + - 1742 + - 6807 + - uid: 6808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,34.5 + parent: 1 + - type: DeviceList + devices: + - 3799 + - 3798 + - 3800 + - 3797 + - 2367 + - 700 + - 3802 + - 3836 + - 3838 + - 3837 + - 6811 + - 6812 + - 6809 + - 6810 + - uid: 6813 + components: + - type: Transform + pos: 24.5,50.5 + parent: 1 + - type: DeviceList + devices: + - 2828 + - 2969 + - 2827 + - 2820 + - 2819 + - 2818 + - 4736 + - 4737 + - 4738 + - 4741 + - 4740 + - 4739 + - uid: 6817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,46.5 + parent: 1 + - type: DeviceList + devices: + - 2879 + - 2880 + - 2878 + - 3680 + - 2783 + - 3679 + - 4742 + - 4739 + - 4740 + - 4741 + - uid: 6818 + components: + - type: Transform + pos: 35.5,58.5 + parent: 1 + - type: DeviceList + devices: + - 6250 + - 2967 + - 2253 + - 4744 + - 4743 + - 4745 + - uid: 6819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,52.5 + parent: 1 + - type: DeviceList + devices: + - 1880 + - 72 + - 1895 + - 4743 + - uid: 6821 + components: + - type: Transform + pos: 42.5,58.5 + parent: 1 + - type: DeviceList + devices: + - 1881 + - 91 + - 6198 + - 4745 + - uid: 6822 + components: + - type: Transform + pos: 33.5,64.5 + parent: 1 + - type: DeviceList + devices: + - 4782 + - 2135 + - 4781 + - 4744 +- proto: AirCanister + entities: + - uid: 2914 + components: + - type: Transform + pos: 46.5,37.5 + parent: 1 +- proto: Airlock + entities: + - uid: 2551 + components: + - type: Transform + pos: 53.5,29.5 + parent: 1 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 5773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,29.5 + parent: 1 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 387 + components: + - type: Transform + pos: 43.5,31.5 + parent: 1 +- proto: AirlockBarLocked + entities: + - uid: 850 + components: + - type: Transform + pos: 54.5,46.5 + parent: 1 +- proto: AirlockCargoGlassLocked + entities: + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,68.5 + parent: 1 + - uid: 3297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,61.5 + parent: 1 +- proto: AirlockCargoLocked + entities: + - uid: 701 + components: + - type: Transform + pos: 45.5,59.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 47.5,66.5 + parent: 1 +- proto: AirlockCentralCommand + entities: + - uid: 841 + components: + - type: Transform + pos: 53.5,25.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 56.5,25.5 + parent: 1 +- proto: AirlockCentralCommandGlass + entities: + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,49.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,47.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,47.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 43.5,49.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 43.5,47.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 45.5,49.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 45.5,47.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 54.5,60.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 54.5,36.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 55.5,36.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 62.5,56.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 62.5,40.5 + parent: 1 + - uid: 2067 + components: + - type: Transform + pos: 66.5,49.5 + parent: 1 + - uid: 2178 + components: + - type: Transform + pos: 69.5,47.5 + parent: 1 + - uid: 6737 + components: + - type: Transform + pos: 66.5,47.5 + parent: 1 + - uid: 6739 + components: + - type: Transform + pos: 69.5,49.5 + parent: 1 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 519 + components: + - type: Transform + pos: 33.5,50.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: 31.5,50.5 + parent: 1 +- proto: AirlockCentralCommandLocked + entities: + - uid: 187 + components: + - type: Transform + pos: 33.5,52.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 31.5,52.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 32.5,58.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 30.5,55.5 + parent: 1 + - uid: 2209 + components: + - type: Transform + pos: 38.5,55.5 + parent: 1 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 1013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,20.5 + parent: 1 +- proto: AirlockChemistryLocked + entities: + - uid: 1045 + components: + - type: Transform + pos: 69.5,22.5 + parent: 1 +- proto: AirlockCommandGlassLocked + entities: + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 1 +- proto: AirlockCommandLocked + entities: + - uid: 464 + components: + - type: Transform + pos: 29.5,42.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 32.5,46.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 35.5,42.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 42.5,40.5 + parent: 1 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 1 + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,33.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,35.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 32 + components: + - type: Transform + pos: 35.5,29.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 21.5,53.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 43.5,35.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 47.5,22.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 58.5,75.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 60.5,63.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 60.5,33.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: 78.5,23.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: 79.5,73.5 + parent: 1 + - uid: 1737 + components: + - type: Transform + pos: 52.5,75.5 + parent: 1 + - uid: 2397 + components: + - type: Transform + pos: 29.5,33.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 349 + components: + - type: Transform + pos: 17.5,47.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 17.5,49.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 63.5,14.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 65.5,14.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: 85.5,51.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: 85.5,53.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: 85.5,43.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: 85.5,45.5 + parent: 1 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,74.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,76.5 + parent: 1 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,51.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,53.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,45.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,43.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,47.5 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,49.5 + parent: 1 + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,85.5 + parent: 1 + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,76.5 + parent: 1 + - uid: 666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,85.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 65.5,12.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 63.5,12.5 + parent: 1 + - uid: 2035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,74.5 + parent: 1 + - uid: 4339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,85.5 + parent: 1 + - uid: 4341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,85.5 + parent: 1 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,60.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,64.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,68.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,36.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,32.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,28.5 + parent: 1 +- proto: AirlockFreezerLocked + entities: + - uid: 804 + components: + - type: Transform + pos: 52.5,49.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 53.5,51.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 1286 + components: + - type: Transform + pos: 82.5,58.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 82.5,38.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: 83.5,58.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: 83.5,38.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: 84.5,58.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: 84.5,38.5 + parent: 1 + - uid: 3796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,76.5 + parent: 1 +- proto: AirlockMaintBarLocked + entities: + - uid: 822 + components: + - type: Transform + pos: 52.5,47.5 + parent: 1 +- proto: AirlockMaintCargoLocked + entities: + - uid: 779 + components: + - type: Transform + pos: 50.5,73.5 + parent: 1 +- proto: AirlockMaintEngiLocked + entities: + - uid: 593 + components: + - type: Transform + pos: 34.5,37.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 48.5,25.5 + parent: 1 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 868 + components: + - type: Transform + pos: 56.5,49.5 + parent: 1 +- proto: AirlockMaintLocked + entities: + - uid: 857 + components: + - type: Transform + pos: 54.5,22.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 59.5,67.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 61.5,61.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: 83.5,70.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 83.5,26.5 + parent: 1 + - uid: 2383 + components: + - type: Transform + pos: 56.5,19.5 + parent: 1 +- proto: AirlockMaintMedLocked + entities: + - uid: 36 + components: + - type: Transform + pos: 62.5,19.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 62.5,30.5 + parent: 1 +- proto: AirlockMaintSecLocked + entities: + - uid: 942 + components: + - type: Transform + pos: 62.5,66.5 + parent: 1 + - uid: 2384 + components: + - type: Transform + pos: 74.5,72.5 + parent: 1 +- proto: AirlockMaintServiceLocked + entities: + - uid: 796 + components: + - type: Transform + pos: 50.5,48.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 58.5,48.5 + parent: 1 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 40 + components: + - type: Transform + pos: 72.5,32.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,22.5 + parent: 1 + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,17.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,22.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,17.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,36.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,32.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,36.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,32.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,27.5 + parent: 1 + - uid: 2141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,27.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 2391 + components: + - type: Transform + pos: 71.5,26.5 + parent: 1 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 1140 + components: + - type: Transform + pos: 72.5,22.5 + parent: 1 +- proto: AirlockMedicalMorgueMaintLocked + entities: + - uid: 1206 + components: + - type: Transform + pos: 74.5,22.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,64.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 85.5,49.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,64.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: 69.5,60.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 71.5,73.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: 70.5,64.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 70.5,60.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 70.5,73.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,64.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 72 + components: + - type: Transform + pos: 28.5,55.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6819 + - uid: 91 + components: + - type: Transform + pos: 40.5,55.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6821 + - uid: 2135 + components: + - type: Transform + pos: 30.5,61.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6822 + - uid: 2213 + components: + - type: Transform + pos: 68.5,19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6781 + - uid: 2773 + components: + - type: Transform + pos: 48.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - uid: 2776 + components: + - type: Transform + pos: 53.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - uid: 2779 + components: + - type: Transform + pos: 53.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - uid: 2783 + components: + - type: Transform + pos: 19.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - uid: 2819 + components: + - type: Transform + pos: 40.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - uid: 2880 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - uid: 2967 + components: + - type: Transform + pos: 32.5,55.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6818 + - uid: 2969 + components: + - type: Transform + pos: 26.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - uid: 2982 + components: + - type: Transform + pos: 32.5,61.5 + parent: 1 + - uid: 3324 + components: + - type: Transform + pos: 65.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - uid: 3420 + components: + - type: Transform + pos: 65.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - uid: 3450 + components: + - type: Transform + pos: 57.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6785 + - uid: 3459 + components: + - type: Transform + pos: 62.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - uid: 3460 + components: + - type: Transform + pos: 62.5,44.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - uid: 3483 + components: + - type: Transform + pos: 57.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6784 + - uid: 3614 + components: + - type: Transform + pos: 83.5,32.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - uid: 3615 + components: + - type: Transform + pos: 83.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6794 + - uid: 3655 + components: + - type: Transform + pos: 71.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - uid: 3657 + components: + - type: Transform + pos: 71.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - uid: 3660 + components: + - type: Transform + pos: 78.5,40.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - uid: 3661 + components: + - type: Transform + pos: 78.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6794 + - uid: 3664 + components: + - type: Transform + pos: 76.5,48.5 + parent: 1 + - uid: 3675 + components: + - type: Transform + pos: 83.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - uid: 3678 + components: + - type: Transform + pos: 48.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6804 + - uid: 3838 + components: + - type: Transform + pos: 54.5,34.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - uid: 4335 + components: + - type: Transform + pos: 54.5,67.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6799 + - uid: 5828 + components: + - type: Transform + pos: 65.5,62.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - uid: 5845 + components: + - type: Transform + pos: 65.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - uid: 5850 + components: + - type: Transform + pos: 70.5,69.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6795 + - uid: 5875 + components: + - type: Transform + pos: 47.5,63.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - uid: 5891 + components: + - type: Transform + pos: 42.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6805 + - uid: 5906 + components: + - type: Transform + pos: 45.5,71.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - uid: 5927 + components: + - type: Transform + pos: 45.5,79.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - uid: 6596 + components: + - type: Transform + pos: 70.5,29.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - uid: 6634 + components: + - type: Transform + pos: 70.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4628 + - uid: 6777 + components: + - type: Transform + pos: 64.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - uid: 6801 + components: + - type: Transform + pos: 55.5,81.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6800 +- proto: AlwaysPoweredWallLight + entities: + - uid: 1465 + components: + - type: Transform + pos: 74.5,17.5 + parent: 1 + - uid: 1835 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1 + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,61.5 + parent: 1 + - uid: 1838 + components: + - type: Transform + pos: 57.5,13.5 + parent: 1 + - uid: 2274 + components: + - type: Transform + pos: 30.5,27.5 + parent: 1 + - uid: 2275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,64.5 + parent: 1 + - uid: 5201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,32.5 + parent: 1 + - uid: 5203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,83.5 + parent: 1 + - uid: 5205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 1 + - uid: 5284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,83.5 + parent: 1 +- proto: AmmoTechFab + entities: + - uid: 5314 + components: + - type: Transform + pos: 63.5,77.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 3696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,78.5 + parent: 1 + - uid: 4456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,68.5 + parent: 1 + - uid: 4459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,68.5 + parent: 1 + - uid: 4460 + components: + - type: Transform + pos: 48.5,66.5 + parent: 1 + - uid: 4461 + components: + - type: Transform + pos: 47.5,82.5 + parent: 1 + - uid: 4786 + components: + - type: Transform + pos: 30.5,50.5 + parent: 1 + - uid: 4787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,51.5 + parent: 1 + - uid: 4788 + components: + - type: Transform + pos: 34.5,58.5 + parent: 1 + - uid: 4807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,50.5 + parent: 1 + - uid: 4809 + components: + - type: Transform + pos: 58.5,46.5 + parent: 1 + - uid: 4836 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1 + - uid: 4875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,27.5 + parent: 1 + - uid: 4916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,19.5 + parent: 1 + - uid: 4937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,27.5 + parent: 1 + - uid: 5001 + components: + - type: Transform + pos: 54.5,40.5 + parent: 1 + - uid: 5039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,56.5 + parent: 1 + - uid: 5040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,67.5 + parent: 1 + - uid: 5207 + components: + - type: Transform + pos: 74.5,52.5 + parent: 1 + - uid: 5308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,46.5 + parent: 1 + - uid: 5365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,64.5 + parent: 1 + - uid: 5376 + components: + - type: Transform + pos: 69.5,81.5 + parent: 1 + - uid: 5377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,76.5 + parent: 1 + - uid: 5555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,30.5 + parent: 1 + - uid: 5608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,35.5 + parent: 1 + - uid: 5643 + components: + - type: Transform + pos: 36.5,35.5 + parent: 1 + - uid: 5654 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - uid: 5699 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1 + - uid: 5998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,59.5 + parent: 1 + - uid: 6038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,37.5 + parent: 1 + - uid: 6452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,53.5 + parent: 1 + - uid: 6482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,31.5 + parent: 1 + - uid: 6508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,22.5 + parent: 1 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,18.5 + parent: 1 + - uid: 6828 + components: + - type: Transform + pos: 31.5,64.5 + parent: 1 + - uid: 6829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,52.5 + parent: 1 +- proto: AppraisalTool + entities: + - uid: 4587 + components: + - type: Transform + pos: 49.544346,63.542732 + parent: 1 +- proto: Ashtray + entities: + - uid: 2185 + components: + - type: Transform + pos: 33.635803,61.54532 + parent: 1 + - uid: 2749 + components: + - type: Transform + pos: 84.343445,29.49518 + parent: 1 + - uid: 4586 + components: + - type: Transform + pos: 42.658447,64.604256 + parent: 1 + - uid: 4624 + components: + - type: Transform + pos: 75.682724,45.678978 + parent: 1 + - uid: 6352 + components: + - type: Transform + pos: 42.01646,55.59012 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,85.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,85.5 + parent: 1 + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,73.5 + parent: 1 + - uid: 1744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,85.5 + parent: 1 + - uid: 1800 + components: + - type: Transform + pos: 52.5,49.5 + parent: 1 + - uid: 1801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,51.5 + parent: 1 + - uid: 1900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,76.5 + parent: 1 + - uid: 1901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,74.5 + parent: 1 + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,47.5 + parent: 1 + - uid: 1903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,49.5 + parent: 1 + - uid: 1904 + components: + - type: Transform + pos: 63.5,12.5 + parent: 1 + - uid: 1905 + components: + - type: Transform + pos: 65.5,12.5 + parent: 1 + - uid: 1906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,28.5 + parent: 1 + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,32.5 + parent: 1 + - uid: 1908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,36.5 + parent: 1 + - uid: 1909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,43.5 + parent: 1 + - uid: 1910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,45.5 + parent: 1 + - uid: 1911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,51.5 + parent: 1 + - uid: 1912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,53.5 + parent: 1 + - uid: 1913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,60.5 + parent: 1 + - uid: 1914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,64.5 + parent: 1 + - uid: 1915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,68.5 + parent: 1 + - uid: 2034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,77.5 + parent: 1 + - uid: 2303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,85.5 + parent: 1 + - uid: 3035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 1 + - uid: 3235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,85.5 + parent: 1 +- proto: AtmosFixFreezerMarker + entities: + - uid: 2420 + components: + - type: Transform + pos: 51.5,52.5 + parent: 1 + - uid: 2421 + components: + - type: Transform + pos: 51.5,51.5 + parent: 1 + - uid: 2422 + components: + - type: Transform + pos: 51.5,50.5 + parent: 1 + - uid: 2423 + components: + - type: Transform + pos: 52.5,52.5 + parent: 1 + - uid: 2424 + components: + - type: Transform + pos: 52.5,51.5 + parent: 1 + - uid: 2425 + components: + - type: Transform + pos: 52.5,50.5 + parent: 1 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 3751 + components: + - type: Transform + pos: 42.5,24.5 + parent: 1 + - uid: 3752 + components: + - type: Transform + pos: 42.5,25.5 + parent: 1 +- proto: AtmosFixOxygenMarker + entities: + - uid: 3732 + components: + - type: Transform + pos: 44.5,24.5 + parent: 1 + - uid: 3744 + components: + - type: Transform + pos: 44.5,25.5 + parent: 1 +- proto: BackgammonBoard + entities: + - uid: 6278 + components: + - type: Transform + pos: 37.510506,56.63671 + parent: 1 +- proto: BannerCargo + entities: + - uid: 3916 + components: + - type: Transform + pos: 49.5,60.5 + parent: 1 +- proto: BannerEngineering + entities: + - uid: 3917 + components: + - type: Transform + pos: 49.5,36.5 + parent: 1 +- proto: BannerMedical + entities: + - uid: 803 + components: + - type: Transform + pos: 74.5,37.5 + parent: 1 +- proto: BannerNanotrasen + entities: + - uid: 3908 + components: + - type: Transform + pos: 46.5,48.5 + parent: 1 +- proto: BannerSecurity + entities: + - uid: 840 + components: + - type: Transform + pos: 74.5,59.5 + parent: 1 +- proto: BarSignTheLightbulb + entities: + - uid: 1784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,40.5 + parent: 1 +- proto: BarSpoon + entities: + - uid: 4712 + components: + - type: Transform + pos: 51.297283,44.84711 + parent: 1 +- proto: Basketball + entities: + - uid: 3323 + components: + - type: Transform + pos: 54.500698,67.52914 + parent: 1 +- proto: Beaker + entities: + - uid: 4705 + components: + - type: Transform + pos: 56.359425,54.08431 + parent: 1 +- proto: Bed + entities: + - uid: 491 + components: + - type: Transform + pos: 64.5,71.5 + parent: 1 + - uid: 2513 + components: + - type: Transform + pos: 58.5,26.5 + parent: 1 + - uid: 2514 + components: + - type: Transform + pos: 58.5,23.5 + parent: 1 + - uid: 2521 + components: + - type: Transform + pos: 52.5,23.5 + parent: 1 + - uid: 2522 + components: + - type: Transform + pos: 52.5,26.5 + parent: 1 + - uid: 5429 + components: + - type: Transform + pos: 66.5,71.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 6726 + components: + - type: Transform + pos: 72.5,30.5 + parent: 1 + - uid: 6775 + components: + - type: Transform + pos: 72.5,27.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,71.5 + parent: 1 + - uid: 5856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,71.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 2519 + components: + - type: Transform + pos: 58.5,26.5 + parent: 1 + - uid: 2520 + components: + - type: Transform + pos: 58.5,23.5 + parent: 1 + - uid: 2523 + components: + - type: Transform + pos: 52.5,26.5 + parent: 1 + - uid: 2524 + components: + - type: Transform + pos: 52.5,23.5 + parent: 1 +- proto: BiomassReclaimer + entities: + - uid: 2293 + components: + - type: Transform + pos: 73.5,21.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 2040 + components: + - type: Transform + pos: 36.5,73.5 + parent: 1 + - uid: 2041 + components: + - type: Transform + pos: 39.5,73.5 + parent: 1 + - uid: 2042 + components: + - type: Transform + pos: 39.5,77.5 + parent: 1 + - uid: 2043 + components: + - type: Transform + pos: 36.5,77.5 + parent: 1 + - uid: 2545 + components: + - type: Transform + pos: 74.5,54.5 + parent: 1 + - uid: 2546 + components: + - type: Transform + pos: 80.5,54.5 + parent: 1 + - uid: 2549 + components: + - type: Transform + pos: 80.5,42.5 + parent: 1 + - uid: 2550 + components: + - type: Transform + pos: 74.5,42.5 + parent: 1 + - uid: 3058 + components: + - type: Transform + pos: 54.5,15.5 + parent: 1 + - uid: 4616 + components: + - type: Transform + pos: 73.5,48.5 + parent: 1 + - uid: 4671 + components: + - type: Transform + pos: 31.5,51.5 + parent: 1 + - uid: 4672 + components: + - type: Transform + pos: 32.5,51.5 + parent: 1 + - uid: 4673 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 1209 + components: + - type: Transform + pos: 75.5,57.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 75.5,56.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 75.5,55.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: 75.5,39.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 75.5,40.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 75.5,41.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + pos: 77.5,52.5 + parent: 1 + - uid: 1834 + components: + - type: Transform + pos: 77.5,44.5 + parent: 1 +- proto: BlockGameArcade + entities: + - uid: 2365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,28.5 + parent: 1 + - uid: 2516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,28.5 + parent: 1 + - uid: 2531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,28.5 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 1027 + components: + - type: Transform + pos: 29.5,61.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 2056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,41.5 + parent: 1 + - uid: 2059 + components: + - type: Transform + pos: 56.5,46.5 + parent: 1 + - uid: 6168 + components: + - type: Transform + pos: 34.5,63.5 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 2295 + components: + - type: Transform + pos: 75.60166,21.704767 + parent: 1 + - uid: 2296 + components: + - type: Transform + pos: 75.424576,21.610952 + parent: 1 +- proto: BoxFolderBlack + entities: + - uid: 2360 + components: + - type: Transform + pos: 74.700035,46.650085 + parent: 1 +- proto: BoxFolderCentCom + entities: + - uid: 2350 + components: + - type: Transform + pos: 79.401535,47.985203 + parent: 1 + - uid: 6186 + components: + - type: Transform + pos: 29.41667,60.25069 + parent: 1 + - uid: 6275 + components: + - type: Transform + pos: 34.687588,56.574165 + parent: 1 + - uid: 6348 + components: + - type: Transform + pos: 27.180796,55.629803 + parent: 1 +- proto: BoxFolderCentComClipboard + entities: + - uid: 2351 + components: + - type: Transform + pos: 75.45015,51.567562 + parent: 1 + - uid: 6185 + components: + - type: Transform + pos: 29.500002,60.542557 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 2361 + components: + - type: Transform + pos: 74.53337,46.469406 + parent: 1 +- proto: BoxFolderWhite + entities: + - uid: 2333 + components: + - type: Transform + pos: 70.37421,20.16185 + parent: 1 +- proto: BoxHandcuff + entities: + - uid: 2696 + components: + - type: Transform + pos: 72.6136,69.7445 + parent: 1 +- proto: BoxPDA + entities: + - uid: 2359 + components: + - type: Transform + pos: 75.130646,45.647705 + parent: 1 +- proto: BriefcaseBrownFilled + entities: + - uid: 6343 + components: + - type: Transform + pos: 27.084585,53.67011 + parent: 1 + - uid: 6344 + components: + - type: Transform + pos: 43.48219,53.70138 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,48.5 + parent: 1 + - uid: 2681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,65.5 + parent: 1 + - uid: 4621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,49.5 + parent: 1 + - uid: 4623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,47.5 + parent: 1 + - uid: 4674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,52.5 + parent: 1 +- proto: ButtonFrameGrey + entities: + - uid: 2044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,72.5 + parent: 1 + - uid: 2045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,78.5 + parent: 1 + - uid: 2526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,24.5 + parent: 1 + - uid: 2528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 154 + components: + - type: Transform + pos: 25.5,53.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 84.5,53.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 85.5,53.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 83.5,60.5 + parent: 1 + - uid: 2428 + components: + - type: Transform + pos: 54.5,78.5 + parent: 1 + - uid: 4332 + components: + - type: Transform + pos: 53.5,78.5 + parent: 1 + - uid: 4379 + components: + - type: Transform + pos: 63.5,18.5 + parent: 1 + - uid: 4382 + components: + - type: Transform + pos: 55.5,80.5 + parent: 1 + - uid: 4383 + components: + - type: Transform + pos: 55.5,81.5 + parent: 1 + - uid: 4384 + components: + - type: Transform + pos: 55.5,82.5 + parent: 1 + - uid: 4385 + components: + - type: Transform + pos: 55.5,83.5 + parent: 1 + - uid: 4386 + components: + - type: Transform + pos: 54.5,83.5 + parent: 1 + - uid: 4387 + components: + - type: Transform + pos: 53.5,83.5 + parent: 1 + - uid: 4388 + components: + - type: Transform + pos: 52.5,83.5 + parent: 1 + - uid: 4389 + components: + - type: Transform + pos: 51.5,83.5 + parent: 1 + - uid: 4390 + components: + - type: Transform + pos: 50.5,83.5 + parent: 1 + - uid: 4391 + components: + - type: Transform + pos: 49.5,83.5 + parent: 1 + - uid: 4392 + components: + - type: Transform + pos: 56.5,83.5 + parent: 1 + - uid: 4393 + components: + - type: Transform + pos: 57.5,83.5 + parent: 1 + - uid: 4394 + components: + - type: Transform + pos: 58.5,83.5 + parent: 1 + - uid: 4395 + components: + - type: Transform + pos: 59.5,83.5 + parent: 1 + - uid: 4396 + components: + - type: Transform + pos: 60.5,83.5 + parent: 1 + - uid: 4397 + components: + - type: Transform + pos: 61.5,83.5 + parent: 1 + - uid: 4398 + components: + - type: Transform + pos: 61.5,84.5 + parent: 1 + - uid: 4399 + components: + - type: Transform + pos: 61.5,85.5 + parent: 1 + - uid: 4400 + components: + - type: Transform + pos: 57.5,84.5 + parent: 1 + - uid: 4401 + components: + - type: Transform + pos: 57.5,85.5 + parent: 1 + - uid: 4402 + components: + - type: Transform + pos: 53.5,84.5 + parent: 1 + - uid: 4403 + components: + - type: Transform + pos: 53.5,85.5 + parent: 1 + - uid: 4404 + components: + - type: Transform + pos: 49.5,84.5 + parent: 1 + - uid: 4405 + components: + - type: Transform + pos: 49.5,85.5 + parent: 1 + - uid: 4406 + components: + - type: Transform + pos: 55.5,79.5 + parent: 1 + - uid: 4407 + components: + - type: Transform + pos: 55.5,78.5 + parent: 1 + - uid: 4408 + components: + - type: Transform + pos: 55.5,77.5 + parent: 1 + - uid: 4409 + components: + - type: Transform + pos: 55.5,76.5 + parent: 1 + - uid: 4410 + components: + - type: Transform + pos: 55.5,75.5 + parent: 1 + - uid: 4411 + components: + - type: Transform + pos: 55.5,74.5 + parent: 1 + - uid: 4412 + components: + - type: Transform + pos: 55.5,73.5 + parent: 1 + - uid: 4413 + components: + - type: Transform + pos: 54.5,73.5 + parent: 1 + - uid: 4414 + components: + - type: Transform + pos: 53.5,73.5 + parent: 1 + - uid: 4415 + components: + - type: Transform + pos: 52.5,73.5 + parent: 1 + - uid: 4416 + components: + - type: Transform + pos: 51.5,73.5 + parent: 1 + - uid: 4417 + components: + - type: Transform + pos: 56.5,73.5 + parent: 1 + - uid: 4418 + components: + - type: Transform + pos: 57.5,73.5 + parent: 1 + - uid: 4419 + components: + - type: Transform + pos: 58.5,73.5 + parent: 1 + - uid: 4420 + components: + - type: Transform + pos: 59.5,73.5 + parent: 1 + - uid: 4423 + components: + - type: Transform + pos: 62.5,68.5 + parent: 1 + - uid: 4443 + components: + - type: Transform + pos: 60.5,71.5 + parent: 1 + - uid: 4444 + components: + - type: Transform + pos: 60.5,70.5 + parent: 1 + - uid: 4445 + components: + - type: Transform + pos: 60.5,69.5 + parent: 1 + - uid: 4446 + components: + - type: Transform + pos: 60.5,68.5 + parent: 1 + - uid: 4447 + components: + - type: Transform + pos: 60.5,67.5 + parent: 1 + - uid: 4448 + components: + - type: Transform + pos: 60.5,66.5 + parent: 1 + - uid: 4449 + components: + - type: Transform + pos: 61.5,66.5 + parent: 1 + - uid: 4450 + components: + - type: Transform + pos: 61.5,65.5 + parent: 1 + - uid: 4451 + components: + - type: Transform + pos: 61.5,64.5 + parent: 1 + - uid: 4452 + components: + - type: Transform + pos: 61.5,63.5 + parent: 1 + - uid: 4453 + components: + - type: Transform + pos: 61.5,61.5 + parent: 1 + - uid: 4454 + components: + - type: Transform + pos: 61.5,60.5 + parent: 1 + - uid: 4455 + components: + - type: Transform + pos: 61.5,62.5 + parent: 1 + - uid: 4457 + components: + - type: Transform + pos: 61.5,68.5 + parent: 1 + - uid: 4496 + components: + - type: Transform + pos: 47.5,82.5 + parent: 1 + - uid: 4497 + components: + - type: Transform + pos: 47.5,81.5 + parent: 1 + - uid: 4498 + components: + - type: Transform + pos: 48.5,71.5 + parent: 1 + - uid: 4499 + components: + - type: Transform + pos: 48.5,72.5 + parent: 1 + - uid: 4500 + components: + - type: Transform + pos: 48.5,73.5 + parent: 1 + - uid: 4501 + components: + - type: Transform + pos: 48.5,74.5 + parent: 1 + - uid: 4502 + components: + - type: Transform + pos: 48.5,75.5 + parent: 1 + - uid: 4503 + components: + - type: Transform + pos: 48.5,76.5 + parent: 1 + - uid: 4504 + components: + - type: Transform + pos: 48.5,78.5 + parent: 1 + - uid: 4505 + components: + - type: Transform + pos: 48.5,79.5 + parent: 1 + - uid: 4506 + components: + - type: Transform + pos: 48.5,77.5 + parent: 1 + - uid: 4507 + components: + - type: Transform + pos: 46.5,81.5 + parent: 1 + - uid: 4508 + components: + - type: Transform + pos: 45.5,81.5 + parent: 1 + - uid: 4509 + components: + - type: Transform + pos: 44.5,81.5 + parent: 1 + - uid: 4510 + components: + - type: Transform + pos: 43.5,81.5 + parent: 1 + - uid: 4511 + components: + - type: Transform + pos: 42.5,81.5 + parent: 1 + - uid: 4512 + components: + - type: Transform + pos: 41.5,81.5 + parent: 1 + - uid: 4513 + components: + - type: Transform + pos: 41.5,80.5 + parent: 1 + - uid: 4514 + components: + - type: Transform + pos: 41.5,79.5 + parent: 1 + - uid: 4515 + components: + - type: Transform + pos: 41.5,78.5 + parent: 1 + - uid: 4516 + components: + - type: Transform + pos: 41.5,77.5 + parent: 1 + - uid: 4517 + components: + - type: Transform + pos: 41.5,76.5 + parent: 1 + - uid: 4518 + components: + - type: Transform + pos: 41.5,75.5 + parent: 1 + - uid: 4519 + components: + - type: Transform + pos: 41.5,73.5 + parent: 1 + - uid: 4520 + components: + - type: Transform + pos: 41.5,74.5 + parent: 1 + - uid: 4521 + components: + - type: Transform + pos: 41.5,68.5 + parent: 1 + - uid: 4522 + components: + - type: Transform + pos: 41.5,69.5 + parent: 1 + - uid: 4523 + components: + - type: Transform + pos: 41.5,70.5 + parent: 1 + - uid: 4524 + components: + - type: Transform + pos: 42.5,70.5 + parent: 1 + - uid: 4525 + components: + - type: Transform + pos: 43.5,70.5 + parent: 1 + - uid: 4526 + components: + - type: Transform + pos: 44.5,70.5 + parent: 1 + - uid: 4527 + components: + - type: Transform + pos: 45.5,70.5 + parent: 1 + - uid: 4528 + components: + - type: Transform + pos: 46.5,70.5 + parent: 1 + - uid: 4529 + components: + - type: Transform + pos: 48.5,70.5 + parent: 1 + - uid: 4530 + components: + - type: Transform + pos: 47.5,70.5 + parent: 1 + - uid: 4531 + components: + - type: Transform + pos: 41.5,72.5 + parent: 1 + - uid: 4532 + components: + - type: Transform + pos: 40.5,74.5 + parent: 1 + - uid: 4533 + components: + - type: Transform + pos: 39.5,74.5 + parent: 1 + - uid: 4534 + components: + - type: Transform + pos: 38.5,74.5 + parent: 1 + - uid: 4535 + components: + - type: Transform + pos: 37.5,74.5 + parent: 1 + - uid: 4536 + components: + - type: Transform + pos: 40.5,76.5 + parent: 1 + - uid: 4537 + components: + - type: Transform + pos: 39.5,76.5 + parent: 1 + - uid: 4538 + components: + - type: Transform + pos: 38.5,76.5 + parent: 1 + - uid: 4539 + components: + - type: Transform + pos: 37.5,76.5 + parent: 1 + - uid: 4540 + components: + - type: Transform + pos: 47.5,73.5 + parent: 1 + - uid: 4541 + components: + - type: Transform + pos: 46.5,73.5 + parent: 1 + - uid: 4542 + components: + - type: Transform + pos: 45.5,73.5 + parent: 1 + - uid: 4543 + components: + - type: Transform + pos: 44.5,73.5 + parent: 1 + - uid: 4544 + components: + - type: Transform + pos: 43.5,73.5 + parent: 1 + - uid: 4545 + components: + - type: Transform + pos: 47.5,75.5 + parent: 1 + - uid: 4546 + components: + - type: Transform + pos: 46.5,75.5 + parent: 1 + - uid: 4547 + components: + - type: Transform + pos: 45.5,75.5 + parent: 1 + - uid: 4548 + components: + - type: Transform + pos: 44.5,75.5 + parent: 1 + - uid: 4549 + components: + - type: Transform + pos: 43.5,75.5 + parent: 1 + - uid: 4550 + components: + - type: Transform + pos: 47.5,77.5 + parent: 1 + - uid: 4551 + components: + - type: Transform + pos: 46.5,77.5 + parent: 1 + - uid: 4552 + components: + - type: Transform + pos: 45.5,77.5 + parent: 1 + - uid: 4553 + components: + - type: Transform + pos: 44.5,77.5 + parent: 1 + - uid: 4554 + components: + - type: Transform + pos: 43.5,77.5 + parent: 1 + - uid: 4555 + components: + - type: Transform + pos: 48.5,66.5 + parent: 1 + - uid: 4556 + components: + - type: Transform + pos: 48.5,65.5 + parent: 1 + - uid: 4557 + components: + - type: Transform + pos: 48.5,64.5 + parent: 1 + - uid: 4558 + components: + - type: Transform + pos: 48.5,63.5 + parent: 1 + - uid: 4559 + components: + - type: Transform + pos: 48.5,62.5 + parent: 1 + - uid: 4560 + components: + - type: Transform + pos: 47.5,65.5 + parent: 1 + - uid: 4561 + components: + - type: Transform + pos: 46.5,65.5 + parent: 1 + - uid: 4562 + components: + - type: Transform + pos: 45.5,65.5 + parent: 1 + - uid: 4563 + components: + - type: Transform + pos: 44.5,65.5 + parent: 1 + - uid: 4564 + components: + - type: Transform + pos: 43.5,65.5 + parent: 1 + - uid: 4565 + components: + - type: Transform + pos: 43.5,64.5 + parent: 1 + - uid: 4566 + components: + - type: Transform + pos: 43.5,63.5 + parent: 1 + - uid: 4567 + components: + - type: Transform + pos: 43.5,62.5 + parent: 1 + - uid: 4568 + components: + - type: Transform + pos: 43.5,66.5 + parent: 1 + - uid: 4569 + components: + - type: Transform + pos: 43.5,67.5 + parent: 1 + - uid: 4570 + components: + - type: Transform + pos: 42.5,65.5 + parent: 1 + - uid: 4571 + components: + - type: Transform + pos: 41.5,65.5 + parent: 1 + - uid: 4572 + components: + - type: Transform + pos: 40.5,65.5 + parent: 1 + - uid: 4573 + components: + - type: Transform + pos: 42.5,62.5 + parent: 1 + - uid: 4574 + components: + - type: Transform + pos: 41.5,62.5 + parent: 1 + - uid: 4575 + components: + - type: Transform + pos: 40.5,62.5 + parent: 1 + - uid: 4576 + components: + - type: Transform + pos: 43.5,61.5 + parent: 1 + - uid: 4577 + components: + - type: Transform + pos: 43.5,60.5 + parent: 1 + - uid: 4578 + components: + - type: Transform + pos: 43.5,59.5 + parent: 1 + - uid: 4579 + components: + - type: Transform + pos: 44.5,59.5 + parent: 1 + - uid: 4580 + components: + - type: Transform + pos: 45.5,59.5 + parent: 1 + - uid: 4581 + components: + - type: Transform + pos: 46.5,59.5 + parent: 1 + - uid: 4895 + components: + - type: Transform + pos: 53.5,27.5 + parent: 1 + - uid: 4896 + components: + - type: Transform + pos: 54.5,27.5 + parent: 1 + - uid: 4897 + components: + - type: Transform + pos: 54.5,28.5 + parent: 1 + - uid: 4898 + components: + - type: Transform + pos: 54.5,29.5 + parent: 1 + - uid: 4899 + components: + - type: Transform + pos: 53.5,29.5 + parent: 1 + - uid: 4900 + components: + - type: Transform + pos: 52.5,29.5 + parent: 1 + - uid: 4901 + components: + - type: Transform + pos: 51.5,29.5 + parent: 1 + - uid: 4902 + components: + - type: Transform + pos: 55.5,29.5 + parent: 1 + - uid: 4903 + components: + - type: Transform + pos: 56.5,29.5 + parent: 1 + - uid: 4904 + components: + - type: Transform + pos: 57.5,29.5 + parent: 1 + - uid: 4905 + components: + - type: Transform + pos: 54.5,26.5 + parent: 1 + - uid: 4906 + components: + - type: Transform + pos: 54.5,25.5 + parent: 1 + - uid: 4907 + components: + - type: Transform + pos: 53.5,25.5 + parent: 1 + - uid: 4908 + components: + - type: Transform + pos: 52.5,25.5 + parent: 1 + - uid: 4909 + components: + - type: Transform + pos: 51.5,25.5 + parent: 1 + - uid: 4910 + components: + - type: Transform + pos: 54.5,24.5 + parent: 1 + - uid: 4911 + components: + - type: Transform + pos: 54.5,23.5 + parent: 1 + - uid: 4912 + components: + - type: Transform + pos: 55.5,25.5 + parent: 1 + - uid: 4913 + components: + - type: Transform + pos: 56.5,25.5 + parent: 1 + - uid: 4914 + components: + - type: Transform + pos: 57.5,25.5 + parent: 1 + - uid: 4915 + components: + - type: Transform + pos: 58.5,25.5 + parent: 1 + - uid: 4949 + components: + - type: Transform + pos: 55.5,19.5 + parent: 1 + - uid: 4950 + components: + - type: Transform + pos: 55.5,20.5 + parent: 1 + - uid: 4951 + components: + - type: Transform + pos: 55.5,21.5 + parent: 1 + - uid: 4952 + components: + - type: Transform + pos: 54.5,21.5 + parent: 1 + - uid: 4953 + components: + - type: Transform + pos: 52.5,21.5 + parent: 1 + - uid: 4954 + components: + - type: Transform + pos: 51.5,21.5 + parent: 1 + - uid: 4955 + components: + - type: Transform + pos: 50.5,21.5 + parent: 1 + - uid: 4956 + components: + - type: Transform + pos: 49.5,21.5 + parent: 1 + - uid: 4957 + components: + - type: Transform + pos: 53.5,21.5 + parent: 1 + - uid: 4958 + components: + - type: Transform + pos: 48.5,21.5 + parent: 1 + - uid: 4959 + components: + - type: Transform + pos: 48.5,22.5 + parent: 1 + - uid: 4960 + components: + - type: Transform + pos: 48.5,23.5 + parent: 1 + - uid: 4961 + components: + - type: Transform + pos: 48.5,24.5 + parent: 1 + - uid: 4962 + components: + - type: Transform + pos: 56.5,21.5 + parent: 1 + - uid: 4963 + components: + - type: Transform + pos: 57.5,21.5 + parent: 1 + - uid: 4964 + components: + - type: Transform + pos: 58.5,21.5 + parent: 1 + - uid: 4965 + components: + - type: Transform + pos: 59.5,21.5 + parent: 1 + - uid: 4966 + components: + - type: Transform + pos: 60.5,21.5 + parent: 1 + - uid: 4967 + components: + - type: Transform + pos: 61.5,19.5 + parent: 1 + - uid: 4968 + components: + - type: Transform + pos: 61.5,20.5 + parent: 1 + - uid: 4969 + components: + - type: Transform + pos: 61.5,21.5 + parent: 1 + - uid: 4970 + components: + - type: Transform + pos: 61.5,22.5 + parent: 1 + - uid: 4971 + components: + - type: Transform + pos: 61.5,23.5 + parent: 1 + - uid: 4972 + components: + - type: Transform + pos: 61.5,24.5 + parent: 1 + - uid: 4973 + components: + - type: Transform + pos: 61.5,25.5 + parent: 1 + - uid: 4974 + components: + - type: Transform + pos: 61.5,27.5 + parent: 1 + - uid: 4975 + components: + - type: Transform + pos: 61.5,28.5 + parent: 1 + - uid: 4976 + components: + - type: Transform + pos: 61.5,29.5 + parent: 1 + - uid: 4977 + components: + - type: Transform + pos: 61.5,26.5 + parent: 1 + - uid: 4978 + components: + - type: Transform + pos: 61.5,30.5 + parent: 1 + - uid: 4979 + components: + - type: Transform + pos: 61.5,31.5 + parent: 1 + - uid: 4980 + components: + - type: Transform + pos: 61.5,33.5 + parent: 1 + - uid: 4981 + components: + - type: Transform + pos: 61.5,32.5 + parent: 1 + - uid: 4982 + components: + - type: Transform + pos: 55.5,18.5 + parent: 1 + - uid: 4983 + components: + - type: Transform + pos: 56.5,18.5 + parent: 1 + - uid: 4984 + components: + - type: Transform + pos: 56.5,17.5 + parent: 1 + - uid: 4985 + components: + - type: Transform + pos: 56.5,16.5 + parent: 1 + - uid: 4986 + components: + - type: Transform + pos: 57.5,16.5 + parent: 1 + - uid: 4987 + components: + - type: Transform + pos: 58.5,16.5 + parent: 1 + - uid: 4988 + components: + - type: Transform + pos: 59.5,16.5 + parent: 1 + - uid: 4989 + components: + - type: Transform + pos: 60.5,16.5 + parent: 1 + - uid: 4990 + components: + - type: Transform + pos: 54.5,30.5 + parent: 1 + - uid: 4991 + components: + - type: Transform + pos: 54.5,31.5 + parent: 1 + - uid: 4992 + components: + - type: Transform + pos: 54.5,32.5 + parent: 1 + - uid: 4993 + components: + - type: Transform + pos: 54.5,34.5 + parent: 1 + - uid: 4994 + components: + - type: Transform + pos: 54.5,33.5 + parent: 1 + - uid: 4995 + components: + - type: Transform + pos: 53.5,34.5 + parent: 1 + - uid: 4996 + components: + - type: Transform + pos: 52.5,34.5 + parent: 1 + - uid: 4997 + components: + - type: Transform + pos: 51.5,34.5 + parent: 1 + - uid: 4998 + components: + - type: Transform + pos: 55.5,34.5 + parent: 1 + - uid: 4999 + components: + - type: Transform + pos: 56.5,34.5 + parent: 1 + - uid: 5000 + components: + - type: Transform + pos: 57.5,34.5 + parent: 1 + - uid: 5004 + components: + - type: Transform + pos: 54.5,40.5 + parent: 1 + - uid: 5005 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1 + - uid: 5006 + components: + - type: Transform + pos: 54.5,38.5 + parent: 1 + - uid: 5007 + components: + - type: Transform + pos: 53.5,38.5 + parent: 1 + - uid: 5008 + components: + - type: Transform + pos: 52.5,38.5 + parent: 1 + - uid: 5009 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1 + - uid: 5010 + components: + - type: Transform + pos: 50.5,38.5 + parent: 1 + - uid: 5011 + components: + - type: Transform + pos: 49.5,38.5 + parent: 1 + - uid: 5012 + components: + - type: Transform + pos: 48.5,38.5 + parent: 1 + - uid: 5013 + components: + - type: Transform + pos: 48.5,37.5 + parent: 1 + - uid: 5014 + components: + - type: Transform + pos: 48.5,36.5 + parent: 1 + - uid: 5015 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1 + - uid: 5016 + components: + - type: Transform + pos: 48.5,40.5 + parent: 1 + - uid: 5017 + components: + - type: Transform + pos: 48.5,41.5 + parent: 1 + - uid: 5018 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 + - uid: 5019 + components: + - type: Transform + pos: 48.5,43.5 + parent: 1 + - uid: 5020 + components: + - type: Transform + pos: 48.5,44.5 + parent: 1 + - uid: 5021 + components: + - type: Transform + pos: 48.5,46.5 + parent: 1 + - uid: 5022 + components: + - type: Transform + pos: 48.5,47.5 + parent: 1 + - uid: 5023 + components: + - type: Transform + pos: 48.5,45.5 + parent: 1 + - uid: 5024 + components: + - type: Transform + pos: 55.5,38.5 + parent: 1 + - uid: 5025 + components: + - type: Transform + pos: 56.5,38.5 + parent: 1 + - uid: 5026 + components: + - type: Transform + pos: 57.5,38.5 + parent: 1 + - uid: 5027 + components: + - type: Transform + pos: 58.5,38.5 + parent: 1 + - uid: 5028 + components: + - type: Transform + pos: 59.5,38.5 + parent: 1 + - uid: 5029 + components: + - type: Transform + pos: 60.5,38.5 + parent: 1 + - uid: 5030 + components: + - type: Transform + pos: 61.5,38.5 + parent: 1 + - uid: 5031 + components: + - type: Transform + pos: 63.5,38.5 + parent: 1 + - uid: 5032 + components: + - type: Transform + pos: 64.5,38.5 + parent: 1 + - uid: 5033 + components: + - type: Transform + pos: 65.5,38.5 + parent: 1 + - uid: 5034 + components: + - type: Transform + pos: 67.5,38.5 + parent: 1 + - uid: 5035 + components: + - type: Transform + pos: 68.5,38.5 + parent: 1 + - uid: 5036 + components: + - type: Transform + pos: 69.5,38.5 + parent: 1 + - uid: 5037 + components: + - type: Transform + pos: 62.5,38.5 + parent: 1 + - uid: 5038 + components: + - type: Transform + pos: 66.5,38.5 + parent: 1 + - uid: 5049 + components: + - type: Transform + pos: 50.5,67.5 + parent: 1 + - uid: 5050 + components: + - type: Transform + pos: 51.5,67.5 + parent: 1 + - uid: 5051 + components: + - type: Transform + pos: 51.5,68.5 + parent: 1 + - uid: 5052 + components: + - type: Transform + pos: 51.5,69.5 + parent: 1 + - uid: 5053 + components: + - type: Transform + pos: 51.5,70.5 + parent: 1 + - uid: 5054 + components: + - type: Transform + pos: 51.5,71.5 + parent: 1 + - uid: 5055 + components: + - type: Transform + pos: 51.5,66.5 + parent: 1 + - uid: 5056 + components: + - type: Transform + pos: 51.5,65.5 + parent: 1 + - uid: 5057 + components: + - type: Transform + pos: 51.5,64.5 + parent: 1 + - uid: 5058 + components: + - type: Transform + pos: 51.5,63.5 + parent: 1 + - uid: 5059 + components: + - type: Transform + pos: 51.5,62.5 + parent: 1 + - uid: 5060 + components: + - type: Transform + pos: 51.5,61.5 + parent: 1 + - uid: 5061 + components: + - type: Transform + pos: 52.5,61.5 + parent: 1 + - uid: 5062 + components: + - type: Transform + pos: 53.5,61.5 + parent: 1 + - uid: 5063 + components: + - type: Transform + pos: 54.5,61.5 + parent: 1 + - uid: 5064 + components: + - type: Transform + pos: 55.5,61.5 + parent: 1 + - uid: 5065 + components: + - type: Transform + pos: 56.5,61.5 + parent: 1 + - uid: 5066 + components: + - type: Transform + pos: 57.5,61.5 + parent: 1 + - uid: 5067 + components: + - type: Transform + pos: 57.5,62.5 + parent: 1 + - uid: 5068 + components: + - type: Transform + pos: 57.5,63.5 + parent: 1 + - uid: 5069 + components: + - type: Transform + pos: 57.5,64.5 + parent: 1 + - uid: 5070 + components: + - type: Transform + pos: 57.5,65.5 + parent: 1 + - uid: 5071 + components: + - type: Transform + pos: 57.5,66.5 + parent: 1 + - uid: 5072 + components: + - type: Transform + pos: 57.5,67.5 + parent: 1 + - uid: 5073 + components: + - type: Transform + pos: 57.5,68.5 + parent: 1 + - uid: 5074 + components: + - type: Transform + pos: 57.5,70.5 + parent: 1 + - uid: 5075 + components: + - type: Transform + pos: 57.5,71.5 + parent: 1 + - uid: 5076 + components: + - type: Transform + pos: 57.5,69.5 + parent: 1 + - uid: 5077 + components: + - type: Transform + pos: 56.5,71.5 + parent: 1 + - uid: 5078 + components: + - type: Transform + pos: 55.5,71.5 + parent: 1 + - uid: 5079 + components: + - type: Transform + pos: 54.5,71.5 + parent: 1 + - uid: 5080 + components: + - type: Transform + pos: 53.5,71.5 + parent: 1 + - uid: 5081 + components: + - type: Transform + pos: 52.5,71.5 + parent: 1 + - uid: 5082 + components: + - type: Transform + pos: 52.5,67.5 + parent: 1 + - uid: 5083 + components: + - type: Transform + pos: 53.5,67.5 + parent: 1 + - uid: 5084 + components: + - type: Transform + pos: 54.5,67.5 + parent: 1 + - uid: 5085 + components: + - type: Transform + pos: 55.5,67.5 + parent: 1 + - uid: 5086 + components: + - type: Transform + pos: 56.5,67.5 + parent: 1 + - uid: 5104 + components: + - type: Transform + pos: 58.5,46.5 + parent: 1 + - uid: 5105 + components: + - type: Transform + pos: 58.5,45.5 + parent: 1 + - uid: 5106 + components: + - type: Transform + pos: 58.5,44.5 + parent: 1 + - uid: 5107 + components: + - type: Transform + pos: 59.5,44.5 + parent: 1 + - uid: 5108 + components: + - type: Transform + pos: 60.5,44.5 + parent: 1 + - uid: 5109 + components: + - type: Transform + pos: 61.5,44.5 + parent: 1 + - uid: 5110 + components: + - type: Transform + pos: 62.5,44.5 + parent: 1 + - uid: 5111 + components: + - type: Transform + pos: 62.5,43.5 + parent: 1 + - uid: 5112 + components: + - type: Transform + pos: 62.5,42.5 + parent: 1 + - uid: 5113 + components: + - type: Transform + pos: 62.5,41.5 + parent: 1 + - uid: 5114 + components: + - type: Transform + pos: 62.5,45.5 + parent: 1 + - uid: 5115 + components: + - type: Transform + pos: 62.5,46.5 + parent: 1 + - uid: 5116 + components: + - type: Transform + pos: 62.5,47.5 + parent: 1 + - uid: 5117 + components: + - type: Transform + pos: 63.5,47.5 + parent: 1 + - uid: 5118 + components: + - type: Transform + pos: 64.5,47.5 + parent: 1 + - uid: 5119 + components: + - type: Transform + pos: 65.5,47.5 + parent: 1 + - uid: 5120 + components: + - type: Transform + pos: 58.5,50.5 + parent: 1 + - uid: 5121 + components: + - type: Transform + pos: 58.5,51.5 + parent: 1 + - uid: 5122 + components: + - type: Transform + pos: 58.5,52.5 + parent: 1 + - uid: 5123 + components: + - type: Transform + pos: 59.5,52.5 + parent: 1 + - uid: 5124 + components: + - type: Transform + pos: 60.5,52.5 + parent: 1 + - uid: 5125 + components: + - type: Transform + pos: 61.5,52.5 + parent: 1 + - uid: 5126 + components: + - type: Transform + pos: 62.5,52.5 + parent: 1 + - uid: 5127 + components: + - type: Transform + pos: 62.5,51.5 + parent: 1 + - uid: 5128 + components: + - type: Transform + pos: 62.5,50.5 + parent: 1 + - uid: 5129 + components: + - type: Transform + pos: 62.5,49.5 + parent: 1 + - uid: 5130 + components: + - type: Transform + pos: 63.5,49.5 + parent: 1 + - uid: 5131 + components: + - type: Transform + pos: 64.5,49.5 + parent: 1 + - uid: 5132 + components: + - type: Transform + pos: 65.5,48.5 + parent: 1 + - uid: 5133 + components: + - type: Transform + pos: 61.5,49.5 + parent: 1 + - uid: 5134 + components: + - type: Transform + pos: 66.5,48.5 + parent: 1 + - uid: 5135 + components: + - type: Transform + pos: 67.5,48.5 + parent: 1 + - uid: 5136 + components: + - type: Transform + pos: 68.5,48.5 + parent: 1 + - uid: 5137 + components: + - type: Transform + pos: 60.5,49.5 + parent: 1 + - uid: 5138 + components: + - type: Transform + pos: 60.5,48.5 + parent: 1 + - uid: 5139 + components: + - type: Transform + pos: 59.5,48.5 + parent: 1 + - uid: 5140 + components: + - type: Transform + pos: 58.5,48.5 + parent: 1 + - uid: 5141 + components: + - type: Transform + pos: 57.5,48.5 + parent: 1 + - uid: 5142 + components: + - type: Transform + pos: 56.5,48.5 + parent: 1 + - uid: 5143 + components: + - type: Transform + pos: 55.5,48.5 + parent: 1 + - uid: 5144 + components: + - type: Transform + pos: 54.5,48.5 + parent: 1 + - uid: 5145 + components: + - type: Transform + pos: 52.5,48.5 + parent: 1 + - uid: 5146 + components: + - type: Transform + pos: 51.5,48.5 + parent: 1 + - uid: 5147 + components: + - type: Transform + pos: 53.5,48.5 + parent: 1 + - uid: 5148 + components: + - type: Transform + pos: 57.5,44.5 + parent: 1 + - uid: 5149 + components: + - type: Transform + pos: 56.5,44.5 + parent: 1 + - uid: 5150 + components: + - type: Transform + pos: 55.5,44.5 + parent: 1 + - uid: 5151 + components: + - type: Transform + pos: 55.5,45.5 + parent: 1 + - uid: 5152 + components: + - type: Transform + pos: 55.5,46.5 + parent: 1 + - uid: 5153 + components: + - type: Transform + pos: 55.5,43.5 + parent: 1 + - uid: 5154 + components: + - type: Transform + pos: 55.5,42.5 + parent: 1 + - uid: 5155 + components: + - type: Transform + pos: 58.5,43.5 + parent: 1 + - uid: 5156 + components: + - type: Transform + pos: 58.5,42.5 + parent: 1 + - uid: 5157 + components: + - type: Transform + pos: 54.5,46.5 + parent: 1 + - uid: 5158 + components: + - type: Transform + pos: 53.5,46.5 + parent: 1 + - uid: 5159 + components: + - type: Transform + pos: 52.5,46.5 + parent: 1 + - uid: 5160 + components: + - type: Transform + pos: 52.5,45.5 + parent: 1 + - uid: 5161 + components: + - type: Transform + pos: 52.5,44.5 + parent: 1 + - uid: 5162 + components: + - type: Transform + pos: 57.5,51.5 + parent: 1 + - uid: 5163 + components: + - type: Transform + pos: 56.5,51.5 + parent: 1 + - uid: 5164 + components: + - type: Transform + pos: 55.5,51.5 + parent: 1 + - uid: 5165 + components: + - type: Transform + pos: 54.5,51.5 + parent: 1 + - uid: 5166 + components: + - type: Transform + pos: 53.5,51.5 + parent: 1 + - uid: 5167 + components: + - type: Transform + pos: 52.5,51.5 + parent: 1 + - uid: 5168 + components: + - type: Transform + pos: 58.5,53.5 + parent: 1 + - uid: 5169 + components: + - type: Transform + pos: 58.5,54.5 + parent: 1 + - uid: 5170 + components: + - type: Transform + pos: 58.5,55.5 + parent: 1 + - uid: 5171 + components: + - type: Transform + pos: 55.5,52.5 + parent: 1 + - uid: 5172 + components: + - type: Transform + pos: 55.5,53.5 + parent: 1 + - uid: 5173 + components: + - type: Transform + pos: 55.5,54.5 + parent: 1 + - uid: 5174 + components: + - type: Transform + pos: 55.5,55.5 + parent: 1 + - uid: 5175 + components: + - type: Transform + pos: 62.5,53.5 + parent: 1 + - uid: 5176 + components: + - type: Transform + pos: 62.5,54.5 + parent: 1 + - uid: 5177 + components: + - type: Transform + pos: 62.5,55.5 + parent: 1 + - uid: 5178 + components: + - type: Transform + pos: 63.5,52.5 + parent: 1 + - uid: 5179 + components: + - type: Transform + pos: 64.5,52.5 + parent: 1 + - uid: 5180 + components: + - type: Transform + pos: 65.5,52.5 + parent: 1 + - uid: 5181 + components: + - type: Transform + pos: 63.5,44.5 + parent: 1 + - uid: 5182 + components: + - type: Transform + pos: 64.5,44.5 + parent: 1 + - uid: 5183 + components: + - type: Transform + pos: 65.5,44.5 + parent: 1 + - uid: 5213 + components: + - type: Transform + pos: 74.5,52.5 + parent: 1 + - uid: 5214 + components: + - type: Transform + pos: 74.5,51.5 + parent: 1 + - uid: 5215 + components: + - type: Transform + pos: 75.5,51.5 + parent: 1 + - uid: 5216 + components: + - type: Transform + pos: 75.5,50.5 + parent: 1 + - uid: 5217 + components: + - type: Transform + pos: 75.5,49.5 + parent: 1 + - uid: 5218 + components: + - type: Transform + pos: 75.5,48.5 + parent: 1 + - uid: 5219 + components: + - type: Transform + pos: 75.5,47.5 + parent: 1 + - uid: 5220 + components: + - type: Transform + pos: 75.5,46.5 + parent: 1 + - uid: 5221 + components: + - type: Transform + pos: 75.5,45.5 + parent: 1 + - uid: 5222 + components: + - type: Transform + pos: 76.5,45.5 + parent: 1 + - uid: 5223 + components: + - type: Transform + pos: 77.5,45.5 + parent: 1 + - uid: 5224 + components: + - type: Transform + pos: 78.5,45.5 + parent: 1 + - uid: 5225 + components: + - type: Transform + pos: 79.5,45.5 + parent: 1 + - uid: 5226 + components: + - type: Transform + pos: 76.5,48.5 + parent: 1 + - uid: 5227 + components: + - type: Transform + pos: 77.5,48.5 + parent: 1 + - uid: 5228 + components: + - type: Transform + pos: 78.5,48.5 + parent: 1 + - uid: 5229 + components: + - type: Transform + pos: 79.5,48.5 + parent: 1 + - uid: 5230 + components: + - type: Transform + pos: 76.5,51.5 + parent: 1 + - uid: 5231 + components: + - type: Transform + pos: 77.5,51.5 + parent: 1 + - uid: 5232 + components: + - type: Transform + pos: 78.5,51.5 + parent: 1 + - uid: 5233 + components: + - type: Transform + pos: 79.5,51.5 + parent: 1 + - uid: 5234 + components: + - type: Transform + pos: 74.5,48.5 + parent: 1 + - uid: 5235 + components: + - type: Transform + pos: 73.5,48.5 + parent: 1 + - uid: 5236 + components: + - type: Transform + pos: 72.5,48.5 + parent: 1 + - uid: 5237 + components: + - type: Transform + pos: 71.5,48.5 + parent: 1 + - uid: 5238 + components: + - type: Transform + pos: 77.5,52.5 + parent: 1 + - uid: 5239 + components: + - type: Transform + pos: 71.5,49.5 + parent: 1 + - uid: 5240 + components: + - type: Transform + pos: 71.5,50.5 + parent: 1 + - uid: 5241 + components: + - type: Transform + pos: 71.5,51.5 + parent: 1 + - uid: 5242 + components: + - type: Transform + pos: 71.5,52.5 + parent: 1 + - uid: 5243 + components: + - type: Transform + pos: 71.5,53.5 + parent: 1 + - uid: 5244 + components: + - type: Transform + pos: 71.5,54.5 + parent: 1 + - uid: 5245 + components: + - type: Transform + pos: 71.5,47.5 + parent: 1 + - uid: 5246 + components: + - type: Transform + pos: 71.5,46.5 + parent: 1 + - uid: 5247 + components: + - type: Transform + pos: 71.5,45.5 + parent: 1 + - uid: 5248 + components: + - type: Transform + pos: 71.5,44.5 + parent: 1 + - uid: 5249 + components: + - type: Transform + pos: 71.5,42.5 + parent: 1 + - uid: 5250 + components: + - type: Transform + pos: 71.5,43.5 + parent: 1 + - uid: 5251 + components: + - type: Transform + pos: 77.5,53.5 + parent: 1 + - uid: 5252 + components: + - type: Transform + pos: 76.5,53.5 + parent: 1 + - uid: 5253 + components: + - type: Transform + pos: 75.5,53.5 + parent: 1 + - uid: 5254 + components: + - type: Transform + pos: 78.5,53.5 + parent: 1 + - uid: 5255 + components: + - type: Transform + pos: 79.5,53.5 + parent: 1 + - uid: 5256 + components: + - type: Transform + pos: 80.5,53.5 + parent: 1 + - uid: 5257 + components: + - type: Transform + pos: 74.5,43.5 + parent: 1 + - uid: 5258 + components: + - type: Transform + pos: 75.5,43.5 + parent: 1 + - uid: 5259 + components: + - type: Transform + pos: 76.5,43.5 + parent: 1 + - uid: 5260 + components: + - type: Transform + pos: 77.5,43.5 + parent: 1 + - uid: 5261 + components: + - type: Transform + pos: 78.5,43.5 + parent: 1 + - uid: 5262 + components: + - type: Transform + pos: 79.5,43.5 + parent: 1 + - uid: 5263 + components: + - type: Transform + pos: 80.5,43.5 + parent: 1 + - uid: 5264 + components: + - type: Transform + pos: 77.5,44.5 + parent: 1 + - uid: 5434 + components: + - type: Transform + pos: 71.5,64.5 + parent: 1 + - uid: 5435 + components: + - type: Transform + pos: 71.5,65.5 + parent: 1 + - uid: 5436 + components: + - type: Transform + pos: 71.5,66.5 + parent: 1 + - uid: 5437 + components: + - type: Transform + pos: 70.5,66.5 + parent: 1 + - uid: 5438 + components: + - type: Transform + pos: 69.5,66.5 + parent: 1 + - uid: 5439 + components: + - type: Transform + pos: 68.5,66.5 + parent: 1 + - uid: 5440 + components: + - type: Transform + pos: 67.5,66.5 + parent: 1 + - uid: 5441 + components: + - type: Transform + pos: 66.5,66.5 + parent: 1 + - uid: 5442 + components: + - type: Transform + pos: 65.5,66.5 + parent: 1 + - uid: 5443 + components: + - type: Transform + pos: 64.5,66.5 + parent: 1 + - uid: 5444 + components: + - type: Transform + pos: 63.5,66.5 + parent: 1 + - uid: 5445 + components: + - type: Transform + pos: 64.5,67.5 + parent: 1 + - uid: 5446 + components: + - type: Transform + pos: 64.5,68.5 + parent: 1 + - uid: 5447 + components: + - type: Transform + pos: 64.5,69.5 + parent: 1 + - uid: 5448 + components: + - type: Transform + pos: 64.5,70.5 + parent: 1 + - uid: 5449 + components: + - type: Transform + pos: 66.5,67.5 + parent: 1 + - uid: 5450 + components: + - type: Transform + pos: 66.5,68.5 + parent: 1 + - uid: 5451 + components: + - type: Transform + pos: 66.5,69.5 + parent: 1 + - uid: 5452 + components: + - type: Transform + pos: 66.5,70.5 + parent: 1 + - uid: 5453 + components: + - type: Transform + pos: 66.5,65.5 + parent: 1 + - uid: 5454 + components: + - type: Transform + pos: 66.5,64.5 + parent: 1 + - uid: 5455 + components: + - type: Transform + pos: 66.5,63.5 + parent: 1 + - uid: 5456 + components: + - type: Transform + pos: 66.5,62.5 + parent: 1 + - uid: 5457 + components: + - type: Transform + pos: 64.5,65.5 + parent: 1 + - uid: 5458 + components: + - type: Transform + pos: 64.5,64.5 + parent: 1 + - uid: 5459 + components: + - type: Transform + pos: 64.5,63.5 + parent: 1 + - uid: 5460 + components: + - type: Transform + pos: 64.5,62.5 + parent: 1 + - uid: 5461 + components: + - type: Transform + pos: 71.5,67.5 + parent: 1 + - uid: 5462 + components: + - type: Transform + pos: 71.5,68.5 + parent: 1 + - uid: 5463 + components: + - type: Transform + pos: 71.5,69.5 + parent: 1 + - uid: 5464 + components: + - type: Transform + pos: 71.5,70.5 + parent: 1 + - uid: 5465 + components: + - type: Transform + pos: 71.5,71.5 + parent: 1 + - uid: 5466 + components: + - type: Transform + pos: 71.5,72.5 + parent: 1 + - uid: 5467 + components: + - type: Transform + pos: 72.5,72.5 + parent: 1 + - uid: 5468 + components: + - type: Transform + pos: 73.5,72.5 + parent: 1 + - uid: 5469 + components: + - type: Transform + pos: 72.5,65.5 + parent: 1 + - uid: 5470 + components: + - type: Transform + pos: 72.5,64.5 + parent: 1 + - uid: 5471 + components: + - type: Transform + pos: 72.5,63.5 + parent: 1 + - uid: 5472 + components: + - type: Transform + pos: 72.5,62.5 + parent: 1 + - uid: 5473 + components: + - type: Transform + pos: 72.5,61.5 + parent: 1 + - uid: 5474 + components: + - type: Transform + pos: 73.5,61.5 + parent: 1 + - uid: 5475 + components: + - type: Transform + pos: 74.5,61.5 + parent: 1 + - uid: 5476 + components: + - type: Transform + pos: 69.5,65.5 + parent: 1 + - uid: 5477 + components: + - type: Transform + pos: 69.5,64.5 + parent: 1 + - uid: 5478 + components: + - type: Transform + pos: 69.5,63.5 + parent: 1 + - uid: 5479 + components: + - type: Transform + pos: 69.5,62.5 + parent: 1 + - uid: 5480 + components: + - type: Transform + pos: 69.5,61.5 + parent: 1 + - uid: 5481 + components: + - type: Transform + pos: 69.5,81.5 + parent: 1 + - uid: 5482 + components: + - type: Transform + pos: 69.5,80.5 + parent: 1 + - uid: 5483 + components: + - type: Transform + pos: 70.5,80.5 + parent: 1 + - uid: 5484 + components: + - type: Transform + pos: 70.5,79.5 + parent: 1 + - uid: 5485 + components: + - type: Transform + pos: 71.5,79.5 + parent: 1 + - uid: 5486 + components: + - type: Transform + pos: 72.5,79.5 + parent: 1 + - uid: 5487 + components: + - type: Transform + pos: 72.5,78.5 + parent: 1 + - uid: 5488 + components: + - type: Transform + pos: 72.5,77.5 + parent: 1 + - uid: 5489 + components: + - type: Transform + pos: 71.5,77.5 + parent: 1 + - uid: 5490 + components: + - type: Transform + pos: 71.5,76.5 + parent: 1 + - uid: 5491 + components: + - type: Transform + pos: 71.5,75.5 + parent: 1 + - uid: 5492 + components: + - type: Transform + pos: 71.5,74.5 + parent: 1 + - uid: 5493 + components: + - type: Transform + pos: 70.5,77.5 + parent: 1 + - uid: 5494 + components: + - type: Transform + pos: 69.5,77.5 + parent: 1 + - uid: 5495 + components: + - type: Transform + pos: 70.5,74.5 + parent: 1 + - uid: 5496 + components: + - type: Transform + pos: 69.5,74.5 + parent: 1 + - uid: 5497 + components: + - type: Transform + pos: 64.5,76.5 + parent: 1 + - uid: 5498 + components: + - type: Transform + pos: 64.5,77.5 + parent: 1 + - uid: 5499 + components: + - type: Transform + pos: 64.5,78.5 + parent: 1 + - uid: 5500 + components: + - type: Transform + pos: 63.5,78.5 + parent: 1 + - uid: 5501 + components: + - type: Transform + pos: 63.5,79.5 + parent: 1 + - uid: 5502 + components: + - type: Transform + pos: 63.5,80.5 + parent: 1 + - uid: 5503 + components: + - type: Transform + pos: 64.5,80.5 + parent: 1 + - uid: 5504 + components: + - type: Transform + pos: 65.5,80.5 + parent: 1 + - uid: 5505 + components: + - type: Transform + pos: 66.5,80.5 + parent: 1 + - uid: 5506 + components: + - type: Transform + pos: 66.5,79.5 + parent: 1 + - uid: 5507 + components: + - type: Transform + pos: 66.5,78.5 + parent: 1 + - uid: 5508 + components: + - type: Transform + pos: 65.5,78.5 + parent: 1 + - uid: 5509 + components: + - type: Transform + pos: 66.5,77.5 + parent: 1 + - uid: 5510 + components: + - type: Transform + pos: 66.5,76.5 + parent: 1 + - uid: 5511 + components: + - type: Transform + pos: 66.5,75.5 + parent: 1 + - uid: 5512 + components: + - type: Transform + pos: 66.5,74.5 + parent: 1 + - uid: 5513 + components: + - type: Transform + pos: 65.5,74.5 + parent: 1 + - uid: 5514 + components: + - type: Transform + pos: 64.5,74.5 + parent: 1 + - uid: 5515 + components: + - type: Transform + pos: 63.5,74.5 + parent: 1 + - uid: 5516 + components: + - type: Transform + pos: 62.5,74.5 + parent: 1 + - uid: 5525 + components: + - type: Transform + pos: 50.5,27.5 + parent: 1 + - uid: 5526 + components: + - type: Transform + pos: 49.5,27.5 + parent: 1 + - uid: 5527 + components: + - type: Transform + pos: 48.5,27.5 + parent: 1 + - uid: 5528 + components: + - type: Transform + pos: 48.5,28.5 + parent: 1 + - uid: 5529 + components: + - type: Transform + pos: 47.5,28.5 + parent: 1 + - uid: 5530 + components: + - type: Transform + pos: 46.5,28.5 + parent: 1 + - uid: 5531 + components: + - type: Transform + pos: 45.5,28.5 + parent: 1 + - uid: 5532 + components: + - type: Transform + pos: 44.5,28.5 + parent: 1 + - uid: 5533 + components: + - type: Transform + pos: 42.5,28.5 + parent: 1 + - uid: 5534 + components: + - type: Transform + pos: 43.5,28.5 + parent: 1 + - uid: 5535 + components: + - type: Transform + pos: 43.5,29.5 + parent: 1 + - uid: 5536 + components: + - type: Transform + pos: 43.5,30.5 + parent: 1 + - uid: 5537 + components: + - type: Transform + pos: 44.5,30.5 + parent: 1 + - uid: 5538 + components: + - type: Transform + pos: 45.5,30.5 + parent: 1 + - uid: 5539 + components: + - type: Transform + pos: 46.5,30.5 + parent: 1 + - uid: 5540 + components: + - type: Transform + pos: 47.5,30.5 + parent: 1 + - uid: 5541 + components: + - type: Transform + pos: 48.5,30.5 + parent: 1 + - uid: 5542 + components: + - type: Transform + pos: 43.5,27.5 + parent: 1 + - uid: 5543 + components: + - type: Transform + pos: 48.5,29.5 + parent: 1 + - uid: 5544 + components: + - type: Transform + pos: 43.5,26.5 + parent: 1 + - uid: 5545 + components: + - type: Transform + pos: 43.5,25.5 + parent: 1 + - uid: 5546 + components: + - type: Transform + pos: 43.5,24.5 + parent: 1 + - uid: 5547 + components: + - type: Transform + pos: 45.5,27.5 + parent: 1 + - uid: 5548 + components: + - type: Transform + pos: 45.5,26.5 + parent: 1 + - uid: 5549 + components: + - type: Transform + pos: 45.5,25.5 + parent: 1 + - uid: 5550 + components: + - type: Transform + pos: 45.5,24.5 + parent: 1 + - uid: 5551 + components: + - type: Transform + pos: 47.5,26.5 + parent: 1 + - uid: 5552 + components: + - type: Transform + pos: 47.5,25.5 + parent: 1 + - uid: 5553 + components: + - type: Transform + pos: 47.5,24.5 + parent: 1 + - uid: 5554 + components: + - type: Transform + pos: 48.5,26.5 + parent: 1 + - uid: 5572 + components: + - type: Transform + pos: 35.5,30.5 + parent: 1 + - uid: 5573 + components: + - type: Transform + pos: 36.5,30.5 + parent: 1 + - uid: 5574 + components: + - type: Transform + pos: 36.5,29.5 + parent: 1 + - uid: 5575 + components: + - type: Transform + pos: 36.5,28.5 + parent: 1 + - uid: 5576 + components: + - type: Transform + pos: 36.5,27.5 + parent: 1 + - uid: 5577 + components: + - type: Transform + pos: 36.5,26.5 + parent: 1 + - uid: 5578 + components: + - type: Transform + pos: 36.5,25.5 + parent: 1 + - uid: 5579 + components: + - type: Transform + pos: 36.5,24.5 + parent: 1 + - uid: 5580 + components: + - type: Transform + pos: 36.5,23.5 + parent: 1 + - uid: 5581 + components: + - type: Transform + pos: 37.5,23.5 + parent: 1 + - uid: 5582 + components: + - type: Transform + pos: 38.5,23.5 + parent: 1 + - uid: 5583 + components: + - type: Transform + pos: 39.5,23.5 + parent: 1 + - uid: 5584 + components: + - type: Transform + pos: 40.5,23.5 + parent: 1 + - uid: 5585 + components: + - type: Transform + pos: 40.5,24.5 + parent: 1 + - uid: 5586 + components: + - type: Transform + pos: 40.5,25.5 + parent: 1 + - uid: 5587 + components: + - type: Transform + pos: 40.5,26.5 + parent: 1 + - uid: 5588 + components: + - type: Transform + pos: 40.5,27.5 + parent: 1 + - uid: 5589 + components: + - type: Transform + pos: 40.5,28.5 + parent: 1 + - uid: 5590 + components: + - type: Transform + pos: 40.5,29.5 + parent: 1 + - uid: 5591 + components: + - type: Transform + pos: 40.5,30.5 + parent: 1 + - uid: 5592 + components: + - type: Transform + pos: 39.5,30.5 + parent: 1 + - uid: 5593 + components: + - type: Transform + pos: 38.5,30.5 + parent: 1 + - uid: 5594 + components: + - type: Transform + pos: 37.5,30.5 + parent: 1 + - uid: 5595 + components: + - type: Transform + pos: 37.5,25.5 + parent: 1 + - uid: 5596 + components: + - type: Transform + pos: 38.5,25.5 + parent: 1 + - uid: 5597 + components: + - type: Transform + pos: 39.5,25.5 + parent: 1 + - uid: 5598 + components: + - type: Transform + pos: 34.5,30.5 + parent: 1 + - uid: 5599 + components: + - type: Transform + pos: 34.5,29.5 + parent: 1 + - uid: 5600 + components: + - type: Transform + pos: 33.5,29.5 + parent: 1 + - uid: 5601 + components: + - type: Transform + pos: 32.5,29.5 + parent: 1 + - uid: 5602 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 5603 + components: + - type: Transform + pos: 30.5,29.5 + parent: 1 + - uid: 5604 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 5605 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 5606 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 5607 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 5612 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1 + - uid: 5613 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 5614 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1 + - uid: 5615 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1 + - uid: 5616 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1 + - uid: 5617 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1 + - uid: 5618 + components: + - type: Transform + pos: 25.5,36.5 + parent: 1 + - uid: 5619 + components: + - type: Transform + pos: 25.5,37.5 + parent: 1 + - uid: 5620 + components: + - type: Transform + pos: 25.5,38.5 + parent: 1 + - uid: 5621 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1 + - uid: 5622 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1 + - uid: 5623 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1 + - uid: 5624 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1 + - uid: 5625 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1 + - uid: 5659 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - uid: 5660 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 + - uid: 5661 + components: + - type: Transform + pos: 30.5,42.5 + parent: 1 + - uid: 5662 + components: + - type: Transform + pos: 31.5,43.5 + parent: 1 + - uid: 5663 + components: + - type: Transform + pos: 32.5,43.5 + parent: 1 + - uid: 5664 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 5665 + components: + - type: Transform + pos: 29.5,42.5 + parent: 1 + - uid: 5666 + components: + - type: Transform + pos: 28.5,42.5 + parent: 1 + - uid: 5667 + components: + - type: Transform + pos: 27.5,42.5 + parent: 1 + - uid: 5668 + components: + - type: Transform + pos: 26.5,42.5 + parent: 1 + - uid: 5669 + components: + - type: Transform + pos: 25.5,42.5 + parent: 1 + - uid: 5670 + components: + - type: Transform + pos: 32.5,44.5 + parent: 1 + - uid: 5671 + components: + - type: Transform + pos: 32.5,45.5 + parent: 1 + - uid: 5672 + components: + - type: Transform + pos: 32.5,41.5 + parent: 1 + - uid: 5673 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1 + - uid: 5674 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1 + - uid: 5675 + components: + - type: Transform + pos: 37.5,33.5 + parent: 1 + - uid: 5676 + components: + - type: Transform + pos: 36.5,35.5 + parent: 1 + - uid: 5677 + components: + - type: Transform + pos: 36.5,34.5 + parent: 1 + - uid: 5678 + components: + - type: Transform + pos: 36.5,33.5 + parent: 1 + - uid: 5679 + components: + - type: Transform + pos: 35.5,33.5 + parent: 1 + - uid: 5680 + components: + - type: Transform + pos: 34.5,33.5 + parent: 1 + - uid: 5681 + components: + - type: Transform + pos: 33.5,33.5 + parent: 1 + - uid: 5682 + components: + - type: Transform + pos: 32.5,33.5 + parent: 1 + - uid: 5683 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - uid: 5684 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1 + - uid: 5685 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1 + - uid: 5686 + components: + - type: Transform + pos: 32.5,37.5 + parent: 1 + - uid: 5687 + components: + - type: Transform + pos: 38.5,33.5 + parent: 1 + - uid: 5688 + components: + - type: Transform + pos: 39.5,33.5 + parent: 1 + - uid: 5689 + components: + - type: Transform + pos: 40.5,33.5 + parent: 1 + - uid: 5690 + components: + - type: Transform + pos: 41.5,33.5 + parent: 1 + - uid: 5691 + components: + - type: Transform + pos: 42.5,33.5 + parent: 1 + - uid: 5692 + components: + - type: Transform + pos: 43.5,33.5 + parent: 1 + - uid: 5693 + components: + - type: Transform + pos: 46.5,33.5 + parent: 1 + - uid: 5694 + components: + - type: Transform + pos: 45.5,33.5 + parent: 1 + - uid: 5695 + components: + - type: Transform + pos: 47.5,33.5 + parent: 1 + - uid: 5696 + components: + - type: Transform + pos: 48.5,33.5 + parent: 1 + - uid: 5697 + components: + - type: Transform + pos: 44.5,33.5 + parent: 1 + - uid: 5698 + components: + - type: Transform + pos: 48.5,34.5 + parent: 1 + - uid: 5706 + components: + - type: Transform + pos: 42.5,41.5 + parent: 1 + - uid: 5713 + components: + - type: Transform + pos: 41.5,41.5 + parent: 1 + - uid: 5714 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1 + - uid: 5715 + components: + - type: Transform + pos: 41.5,39.5 + parent: 1 + - uid: 5716 + components: + - type: Transform + pos: 40.5,39.5 + parent: 1 + - uid: 5717 + components: + - type: Transform + pos: 40.5,38.5 + parent: 1 + - uid: 5718 + components: + - type: Transform + pos: 40.5,36.5 + parent: 1 + - uid: 5719 + components: + - type: Transform + pos: 40.5,37.5 + parent: 1 + - uid: 5720 + components: + - type: Transform + pos: 39.5,39.5 + parent: 1 + - uid: 5721 + components: + - type: Transform + pos: 38.5,39.5 + parent: 1 + - uid: 5722 + components: + - type: Transform + pos: 38.5,38.5 + parent: 1 + - uid: 5723 + components: + - type: Transform + pos: 38.5,37.5 + parent: 1 + - uid: 5724 + components: + - type: Transform + pos: 38.5,36.5 + parent: 1 + - uid: 5725 + components: + - type: Transform + pos: 42.5,39.5 + parent: 1 + - uid: 5726 + components: + - type: Transform + pos: 42.5,38.5 + parent: 1 + - uid: 5727 + components: + - type: Transform + pos: 42.5,37.5 + parent: 1 + - uid: 5728 + components: + - type: Transform + pos: 42.5,36.5 + parent: 1 + - uid: 5730 + components: + - type: Transform + pos: 42.5,42.5 + parent: 1 + - uid: 5731 + components: + - type: Transform + pos: 42.5,43.5 + parent: 1 + - uid: 5732 + components: + - type: Transform + pos: 40.5,41.5 + parent: 1 + - uid: 5733 + components: + - type: Transform + pos: 40.5,42.5 + parent: 1 + - uid: 5734 + components: + - type: Transform + pos: 40.5,43.5 + parent: 1 + - uid: 5735 + components: + - type: Transform + pos: 38.5,41.5 + parent: 1 + - uid: 5736 + components: + - type: Transform + pos: 38.5,42.5 + parent: 1 + - uid: 5737 + components: + - type: Transform + pos: 38.5,43.5 + parent: 1 + - uid: 5738 + components: + - type: Transform + pos: 39.5,41.5 + parent: 1 + - uid: 5739 + components: + - type: Transform + pos: 37.5,41.5 + parent: 1 + - uid: 5740 + components: + - type: Transform + pos: 36.5,41.5 + parent: 1 + - uid: 5741 + components: + - type: Transform + pos: 36.5,42.5 + parent: 1 + - uid: 5742 + components: + - type: Transform + pos: 36.5,43.5 + parent: 1 + - uid: 6001 + components: + - type: Transform + pos: 81.5,59.5 + parent: 1 + - uid: 6002 + components: + - type: Transform + pos: 82.5,59.5 + parent: 1 + - uid: 6003 + components: + - type: Transform + pos: 83.5,59.5 + parent: 1 + - uid: 6004 + components: + - type: Transform + pos: 83.5,61.5 + parent: 1 + - uid: 6005 + components: + - type: Transform + pos: 83.5,62.5 + parent: 1 + - uid: 6006 + components: + - type: Transform + pos: 83.5,63.5 + parent: 1 + - uid: 6007 + components: + - type: Transform + pos: 83.5,64.5 + parent: 1 + - uid: 6008 + components: + - type: Transform + pos: 83.5,66.5 + parent: 1 + - uid: 6009 + components: + - type: Transform + pos: 83.5,67.5 + parent: 1 + - uid: 6010 + components: + - type: Transform + pos: 83.5,68.5 + parent: 1 + - uid: 6011 + components: + - type: Transform + pos: 83.5,69.5 + parent: 1 + - uid: 6012 + components: + - type: Transform + pos: 83.5,65.5 + parent: 1 + - uid: 6013 + components: + - type: Transform + pos: 82.5,68.5 + parent: 1 + - uid: 6014 + components: + - type: Transform + pos: 81.5,68.5 + parent: 1 + - uid: 6016 + components: + - type: Transform + pos: 82.5,64.5 + parent: 1 + - uid: 6017 + components: + - type: Transform + pos: 81.5,64.5 + parent: 1 + - uid: 6018 + components: + - type: Transform + pos: 83.5,58.5 + parent: 1 + - uid: 6019 + components: + - type: Transform + pos: 83.5,57.5 + parent: 1 + - uid: 6020 + components: + - type: Transform + pos: 83.5,56.5 + parent: 1 + - uid: 6021 + components: + - type: Transform + pos: 83.5,55.5 + parent: 1 + - uid: 6022 + components: + - type: Transform + pos: 83.5,54.5 + parent: 1 + - uid: 6023 + components: + - type: Transform + pos: 83.5,53.5 + parent: 1 + - uid: 6024 + components: + - type: Transform + pos: 83.5,52.5 + parent: 1 + - uid: 6025 + components: + - type: Transform + pos: 83.5,51.5 + parent: 1 + - uid: 6026 + components: + - type: Transform + pos: 82.5,56.5 + parent: 1 + - uid: 6027 + components: + - type: Transform + pos: 81.5,56.5 + parent: 1 + - uid: 6028 + components: + - type: Transform + pos: 80.5,56.5 + parent: 1 + - uid: 6029 + components: + - type: Transform + pos: 79.5,56.5 + parent: 1 + - uid: 6030 + components: + - type: Transform + pos: 78.5,56.5 + parent: 1 + - uid: 6031 + components: + - type: Transform + pos: 77.5,56.5 + parent: 1 + - uid: 6032 + components: + - type: Transform + pos: 87.5,51.5 + parent: 1 + - uid: 6033 + components: + - type: Transform + pos: 86.5,51.5 + parent: 1 + - uid: 6034 + components: + - type: Transform + pos: 85.5,51.5 + parent: 1 + - uid: 6035 + components: + - type: Transform + pos: 84.5,51.5 + parent: 1 + - uid: 6036 + components: + - type: Transform + pos: 87.5,53.5 + parent: 1 + - uid: 6037 + components: + - type: Transform + pos: 86.5,53.5 + parent: 1 + - uid: 6062 + components: + - type: Transform + pos: 79.5,72.5 + parent: 1 + - uid: 6082 + components: + - type: Transform + pos: 81.5,37.5 + parent: 1 + - uid: 6083 + components: + - type: Transform + pos: 82.5,37.5 + parent: 1 + - uid: 6084 + components: + - type: Transform + pos: 83.5,37.5 + parent: 1 + - uid: 6085 + components: + - type: Transform + pos: 83.5,38.5 + parent: 1 + - uid: 6086 + components: + - type: Transform + pos: 83.5,39.5 + parent: 1 + - uid: 6087 + components: + - type: Transform + pos: 83.5,40.5 + parent: 1 + - uid: 6088 + components: + - type: Transform + pos: 83.5,41.5 + parent: 1 + - uid: 6089 + components: + - type: Transform + pos: 83.5,42.5 + parent: 1 + - uid: 6090 + components: + - type: Transform + pos: 83.5,43.5 + parent: 1 + - uid: 6091 + components: + - type: Transform + pos: 83.5,44.5 + parent: 1 + - uid: 6092 + components: + - type: Transform + pos: 83.5,45.5 + parent: 1 + - uid: 6093 + components: + - type: Transform + pos: 84.5,45.5 + parent: 1 + - uid: 6094 + components: + - type: Transform + pos: 85.5,45.5 + parent: 1 + - uid: 6095 + components: + - type: Transform + pos: 86.5,45.5 + parent: 1 + - uid: 6096 + components: + - type: Transform + pos: 87.5,45.5 + parent: 1 + - uid: 6097 + components: + - type: Transform + pos: 84.5,43.5 + parent: 1 + - uid: 6098 + components: + - type: Transform + pos: 85.5,43.5 + parent: 1 + - uid: 6099 + components: + - type: Transform + pos: 86.5,43.5 + parent: 1 + - uid: 6100 + components: + - type: Transform + pos: 87.5,43.5 + parent: 1 + - uid: 6101 + components: + - type: Transform + pos: 87.5,46.5 + parent: 1 + - uid: 6102 + components: + - type: Transform + pos: 87.5,47.5 + parent: 1 + - uid: 6103 + components: + - type: Transform + pos: 87.5,48.5 + parent: 1 + - uid: 6104 + components: + - type: Transform + pos: 87.5,49.5 + parent: 1 + - uid: 6105 + components: + - type: Transform + pos: 86.5,49.5 + parent: 1 + - uid: 6106 + components: + - type: Transform + pos: 85.5,49.5 + parent: 1 + - uid: 6107 + components: + - type: Transform + pos: 84.5,49.5 + parent: 1 + - uid: 6108 + components: + - type: Transform + pos: 83.5,49.5 + parent: 1 + - uid: 6109 + components: + - type: Transform + pos: 83.5,36.5 + parent: 1 + - uid: 6110 + components: + - type: Transform + pos: 83.5,35.5 + parent: 1 + - uid: 6111 + components: + - type: Transform + pos: 82.5,49.5 + parent: 1 + - uid: 6112 + components: + - type: Transform + pos: 82.5,48.5 + parent: 1 + - uid: 6113 + components: + - type: Transform + pos: 82.5,47.5 + parent: 1 + - uid: 6114 + components: + - type: Transform + pos: 83.5,34.5 + parent: 1 + - uid: 6115 + components: + - type: Transform + pos: 83.5,32.5 + parent: 1 + - uid: 6116 + components: + - type: Transform + pos: 83.5,31.5 + parent: 1 + - uid: 6117 + components: + - type: Transform + pos: 83.5,30.5 + parent: 1 + - uid: 6118 + components: + - type: Transform + pos: 83.5,29.5 + parent: 1 + - uid: 6119 + components: + - type: Transform + pos: 83.5,28.5 + parent: 1 + - uid: 6120 + components: + - type: Transform + pos: 83.5,27.5 + parent: 1 + - uid: 6121 + components: + - type: Transform + pos: 83.5,33.5 + parent: 1 + - uid: 6122 + components: + - type: Transform + pos: 82.5,28.5 + parent: 1 + - uid: 6123 + components: + - type: Transform + pos: 81.5,28.5 + parent: 1 + - uid: 6124 + components: + - type: Transform + pos: 82.5,32.5 + parent: 1 + - uid: 6125 + components: + - type: Transform + pos: 81.5,32.5 + parent: 1 + - uid: 6126 + components: + - type: Transform + pos: 83.5,70.5 + parent: 1 + - uid: 6127 + components: + - type: Transform + pos: 83.5,71.5 + parent: 1 + - uid: 6128 + components: + - type: Transform + pos: 82.5,71.5 + parent: 1 + - uid: 6129 + components: + - type: Transform + pos: 81.5,71.5 + parent: 1 + - uid: 6130 + components: + - type: Transform + pos: 80.5,71.5 + parent: 1 + - uid: 6131 + components: + - type: Transform + pos: 79.5,71.5 + parent: 1 + - uid: 6132 + components: + - type: Transform + pos: 78.5,72.5 + parent: 1 + - uid: 6133 + components: + - type: Transform + pos: 77.5,72.5 + parent: 1 + - uid: 6134 + components: + - type: Transform + pos: 76.5,72.5 + parent: 1 + - uid: 6135 + components: + - type: Transform + pos: 75.5,72.5 + parent: 1 + - uid: 6137 + components: + - type: Transform + pos: 83.5,26.5 + parent: 1 + - uid: 6138 + components: + - type: Transform + pos: 83.5,25.5 + parent: 1 + - uid: 6139 + components: + - type: Transform + pos: 82.5,25.5 + parent: 1 + - uid: 6140 + components: + - type: Transform + pos: 81.5,25.5 + parent: 1 + - uid: 6141 + components: + - type: Transform + pos: 80.5,25.5 + parent: 1 + - uid: 6142 + components: + - type: Transform + pos: 79.5,25.5 + parent: 1 + - uid: 6143 + components: + - type: Transform + pos: 78.5,25.5 + parent: 1 + - uid: 6144 + components: + - type: Transform + pos: 77.5,25.5 + parent: 1 + - uid: 6145 + components: + - type: Transform + pos: 76.5,25.5 + parent: 1 + - uid: 6146 + components: + - type: Transform + pos: 74.5,25.5 + parent: 1 + - uid: 6147 + components: + - type: Transform + pos: 75.5,25.5 + parent: 1 + - uid: 6148 + components: + - type: Transform + pos: 74.5,24.5 + parent: 1 + - uid: 6149 + components: + - type: Transform + pos: 74.5,23.5 + parent: 1 + - uid: 6365 + components: + - type: Transform + pos: 82.5,40.5 + parent: 1 + - uid: 6366 + components: + - type: Transform + pos: 81.5,40.5 + parent: 1 + - uid: 6367 + components: + - type: Transform + pos: 80.5,40.5 + parent: 1 + - uid: 6368 + components: + - type: Transform + pos: 79.5,40.5 + parent: 1 + - uid: 6369 + components: + - type: Transform + pos: 78.5,40.5 + parent: 1 + - uid: 6370 + components: + - type: Transform + pos: 77.5,40.5 + parent: 1 + - uid: 6371 + components: + - type: Transform + pos: 76.5,40.5 + parent: 1 + - uid: 6372 + components: + - type: Transform + pos: 74.5,40.5 + parent: 1 + - uid: 6373 + components: + - type: Transform + pos: 73.5,40.5 + parent: 1 + - uid: 6374 + components: + - type: Transform + pos: 75.5,40.5 + parent: 1 + - uid: 6375 + components: + - type: Transform + pos: 74.5,56.5 + parent: 1 + - uid: 6376 + components: + - type: Transform + pos: 75.5,56.5 + parent: 1 + - uid: 6377 + components: + - type: Transform + pos: 76.5,56.5 + parent: 1 + - uid: 6378 + components: + - type: Transform + pos: 73.5,56.5 + parent: 1 + - uid: 6379 + components: + - type: Transform + pos: 72.5,56.5 + parent: 1 + - uid: 6380 + components: + - type: Transform + pos: 71.5,56.5 + parent: 1 + - uid: 6381 + components: + - type: Transform + pos: 72.5,40.5 + parent: 1 + - uid: 6382 + components: + - type: Transform + pos: 71.5,40.5 + parent: 1 + - uid: 6383 + components: + - type: Transform + pos: 70.5,38.5 + parent: 1 + - uid: 6384 + components: + - type: Transform + pos: 71.5,38.5 + parent: 1 + - uid: 6385 + components: + - type: Transform + pos: 54.5,56.5 + parent: 1 + - uid: 6386 + components: + - type: Transform + pos: 54.5,57.5 + parent: 1 + - uid: 6387 + components: + - type: Transform + pos: 54.5,58.5 + parent: 1 + - uid: 6388 + components: + - type: Transform + pos: 55.5,58.5 + parent: 1 + - uid: 6389 + components: + - type: Transform + pos: 56.5,58.5 + parent: 1 + - uid: 6390 + components: + - type: Transform + pos: 57.5,58.5 + parent: 1 + - uid: 6391 + components: + - type: Transform + pos: 59.5,58.5 + parent: 1 + - uid: 6392 + components: + - type: Transform + pos: 60.5,58.5 + parent: 1 + - uid: 6393 + components: + - type: Transform + pos: 61.5,58.5 + parent: 1 + - uid: 6394 + components: + - type: Transform + pos: 62.5,58.5 + parent: 1 + - uid: 6395 + components: + - type: Transform + pos: 58.5,58.5 + parent: 1 + - uid: 6396 + components: + - type: Transform + pos: 64.5,58.5 + parent: 1 + - uid: 6397 + components: + - type: Transform + pos: 65.5,58.5 + parent: 1 + - uid: 6398 + components: + - type: Transform + pos: 63.5,58.5 + parent: 1 + - uid: 6399 + components: + - type: Transform + pos: 68.5,58.5 + parent: 1 + - uid: 6400 + components: + - type: Transform + pos: 67.5,58.5 + parent: 1 + - uid: 6401 + components: + - type: Transform + pos: 69.5,58.5 + parent: 1 + - uid: 6402 + components: + - type: Transform + pos: 70.5,58.5 + parent: 1 + - uid: 6403 + components: + - type: Transform + pos: 71.5,58.5 + parent: 1 + - uid: 6404 + components: + - type: Transform + pos: 66.5,58.5 + parent: 1 + - uid: 6405 + components: + - type: Transform + pos: 53.5,58.5 + parent: 1 + - uid: 6406 + components: + - type: Transform + pos: 52.5,58.5 + parent: 1 + - uid: 6407 + components: + - type: Transform + pos: 51.5,58.5 + parent: 1 + - uid: 6408 + components: + - type: Transform + pos: 49.5,58.5 + parent: 1 + - uid: 6409 + components: + - type: Transform + pos: 48.5,58.5 + parent: 1 + - uid: 6410 + components: + - type: Transform + pos: 50.5,58.5 + parent: 1 + - uid: 6411 + components: + - type: Transform + pos: 48.5,59.5 + parent: 1 + - uid: 6412 + components: + - type: Transform + pos: 48.5,60.5 + parent: 1 + - uid: 6413 + components: + - type: Transform + pos: 48.5,57.5 + parent: 1 + - uid: 6414 + components: + - type: Transform + pos: 48.5,56.5 + parent: 1 + - uid: 6415 + components: + - type: Transform + pos: 48.5,55.5 + parent: 1 + - uid: 6416 + components: + - type: Transform + pos: 48.5,54.5 + parent: 1 + - uid: 6417 + components: + - type: Transform + pos: 48.5,53.5 + parent: 1 + - uid: 6418 + components: + - type: Transform + pos: 48.5,51.5 + parent: 1 + - uid: 6419 + components: + - type: Transform + pos: 48.5,50.5 + parent: 1 + - uid: 6420 + components: + - type: Transform + pos: 48.5,49.5 + parent: 1 + - uid: 6421 + components: + - type: Transform + pos: 48.5,52.5 + parent: 1 + - uid: 6422 + components: + - type: Transform + pos: 30.5,50.5 + parent: 1 + - uid: 6423 + components: + - type: Transform + pos: 30.5,49.5 + parent: 1 + - uid: 6424 + components: + - type: Transform + pos: 29.5,49.5 + parent: 1 + - uid: 6425 + components: + - type: Transform + pos: 27.5,49.5 + parent: 1 + - uid: 6426 + components: + - type: Transform + pos: 26.5,49.5 + parent: 1 + - uid: 6427 + components: + - type: Transform + pos: 25.5,49.5 + parent: 1 + - uid: 6428 + components: + - type: Transform + pos: 24.5,49.5 + parent: 1 + - uid: 6429 + components: + - type: Transform + pos: 23.5,49.5 + parent: 1 + - uid: 6430 + components: + - type: Transform + pos: 28.5,49.5 + parent: 1 + - uid: 6431 + components: + - type: Transform + pos: 31.5,49.5 + parent: 1 + - uid: 6432 + components: + - type: Transform + pos: 33.5,49.5 + parent: 1 + - uid: 6433 + components: + - type: Transform + pos: 34.5,49.5 + parent: 1 + - uid: 6434 + components: + - type: Transform + pos: 35.5,49.5 + parent: 1 + - uid: 6435 + components: + - type: Transform + pos: 32.5,49.5 + parent: 1 + - uid: 6436 + components: + - type: Transform + pos: 36.5,49.5 + parent: 1 + - uid: 6437 + components: + - type: Transform + pos: 38.5,49.5 + parent: 1 + - uid: 6438 + components: + - type: Transform + pos: 37.5,49.5 + parent: 1 + - uid: 6439 + components: + - type: Transform + pos: 39.5,49.5 + parent: 1 + - uid: 6440 + components: + - type: Transform + pos: 40.5,49.5 + parent: 1 + - uid: 6441 + components: + - type: Transform + pos: 41.5,49.5 + parent: 1 + - uid: 6442 + components: + - type: Transform + pos: 42.5,49.5 + parent: 1 + - uid: 6443 + components: + - type: Transform + pos: 43.5,49.5 + parent: 1 + - uid: 6444 + components: + - type: Transform + pos: 17.5,51.5 + parent: 1 + - uid: 6445 + components: + - type: Transform + pos: 17.5,52.5 + parent: 1 + - uid: 6446 + components: + - type: Transform + pos: 17.5,53.5 + parent: 1 + - uid: 6447 + components: + - type: Transform + pos: 18.5,53.5 + parent: 1 + - uid: 6448 + components: + - type: Transform + pos: 19.5,53.5 + parent: 1 + - uid: 6449 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - uid: 6450 + components: + - type: Transform + pos: 21.5,53.5 + parent: 1 + - uid: 6451 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 6453 + components: + - type: Transform + pos: 17.5,54.5 + parent: 1 + - uid: 6454 + components: + - type: Transform + pos: 17.5,55.5 + parent: 1 + - uid: 6455 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 6456 + components: + - type: Transform + pos: 19.5,51.5 + parent: 1 + - uid: 6457 + components: + - type: Transform + pos: 19.5,50.5 + parent: 1 + - uid: 6458 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 6459 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1 + - uid: 6460 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1 + - uid: 6461 + components: + - type: Transform + pos: 20.5,47.5 + parent: 1 + - uid: 6462 + components: + - type: Transform + pos: 21.5,47.5 + parent: 1 + - uid: 6463 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1 + - uid: 6464 + components: + - type: Transform + pos: 17.5,42.5 + parent: 1 + - uid: 6465 + components: + - type: Transform + pos: 17.5,43.5 + parent: 1 + - uid: 6466 + components: + - type: Transform + pos: 17.5,41.5 + parent: 1 + - uid: 6467 + components: + - type: Transform + pos: 17.5,44.5 + parent: 1 + - uid: 6468 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1 + - uid: 6469 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1 + - uid: 6470 + components: + - type: Transform + pos: 19.5,43.5 + parent: 1 + - uid: 6471 + components: + - type: Transform + pos: 19.5,42.5 + parent: 1 + - uid: 6472 + components: + - type: Transform + pos: 19.5,41.5 + parent: 1 + - uid: 6473 + components: + - type: Transform + pos: 20.5,43.5 + parent: 1 + - uid: 6474 + components: + - type: Transform + pos: 21.5,43.5 + parent: 1 + - uid: 6475 + components: + - type: Transform + pos: 22.5,43.5 + parent: 1 + - uid: 6476 + components: + - type: Transform + pos: 22.5,44.5 + parent: 1 + - uid: 6477 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1 + - uid: 6478 + components: + - type: Transform + pos: 22.5,42.5 + parent: 1 + - uid: 6479 + components: + - type: Transform + pos: 22.5,41.5 + parent: 1 + - uid: 6480 + components: + - type: Transform + pos: 19.5,40.5 + parent: 1 + - uid: 6481 + components: + - type: Transform + pos: 17.5,40.5 + parent: 1 + - uid: 6511 + components: + - type: Transform + pos: 70.5,22.5 + parent: 1 + - uid: 6512 + components: + - type: Transform + pos: 70.5,23.5 + parent: 1 + - uid: 6513 + components: + - type: Transform + pos: 71.5,23.5 + parent: 1 + - uid: 6514 + components: + - type: Transform + pos: 70.5,24.5 + parent: 1 + - uid: 6515 + components: + - type: Transform + pos: 69.5,24.5 + parent: 1 + - uid: 6516 + components: + - type: Transform + pos: 68.5,24.5 + parent: 1 + - uid: 6517 + components: + - type: Transform + pos: 67.5,24.5 + parent: 1 + - uid: 6518 + components: + - type: Transform + pos: 72.5,23.5 + parent: 1 + - uid: 6519 + components: + - type: Transform + pos: 72.5,22.5 + parent: 1 + - uid: 6520 + components: + - type: Transform + pos: 72.5,21.5 + parent: 1 + - uid: 6521 + components: + - type: Transform + pos: 72.5,20.5 + parent: 1 + - uid: 6522 + components: + - type: Transform + pos: 73.5,20.5 + parent: 1 + - uid: 6523 + components: + - type: Transform + pos: 74.5,20.5 + parent: 1 + - uid: 6524 + components: + - type: Transform + pos: 75.5,20.5 + parent: 1 + - uid: 6525 + components: + - type: Transform + pos: 70.5,21.5 + parent: 1 + - uid: 6526 + components: + - type: Transform + pos: 70.5,20.5 + parent: 1 + - uid: 6527 + components: + - type: Transform + pos: 70.5,19.5 + parent: 1 + - uid: 6528 + components: + - type: Transform + pos: 69.5,19.5 + parent: 1 + - uid: 6529 + components: + - type: Transform + pos: 68.5,19.5 + parent: 1 + - uid: 6530 + components: + - type: Transform + pos: 67.5,19.5 + parent: 1 + - uid: 6531 + components: + - type: Transform + pos: 66.5,19.5 + parent: 1 + - uid: 6532 + components: + - type: Transform + pos: 69.5,21.5 + parent: 1 + - uid: 6533 + components: + - type: Transform + pos: 68.5,21.5 + parent: 1 + - uid: 6534 + components: + - type: Transform + pos: 67.5,21.5 + parent: 1 + - uid: 6535 + components: + - type: Transform + pos: 66.5,21.5 + parent: 1 + - uid: 6536 + components: + - type: Transform + pos: 66.5,20.5 + parent: 1 + - uid: 6537 + components: + - type: Transform + pos: 62.5,18.5 + parent: 1 + - uid: 6552 + components: + - type: Transform + pos: 64.5,18.5 + parent: 1 + - uid: 6553 + components: + - type: Transform + pos: 64.5,19.5 + parent: 1 + - uid: 6554 + components: + - type: Transform + pos: 64.5,20.5 + parent: 1 + - uid: 6555 + components: + - type: Transform + pos: 64.5,21.5 + parent: 1 + - uid: 6556 + components: + - type: Transform + pos: 64.5,22.5 + parent: 1 + - uid: 6557 + components: + - type: Transform + pos: 64.5,23.5 + parent: 1 + - uid: 6558 + components: + - type: Transform + pos: 64.5,24.5 + parent: 1 + - uid: 6559 + components: + - type: Transform + pos: 64.5,25.5 + parent: 1 + - uid: 6560 + components: + - type: Transform + pos: 64.5,26.5 + parent: 1 + - uid: 6561 + components: + - type: Transform + pos: 64.5,17.5 + parent: 1 + - uid: 6562 + components: + - type: Transform + pos: 64.5,16.5 + parent: 1 + - uid: 6563 + components: + - type: Transform + pos: 64.5,15.5 + parent: 1 + - uid: 6564 + components: + - type: Transform + pos: 63.5,15.5 + parent: 1 + - uid: 6565 + components: + - type: Transform + pos: 65.5,15.5 + parent: 1 + - uid: 6566 + components: + - type: Transform + pos: 63.5,14.5 + parent: 1 + - uid: 6567 + components: + - type: Transform + pos: 63.5,13.5 + parent: 1 + - uid: 6568 + components: + - type: Transform + pos: 63.5,12.5 + parent: 1 + - uid: 6569 + components: + - type: Transform + pos: 65.5,14.5 + parent: 1 + - uid: 6570 + components: + - type: Transform + pos: 65.5,13.5 + parent: 1 + - uid: 6571 + components: + - type: Transform + pos: 65.5,12.5 + parent: 1 + - uid: 6659 + components: + - type: Transform + pos: 73.5,31.5 + parent: 1 + - uid: 6660 + components: + - type: Transform + pos: 72.5,31.5 + parent: 1 + - uid: 6661 + components: + - type: Transform + pos: 72.5,32.5 + parent: 1 + - uid: 6662 + components: + - type: Transform + pos: 72.5,33.5 + parent: 1 + - uid: 6663 + components: + - type: Transform + pos: 72.5,34.5 + parent: 1 + - uid: 6664 + components: + - type: Transform + pos: 73.5,34.5 + parent: 1 + - uid: 6665 + components: + - type: Transform + pos: 74.5,34.5 + parent: 1 + - uid: 6666 + components: + - type: Transform + pos: 71.5,31.5 + parent: 1 + - uid: 6667 + components: + - type: Transform + pos: 70.5,31.5 + parent: 1 + - uid: 6668 + components: + - type: Transform + pos: 70.5,32.5 + parent: 1 + - uid: 6669 + components: + - type: Transform + pos: 70.5,33.5 + parent: 1 + - uid: 6670 + components: + - type: Transform + pos: 70.5,34.5 + parent: 1 + - uid: 6671 + components: + - type: Transform + pos: 70.5,35.5 + parent: 1 + - uid: 6672 + components: + - type: Transform + pos: 70.5,36.5 + parent: 1 + - uid: 6673 + components: + - type: Transform + pos: 71.5,30.5 + parent: 1 + - uid: 6674 + components: + - type: Transform + pos: 71.5,29.5 + parent: 1 + - uid: 6675 + components: + - type: Transform + pos: 71.5,28.5 + parent: 1 + - uid: 6676 + components: + - type: Transform + pos: 70.5,28.5 + parent: 1 + - uid: 6677 + components: + - type: Transform + pos: 69.5,28.5 + parent: 1 + - uid: 6678 + components: + - type: Transform + pos: 68.5,28.5 + parent: 1 + - uid: 6679 + components: + - type: Transform + pos: 67.5,28.5 + parent: 1 + - uid: 6680 + components: + - type: Transform + pos: 66.5,28.5 + parent: 1 + - uid: 6681 + components: + - type: Transform + pos: 65.5,28.5 + parent: 1 + - uid: 6682 + components: + - type: Transform + pos: 63.5,28.5 + parent: 1 + - uid: 6683 + components: + - type: Transform + pos: 64.5,28.5 + parent: 1 + - uid: 6684 + components: + - type: Transform + pos: 69.5,31.5 + parent: 1 + - uid: 6685 + components: + - type: Transform + pos: 68.5,31.5 + parent: 1 + - uid: 6686 + components: + - type: Transform + pos: 66.5,31.5 + parent: 1 + - uid: 6687 + components: + - type: Transform + pos: 65.5,31.5 + parent: 1 + - uid: 6688 + components: + - type: Transform + pos: 64.5,31.5 + parent: 1 + - uid: 6689 + components: + - type: Transform + pos: 63.5,31.5 + parent: 1 + - uid: 6690 + components: + - type: Transform + pos: 67.5,31.5 + parent: 1 + - uid: 6860 + components: + - type: Transform + pos: 34.5,58.5 + parent: 1 + - uid: 6861 + components: + - type: Transform + pos: 34.5,57.5 + parent: 1 + - uid: 6862 + components: + - type: Transform + pos: 33.5,57.5 + parent: 1 + - uid: 6863 + components: + - type: Transform + pos: 33.5,56.5 + parent: 1 + - uid: 6864 + components: + - type: Transform + pos: 33.5,55.5 + parent: 1 + - uid: 6865 + components: + - type: Transform + pos: 33.5,54.5 + parent: 1 + - uid: 6866 + components: + - type: Transform + pos: 33.5,53.5 + parent: 1 + - uid: 6867 + components: + - type: Transform + pos: 32.5,55.5 + parent: 1 + - uid: 6868 + components: + - type: Transform + pos: 31.5,55.5 + parent: 1 + - uid: 6869 + components: + - type: Transform + pos: 34.5,55.5 + parent: 1 + - uid: 6870 + components: + - type: Transform + pos: 35.5,55.5 + parent: 1 + - uid: 6871 + components: + - type: Transform + pos: 36.5,55.5 + parent: 1 + - uid: 6872 + components: + - type: Transform + pos: 37.5,55.5 + parent: 1 + - uid: 6873 + components: + - type: Transform + pos: 39.5,53.5 + parent: 1 + - uid: 6874 + components: + - type: Transform + pos: 39.5,54.5 + parent: 1 + - uid: 6875 + components: + - type: Transform + pos: 39.5,55.5 + parent: 1 + - uid: 6876 + components: + - type: Transform + pos: 39.5,56.5 + parent: 1 + - uid: 6877 + components: + - type: Transform + pos: 39.5,57.5 + parent: 1 + - uid: 6878 + components: + - type: Transform + pos: 40.5,57.5 + parent: 1 + - uid: 6879 + components: + - type: Transform + pos: 41.5,57.5 + parent: 1 + - uid: 6880 + components: + - type: Transform + pos: 42.5,57.5 + parent: 1 + - uid: 6881 + components: + - type: Transform + pos: 43.5,57.5 + parent: 1 + - uid: 6882 + components: + - type: Transform + pos: 40.5,54.5 + parent: 1 + - uid: 6883 + components: + - type: Transform + pos: 41.5,54.5 + parent: 1 + - uid: 6884 + components: + - type: Transform + pos: 42.5,54.5 + parent: 1 + - uid: 6885 + components: + - type: Transform + pos: 43.5,54.5 + parent: 1 + - uid: 6886 + components: + - type: Transform + pos: 39.5,52.5 + parent: 1 + - uid: 6887 + components: + - type: Transform + pos: 24.5,53.5 + parent: 1 + - uid: 6888 + components: + - type: Transform + pos: 25.5,54.5 + parent: 1 + - uid: 6889 + components: + - type: Transform + pos: 26.5,54.5 + parent: 1 + - uid: 6890 + components: + - type: Transform + pos: 27.5,54.5 + parent: 1 + - uid: 6891 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 6892 + components: + - type: Transform + pos: 28.5,55.5 + parent: 1 + - uid: 6893 + components: + - type: Transform + pos: 28.5,56.5 + parent: 1 + - uid: 6894 + components: + - type: Transform + pos: 28.5,57.5 + parent: 1 + - uid: 6895 + components: + - type: Transform + pos: 27.5,57.5 + parent: 1 + - uid: 6896 + components: + - type: Transform + pos: 26.5,57.5 + parent: 1 + - uid: 6897 + components: + - type: Transform + pos: 25.5,57.5 + parent: 1 +- proto: CableHV + entities: + - uid: 2396 + components: + - type: Transform + pos: 36.5,29.5 + parent: 1 + - uid: 3695 + components: + - type: Transform + pos: 72.5,40.5 + parent: 1 + - uid: 3944 + components: + - type: Transform + pos: 37.5,28.5 + parent: 1 + - uid: 3945 + components: + - type: Transform + pos: 38.5,28.5 + parent: 1 + - uid: 3946 + components: + - type: Transform + pos: 39.5,28.5 + parent: 1 + - uid: 3947 + components: + - type: Transform + pos: 37.5,29.5 + parent: 1 + - uid: 3948 + components: + - type: Transform + pos: 38.5,29.5 + parent: 1 + - uid: 3949 + components: + - type: Transform + pos: 39.5,29.5 + parent: 1 + - uid: 3950 + components: + - type: Transform + pos: 38.5,30.5 + parent: 1 + - uid: 3951 + components: + - type: Transform + pos: 38.5,31.5 + parent: 1 + - uid: 3952 + components: + - type: Transform + pos: 38.5,32.5 + parent: 1 + - uid: 3953 + components: + - type: Transform + pos: 38.5,33.5 + parent: 1 + - uid: 3954 + components: + - type: Transform + pos: 39.5,33.5 + parent: 1 + - uid: 3955 + components: + - type: Transform + pos: 37.5,33.5 + parent: 1 + - uid: 3956 + components: + - type: Transform + pos: 36.5,33.5 + parent: 1 + - uid: 3957 + components: + - type: Transform + pos: 35.5,33.5 + parent: 1 + - uid: 3958 + components: + - type: Transform + pos: 34.5,33.5 + parent: 1 + - uid: 3959 + components: + - type: Transform + pos: 33.5,33.5 + parent: 1 + - uid: 3960 + components: + - type: Transform + pos: 32.5,33.5 + parent: 1 + - uid: 3961 + components: + - type: Transform + pos: 40.5,33.5 + parent: 1 + - uid: 3962 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - uid: 3963 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1 + - uid: 3964 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1 + - uid: 3965 + components: + - type: Transform + pos: 32.5,38.5 + parent: 1 + - uid: 3966 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1 + - uid: 3967 + components: + - type: Transform + pos: 32.5,37.5 + parent: 1 + - uid: 3968 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1 + - uid: 3969 + components: + - type: Transform + pos: 32.5,41.5 + parent: 1 + - uid: 3970 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 3971 + components: + - type: Transform + pos: 32.5,43.5 + parent: 1 + - uid: 3972 + components: + - type: Transform + pos: 33.5,37.5 + parent: 1 + - uid: 3973 + components: + - type: Transform + pos: 34.5,37.5 + parent: 1 + - uid: 3974 + components: + - type: Transform + pos: 35.5,37.5 + parent: 1 + - uid: 3975 + components: + - type: Transform + pos: 36.5,37.5 + parent: 1 + - uid: 3976 + components: + - type: Transform + pos: 36.5,38.5 + parent: 1 + - uid: 3977 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1 + - uid: 3986 + components: + - type: Transform + pos: 36.5,26.5 + parent: 1 + - uid: 3987 + components: + - type: Transform + pos: 37.5,26.5 + parent: 1 + - uid: 3988 + components: + - type: Transform + pos: 39.5,26.5 + parent: 1 + - uid: 3989 + components: + - type: Transform + pos: 40.5,26.5 + parent: 1 + - uid: 3990 + components: + - type: Transform + pos: 39.5,24.5 + parent: 1 + - uid: 3991 + components: + - type: Transform + pos: 40.5,24.5 + parent: 1 + - uid: 3992 + components: + - type: Transform + pos: 37.5,24.5 + parent: 1 + - uid: 3993 + components: + - type: Transform + pos: 36.5,24.5 + parent: 1 + - uid: 3994 + components: + - type: Transform + pos: 38.5,24.5 + parent: 1 + - uid: 3995 + components: + - type: Transform + pos: 38.5,25.5 + parent: 1 + - uid: 3996 + components: + - type: Transform + pos: 38.5,26.5 + parent: 1 + - uid: 3997 + components: + - type: Transform + pos: 37.5,27.5 + parent: 1 + - uid: 3998 + components: + - type: Transform + pos: 38.5,27.5 + parent: 1 + - uid: 3999 + components: + - type: Transform + pos: 39.5,27.5 + parent: 1 + - uid: 4000 + components: + - type: Transform + pos: 36.5,25.5 + parent: 1 + - uid: 4001 + components: + - type: Transform + pos: 40.5,25.5 + parent: 1 + - uid: 4008 + components: + - type: Transform + pos: 34.5,29.5 + parent: 1 + - uid: 4009 + components: + - type: Transform + pos: 33.5,29.5 + parent: 1 + - uid: 4010 + components: + - type: Transform + pos: 35.5,29.5 + parent: 1 + - uid: 4012 + components: + - type: Transform + pos: 39.5,25.5 + parent: 1 + - uid: 4013 + components: + - type: Transform + pos: 37.5,25.5 + parent: 1 + - uid: 4022 + components: + - type: Transform + pos: 32.5,29.5 + parent: 1 + - uid: 4023 + components: + - type: Transform + pos: 30.5,29.5 + parent: 1 + - uid: 4024 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 4025 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 4026 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 4027 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 4028 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 4029 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1 + - uid: 4030 + components: + - type: Transform + pos: 29.5,33.5 + parent: 1 + - uid: 4032 + components: + - type: Transform + pos: 27.5,34.5 + parent: 1 + - uid: 4034 + components: + - type: Transform + pos: 28.5,34.5 + parent: 1 + - uid: 4035 + components: + - type: Transform + pos: 26.5,34.5 + parent: 1 + - uid: 4036 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 4042 + components: + - type: Transform + pos: 41.5,33.5 + parent: 1 + - uid: 4043 + components: + - type: Transform + pos: 42.5,33.5 + parent: 1 + - uid: 4044 + components: + - type: Transform + pos: 43.5,33.5 + parent: 1 + - uid: 4045 + components: + - type: Transform + pos: 44.5,33.5 + parent: 1 + - uid: 4046 + components: + - type: Transform + pos: 45.5,33.5 + parent: 1 + - uid: 4047 + components: + - type: Transform + pos: 46.5,33.5 + parent: 1 + - uid: 4048 + components: + - type: Transform + pos: 48.5,33.5 + parent: 1 + - uid: 4049 + components: + - type: Transform + pos: 47.5,33.5 + parent: 1 + - uid: 4050 + components: + - type: Transform + pos: 48.5,34.5 + parent: 1 + - uid: 4051 + components: + - type: Transform + pos: 48.5,35.5 + parent: 1 + - uid: 4052 + components: + - type: Transform + pos: 48.5,36.5 + parent: 1 + - uid: 4053 + components: + - type: Transform + pos: 48.5,37.5 + parent: 1 + - uid: 4054 + components: + - type: Transform + pos: 48.5,38.5 + parent: 1 + - uid: 4055 + components: + - type: Transform + pos: 40.5,29.5 + parent: 1 + - uid: 4056 + components: + - type: Transform + pos: 41.5,29.5 + parent: 1 + - uid: 4057 + components: + - type: Transform + pos: 42.5,29.5 + parent: 1 + - uid: 4058 + components: + - type: Transform + pos: 43.5,29.5 + parent: 1 + - uid: 4059 + components: + - type: Transform + pos: 43.5,28.5 + parent: 1 + - uid: 4060 + components: + - type: Transform + pos: 44.5,28.5 + parent: 1 + - uid: 4061 + components: + - type: Transform + pos: 45.5,28.5 + parent: 1 + - uid: 4062 + components: + - type: Transform + pos: 46.5,28.5 + parent: 1 + - uid: 4063 + components: + - type: Transform + pos: 47.5,28.5 + parent: 1 + - uid: 4064 + components: + - type: Transform + pos: 48.5,28.5 + parent: 1 + - uid: 4065 + components: + - type: Transform + pos: 48.5,27.5 + parent: 1 + - uid: 4066 + components: + - type: Transform + pos: 48.5,26.5 + parent: 1 + - uid: 4067 + components: + - type: Transform + pos: 48.5,25.5 + parent: 1 + - uid: 4068 + components: + - type: Transform + pos: 48.5,24.5 + parent: 1 + - uid: 4069 + components: + - type: Transform + pos: 48.5,22.5 + parent: 1 + - uid: 4070 + components: + - type: Transform + pos: 48.5,23.5 + parent: 1 + - uid: 4071 + components: + - type: Transform + pos: 47.5,22.5 + parent: 1 + - uid: 4072 + components: + - type: Transform + pos: 46.5,22.5 + parent: 1 + - uid: 4073 + components: + - type: Transform + pos: 45.5,22.5 + parent: 1 + - uid: 4074 + components: + - type: Transform + pos: 49.5,38.5 + parent: 1 + - uid: 4075 + components: + - type: Transform + pos: 50.5,38.5 + parent: 1 + - uid: 4076 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1 + - uid: 4077 + components: + - type: Transform + pos: 52.5,38.5 + parent: 1 + - uid: 4078 + components: + - type: Transform + pos: 53.5,38.5 + parent: 1 + - uid: 4079 + components: + - type: Transform + pos: 55.5,38.5 + parent: 1 + - uid: 4080 + components: + - type: Transform + pos: 56.5,38.5 + parent: 1 + - uid: 4081 + components: + - type: Transform + pos: 57.5,38.5 + parent: 1 + - uid: 4082 + components: + - type: Transform + pos: 58.5,38.5 + parent: 1 + - uid: 4083 + components: + - type: Transform + pos: 54.5,38.5 + parent: 1 + - uid: 4084 + components: + - type: Transform + pos: 60.5,38.5 + parent: 1 + - uid: 4085 + components: + - type: Transform + pos: 61.5,38.5 + parent: 1 + - uid: 4086 + components: + - type: Transform + pos: 59.5,38.5 + parent: 1 + - uid: 4087 + components: + - type: Transform + pos: 61.5,37.5 + parent: 1 + - uid: 4088 + components: + - type: Transform + pos: 61.5,36.5 + parent: 1 + - uid: 4089 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - uid: 4090 + components: + - type: Transform + pos: 61.5,34.5 + parent: 1 + - uid: 4091 + components: + - type: Transform + pos: 61.5,33.5 + parent: 1 + - uid: 4092 + components: + - type: Transform + pos: 60.5,33.5 + parent: 1 + - uid: 4093 + components: + - type: Transform + pos: 59.5,33.5 + parent: 1 + - uid: 4094 + components: + - type: Transform + pos: 59.5,34.5 + parent: 1 + - uid: 4095 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1 + - uid: 4096 + components: + - type: Transform + pos: 48.5,40.5 + parent: 1 + - uid: 4097 + components: + - type: Transform + pos: 48.5,41.5 + parent: 1 + - uid: 4098 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 + - uid: 4099 + components: + - type: Transform + pos: 48.5,43.5 + parent: 1 + - uid: 4100 + components: + - type: Transform + pos: 48.5,44.5 + parent: 1 + - uid: 4101 + components: + - type: Transform + pos: 48.5,46.5 + parent: 1 + - uid: 4102 + components: + - type: Transform + pos: 48.5,47.5 + parent: 1 + - uid: 4103 + components: + - type: Transform + pos: 48.5,48.5 + parent: 1 + - uid: 4104 + components: + - type: Transform + pos: 48.5,49.5 + parent: 1 + - uid: 4105 + components: + - type: Transform + pos: 48.5,50.5 + parent: 1 + - uid: 4106 + components: + - type: Transform + pos: 48.5,51.5 + parent: 1 + - uid: 4107 + components: + - type: Transform + pos: 48.5,52.5 + parent: 1 + - uid: 4108 + components: + - type: Transform + pos: 48.5,53.5 + parent: 1 + - uid: 4109 + components: + - type: Transform + pos: 48.5,45.5 + parent: 1 + - uid: 4110 + components: + - type: Transform + pos: 48.5,54.5 + parent: 1 + - uid: 4111 + components: + - type: Transform + pos: 48.5,57.5 + parent: 1 + - uid: 4112 + components: + - type: Transform + pos: 48.5,55.5 + parent: 1 + - uid: 4113 + components: + - type: Transform + pos: 48.5,58.5 + parent: 1 + - uid: 4114 + components: + - type: Transform + pos: 48.5,56.5 + parent: 1 + - uid: 4115 + components: + - type: Transform + pos: 49.5,58.5 + parent: 1 + - uid: 4116 + components: + - type: Transform + pos: 50.5,58.5 + parent: 1 + - uid: 4117 + components: + - type: Transform + pos: 51.5,58.5 + parent: 1 + - uid: 4118 + components: + - type: Transform + pos: 52.5,58.5 + parent: 1 + - uid: 4119 + components: + - type: Transform + pos: 53.5,58.5 + parent: 1 + - uid: 4120 + components: + - type: Transform + pos: 55.5,58.5 + parent: 1 + - uid: 4121 + components: + - type: Transform + pos: 56.5,58.5 + parent: 1 + - uid: 4122 + components: + - type: Transform + pos: 58.5,58.5 + parent: 1 + - uid: 4123 + components: + - type: Transform + pos: 54.5,58.5 + parent: 1 + - uid: 4124 + components: + - type: Transform + pos: 59.5,58.5 + parent: 1 + - uid: 4125 + components: + - type: Transform + pos: 60.5,58.5 + parent: 1 + - uid: 4126 + components: + - type: Transform + pos: 57.5,58.5 + parent: 1 + - uid: 4127 + components: + - type: Transform + pos: 61.5,58.5 + parent: 1 + - uid: 4128 + components: + - type: Transform + pos: 61.5,59.5 + parent: 1 + - uid: 4129 + components: + - type: Transform + pos: 61.5,60.5 + parent: 1 + - uid: 4130 + components: + - type: Transform + pos: 61.5,61.5 + parent: 1 + - uid: 4131 + components: + - type: Transform + pos: 61.5,62.5 + parent: 1 + - uid: 4132 + components: + - type: Transform + pos: 61.5,63.5 + parent: 1 + - uid: 4133 + components: + - type: Transform + pos: 60.5,63.5 + parent: 1 + - uid: 4134 + components: + - type: Transform + pos: 59.5,63.5 + parent: 1 + - uid: 4135 + components: + - type: Transform + pos: 59.5,62.5 + parent: 1 + - uid: 4136 + components: + - type: Transform + pos: 61.5,64.5 + parent: 1 + - uid: 4137 + components: + - type: Transform + pos: 61.5,65.5 + parent: 1 + - uid: 4138 + components: + - type: Transform + pos: 61.5,66.5 + parent: 1 + - uid: 4139 + components: + - type: Transform + pos: 60.5,66.5 + parent: 1 + - uid: 4140 + components: + - type: Transform + pos: 60.5,67.5 + parent: 1 + - uid: 4141 + components: + - type: Transform + pos: 60.5,68.5 + parent: 1 + - uid: 4142 + components: + - type: Transform + pos: 60.5,69.5 + parent: 1 + - uid: 4143 + components: + - type: Transform + pos: 60.5,71.5 + parent: 1 + - uid: 4144 + components: + - type: Transform + pos: 60.5,70.5 + parent: 1 + - uid: 4145 + components: + - type: Transform + pos: 59.5,71.5 + parent: 1 + - uid: 4146 + components: + - type: Transform + pos: 59.5,72.5 + parent: 1 + - uid: 4147 + components: + - type: Transform + pos: 59.5,73.5 + parent: 1 + - uid: 4148 + components: + - type: Transform + pos: 58.5,73.5 + parent: 1 + - uid: 4149 + components: + - type: Transform + pos: 57.5,73.5 + parent: 1 + - uid: 4150 + components: + - type: Transform + pos: 56.5,73.5 + parent: 1 + - uid: 4151 + components: + - type: Transform + pos: 55.5,73.5 + parent: 1 + - uid: 4152 + components: + - type: Transform + pos: 53.5,73.5 + parent: 1 + - uid: 4153 + components: + - type: Transform + pos: 52.5,73.5 + parent: 1 + - uid: 4154 + components: + - type: Transform + pos: 54.5,73.5 + parent: 1 + - uid: 4155 + components: + - type: Transform + pos: 52.5,74.5 + parent: 1 + - uid: 4156 + components: + - type: Transform + pos: 52.5,75.5 + parent: 1 + - uid: 4157 + components: + - type: Transform + pos: 52.5,76.5 + parent: 1 + - uid: 4158 + components: + - type: Transform + pos: 52.5,77.5 + parent: 1 + - uid: 4159 + components: + - type: Transform + pos: 51.5,77.5 + parent: 1 + - uid: 4160 + components: + - type: Transform + pos: 58.5,74.5 + parent: 1 + - uid: 4161 + components: + - type: Transform + pos: 58.5,75.5 + parent: 1 + - uid: 4162 + components: + - type: Transform + pos: 58.5,76.5 + parent: 1 + - uid: 4163 + components: + - type: Transform + pos: 58.5,77.5 + parent: 1 + - uid: 4164 + components: + - type: Transform + pos: 59.5,77.5 + parent: 1 + - uid: 4165 + components: + - type: Transform + pos: 62.5,58.5 + parent: 1 + - uid: 4166 + components: + - type: Transform + pos: 63.5,58.5 + parent: 1 + - uid: 4167 + components: + - type: Transform + pos: 64.5,58.5 + parent: 1 + - uid: 4168 + components: + - type: Transform + pos: 65.5,58.5 + parent: 1 + - uid: 4169 + components: + - type: Transform + pos: 66.5,58.5 + parent: 1 + - uid: 4170 + components: + - type: Transform + pos: 67.5,58.5 + parent: 1 + - uid: 4171 + components: + - type: Transform + pos: 69.5,58.5 + parent: 1 + - uid: 4172 + components: + - type: Transform + pos: 70.5,58.5 + parent: 1 + - uid: 4173 + components: + - type: Transform + pos: 71.5,58.5 + parent: 1 + - uid: 4174 + components: + - type: Transform + pos: 68.5,58.5 + parent: 1 + - uid: 4175 + components: + - type: Transform + pos: 71.5,57.5 + parent: 1 + - uid: 4176 + components: + - type: Transform + pos: 71.5,56.5 + parent: 1 + - uid: 4177 + components: + - type: Transform + pos: 71.5,55.5 + parent: 1 + - uid: 4178 + components: + - type: Transform + pos: 71.5,54.5 + parent: 1 + - uid: 4179 + components: + - type: Transform + pos: 71.5,53.5 + parent: 1 + - uid: 4180 + components: + - type: Transform + pos: 71.5,51.5 + parent: 1 + - uid: 4181 + components: + - type: Transform + pos: 71.5,50.5 + parent: 1 + - uid: 4182 + components: + - type: Transform + pos: 71.5,49.5 + parent: 1 + - uid: 4183 + components: + - type: Transform + pos: 71.5,48.5 + parent: 1 + - uid: 4184 + components: + - type: Transform + pos: 71.5,47.5 + parent: 1 + - uid: 4185 + components: + - type: Transform + pos: 71.5,46.5 + parent: 1 + - uid: 4186 + components: + - type: Transform + pos: 71.5,52.5 + parent: 1 + - uid: 4187 + components: + - type: Transform + pos: 71.5,44.5 + parent: 1 + - uid: 4188 + components: + - type: Transform + pos: 71.5,43.5 + parent: 1 + - uid: 4189 + components: + - type: Transform + pos: 71.5,42.5 + parent: 1 + - uid: 4190 + components: + - type: Transform + pos: 71.5,45.5 + parent: 1 + - uid: 4191 + components: + - type: Transform + pos: 71.5,41.5 + parent: 1 + - uid: 4192 + components: + - type: Transform + pos: 71.5,40.5 + parent: 1 + - uid: 4193 + components: + - type: Transform + pos: 71.5,38.5 + parent: 1 + - uid: 4194 + components: + - type: Transform + pos: 71.5,39.5 + parent: 1 + - uid: 4195 + components: + - type: Transform + pos: 70.5,38.5 + parent: 1 + - uid: 4196 + components: + - type: Transform + pos: 69.5,38.5 + parent: 1 + - uid: 4197 + components: + - type: Transform + pos: 68.5,38.5 + parent: 1 + - uid: 4198 + components: + - type: Transform + pos: 67.5,38.5 + parent: 1 + - uid: 4199 + components: + - type: Transform + pos: 66.5,38.5 + parent: 1 + - uid: 4200 + components: + - type: Transform + pos: 65.5,38.5 + parent: 1 + - uid: 4201 + components: + - type: Transform + pos: 64.5,38.5 + parent: 1 + - uid: 4202 + components: + - type: Transform + pos: 62.5,38.5 + parent: 1 + - uid: 4203 + components: + - type: Transform + pos: 63.5,38.5 + parent: 1 + - uid: 4204 + components: + - type: Transform + pos: 73.5,40.5 + parent: 1 + - uid: 4205 + components: + - type: Transform + pos: 74.5,40.5 + parent: 1 + - uid: 4206 + components: + - type: Transform + pos: 75.5,40.5 + parent: 1 + - uid: 4207 + components: + - type: Transform + pos: 76.5,40.5 + parent: 1 + - uid: 4208 + components: + - type: Transform + pos: 77.5,40.5 + parent: 1 + - uid: 4209 + components: + - type: Transform + pos: 78.5,40.5 + parent: 1 + - uid: 4210 + components: + - type: Transform + pos: 79.5,40.5 + parent: 1 + - uid: 4211 + components: + - type: Transform + pos: 81.5,40.5 + parent: 1 + - uid: 4212 + components: + - type: Transform + pos: 82.5,40.5 + parent: 1 + - uid: 4213 + components: + - type: Transform + pos: 83.5,40.5 + parent: 1 + - uid: 4214 + components: + - type: Transform + pos: 80.5,40.5 + parent: 1 + - uid: 4216 + components: + - type: Transform + pos: 83.5,39.5 + parent: 1 + - uid: 4217 + components: + - type: Transform + pos: 83.5,38.5 + parent: 1 + - uid: 4218 + components: + - type: Transform + pos: 83.5,37.5 + parent: 1 + - uid: 4219 + components: + - type: Transform + pos: 83.5,35.5 + parent: 1 + - uid: 4220 + components: + - type: Transform + pos: 83.5,34.5 + parent: 1 + - uid: 4221 + components: + - type: Transform + pos: 83.5,33.5 + parent: 1 + - uid: 4222 + components: + - type: Transform + pos: 83.5,32.5 + parent: 1 + - uid: 4223 + components: + - type: Transform + pos: 83.5,31.5 + parent: 1 + - uid: 4224 + components: + - type: Transform + pos: 83.5,30.5 + parent: 1 + - uid: 4225 + components: + - type: Transform + pos: 83.5,29.5 + parent: 1 + - uid: 4226 + components: + - type: Transform + pos: 83.5,36.5 + parent: 1 + - uid: 4227 + components: + - type: Transform + pos: 83.5,28.5 + parent: 1 + - uid: 4228 + components: + - type: Transform + pos: 83.5,26.5 + parent: 1 + - uid: 4229 + components: + - type: Transform + pos: 83.5,25.5 + parent: 1 + - uid: 4230 + components: + - type: Transform + pos: 83.5,27.5 + parent: 1 + - uid: 4231 + components: + - type: Transform + pos: 82.5,25.5 + parent: 1 + - uid: 4232 + components: + - type: Transform + pos: 81.5,25.5 + parent: 1 + - uid: 4233 + components: + - type: Transform + pos: 80.5,25.5 + parent: 1 + - uid: 4234 + components: + - type: Transform + pos: 79.5,25.5 + parent: 1 + - uid: 4235 + components: + - type: Transform + pos: 78.5,25.5 + parent: 1 + - uid: 4236 + components: + - type: Transform + pos: 78.5,24.5 + parent: 1 + - uid: 4237 + components: + - type: Transform + pos: 78.5,23.5 + parent: 1 + - uid: 4238 + components: + - type: Transform + pos: 78.5,22.5 + parent: 1 + - uid: 4239 + components: + - type: Transform + pos: 79.5,22.5 + parent: 1 + - uid: 4240 + components: + - type: Transform + pos: 72.5,56.5 + parent: 1 + - uid: 4241 + components: + - type: Transform + pos: 73.5,56.5 + parent: 1 + - uid: 4242 + components: + - type: Transform + pos: 74.5,56.5 + parent: 1 + - uid: 4243 + components: + - type: Transform + pos: 75.5,56.5 + parent: 1 + - uid: 4244 + components: + - type: Transform + pos: 76.5,56.5 + parent: 1 + - uid: 4245 + components: + - type: Transform + pos: 77.5,56.5 + parent: 1 + - uid: 4246 + components: + - type: Transform + pos: 78.5,56.5 + parent: 1 + - uid: 4247 + components: + - type: Transform + pos: 80.5,56.5 + parent: 1 + - uid: 4248 + components: + - type: Transform + pos: 81.5,56.5 + parent: 1 + - uid: 4249 + components: + - type: Transform + pos: 82.5,56.5 + parent: 1 + - uid: 4250 + components: + - type: Transform + pos: 83.5,56.5 + parent: 1 + - uid: 4251 + components: + - type: Transform + pos: 79.5,56.5 + parent: 1 + - uid: 4252 + components: + - type: Transform + pos: 83.5,57.5 + parent: 1 + - uid: 4253 + components: + - type: Transform + pos: 83.5,58.5 + parent: 1 + - uid: 4254 + components: + - type: Transform + pos: 83.5,59.5 + parent: 1 + - uid: 4255 + components: + - type: Transform + pos: 83.5,60.5 + parent: 1 + - uid: 4256 + components: + - type: Transform + pos: 83.5,62.5 + parent: 1 + - uid: 4257 + components: + - type: Transform + pos: 83.5,63.5 + parent: 1 + - uid: 4258 + components: + - type: Transform + pos: 83.5,64.5 + parent: 1 + - uid: 4259 + components: + - type: Transform + pos: 83.5,65.5 + parent: 1 + - uid: 4260 + components: + - type: Transform + pos: 83.5,66.5 + parent: 1 + - uid: 4261 + components: + - type: Transform + pos: 83.5,67.5 + parent: 1 + - uid: 4262 + components: + - type: Transform + pos: 83.5,61.5 + parent: 1 + - uid: 4263 + components: + - type: Transform + pos: 83.5,68.5 + parent: 1 + - uid: 4264 + components: + - type: Transform + pos: 83.5,70.5 + parent: 1 + - uid: 4265 + components: + - type: Transform + pos: 83.5,69.5 + parent: 1 + - uid: 4266 + components: + - type: Transform + pos: 83.5,71.5 + parent: 1 + - uid: 4267 + components: + - type: Transform + pos: 82.5,71.5 + parent: 1 + - uid: 4268 + components: + - type: Transform + pos: 81.5,71.5 + parent: 1 + - uid: 4269 + components: + - type: Transform + pos: 80.5,71.5 + parent: 1 + - uid: 4270 + components: + - type: Transform + pos: 79.5,71.5 + parent: 1 + - uid: 4271 + components: + - type: Transform + pos: 79.5,72.5 + parent: 1 + - uid: 4272 + components: + - type: Transform + pos: 79.5,73.5 + parent: 1 + - uid: 4273 + components: + - type: Transform + pos: 79.5,74.5 + parent: 1 + - uid: 4274 + components: + - type: Transform + pos: 80.5,74.5 + parent: 1 + - uid: 4275 + components: + - type: Transform + pos: 32.5,44.5 + parent: 1 + - uid: 4276 + components: + - type: Transform + pos: 32.5,45.5 + parent: 1 + - uid: 4277 + components: + - type: Transform + pos: 32.5,46.5 + parent: 1 + - uid: 4278 + components: + - type: Transform + pos: 32.5,47.5 + parent: 1 + - uid: 4279 + components: + - type: Transform + pos: 32.5,48.5 + parent: 1 + - uid: 4280 + components: + - type: Transform + pos: 32.5,49.5 + parent: 1 + - uid: 4281 + components: + - type: Transform + pos: 31.5,49.5 + parent: 1 + - uid: 4282 + components: + - type: Transform + pos: 30.5,49.5 + parent: 1 + - uid: 4283 + components: + - type: Transform + pos: 29.5,49.5 + parent: 1 + - uid: 4284 + components: + - type: Transform + pos: 28.5,49.5 + parent: 1 + - uid: 4285 + components: + - type: Transform + pos: 27.5,49.5 + parent: 1 + - uid: 4286 + components: + - type: Transform + pos: 26.5,49.5 + parent: 1 + - uid: 4287 + components: + - type: Transform + pos: 24.5,49.5 + parent: 1 + - uid: 4288 + components: + - type: Transform + pos: 23.5,49.5 + parent: 1 + - uid: 4289 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - uid: 4290 + components: + - type: Transform + pos: 21.5,49.5 + parent: 1 + - uid: 4291 + components: + - type: Transform + pos: 20.5,49.5 + parent: 1 + - uid: 4292 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 4293 + components: + - type: Transform + pos: 25.5,49.5 + parent: 1 + - uid: 4294 + components: + - type: Transform + pos: 19.5,50.5 + parent: 1 + - uid: 4295 + components: + - type: Transform + pos: 19.5,51.5 + parent: 1 + - uid: 4296 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 4297 + components: + - type: Transform + pos: 19.5,53.5 + parent: 1 + - uid: 4298 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - uid: 4299 + components: + - type: Transform + pos: 21.5,53.5 + parent: 1 + - uid: 4300 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 4759 + components: + - type: Transform + pos: 22.5,54.5 + parent: 1 + - uid: 4760 + components: + - type: Transform + pos: 22.5,55.5 + parent: 1 +- proto: CableMV + entities: + - uid: 217 + components: + - type: Transform + pos: 54.5,78.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 71.5,48.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 72.5,48.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 79.5,73.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 74.5,48.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: 79.5,74.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: 79.5,72.5 + parent: 1 + - uid: 1836 + components: + - type: Transform + pos: 73.5,48.5 + parent: 1 + - uid: 3331 + components: + - type: Transform + pos: 62.5,68.5 + parent: 1 + - uid: 3981 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1 + - uid: 4347 + components: + - type: Transform + pos: 55.5,74.5 + parent: 1 + - uid: 4360 + components: + - type: Transform + pos: 51.5,77.5 + parent: 1 + - uid: 4361 + components: + - type: Transform + pos: 52.5,77.5 + parent: 1 + - uid: 4362 + components: + - type: Transform + pos: 52.5,76.5 + parent: 1 + - uid: 4363 + components: + - type: Transform + pos: 52.5,75.5 + parent: 1 + - uid: 4364 + components: + - type: Transform + pos: 52.5,74.5 + parent: 1 + - uid: 4365 + components: + - type: Transform + pos: 52.5,73.5 + parent: 1 + - uid: 4366 + components: + - type: Transform + pos: 51.5,73.5 + parent: 1 + - uid: 4367 + components: + - type: Transform + pos: 50.5,73.5 + parent: 1 + - uid: 4368 + components: + - type: Transform + pos: 49.5,73.5 + parent: 1 + - uid: 4369 + components: + - type: Transform + pos: 53.5,73.5 + parent: 1 + - uid: 4370 + components: + - type: Transform + pos: 54.5,73.5 + parent: 1 + - uid: 4371 + components: + - type: Transform + pos: 55.5,73.5 + parent: 1 + - uid: 4372 + components: + - type: Transform + pos: 55.5,75.5 + parent: 1 + - uid: 4373 + components: + - type: Transform + pos: 55.5,76.5 + parent: 1 + - uid: 4374 + components: + - type: Transform + pos: 55.5,78.5 + parent: 1 + - uid: 4376 + components: + - type: Transform + pos: 53.5,78.5 + parent: 1 + - uid: 4377 + components: + - type: Transform + pos: 55.5,77.5 + parent: 1 + - uid: 4421 + components: + - type: Transform + pos: 59.5,77.5 + parent: 1 + - uid: 4422 + components: + - type: Transform + pos: 58.5,77.5 + parent: 1 + - uid: 4424 + components: + - type: Transform + pos: 58.5,76.5 + parent: 1 + - uid: 4425 + components: + - type: Transform + pos: 58.5,75.5 + parent: 1 + - uid: 4426 + components: + - type: Transform + pos: 58.5,74.5 + parent: 1 + - uid: 4427 + components: + - type: Transform + pos: 58.5,73.5 + parent: 1 + - uid: 4428 + components: + - type: Transform + pos: 59.5,73.5 + parent: 1 + - uid: 4429 + components: + - type: Transform + pos: 59.5,72.5 + parent: 1 + - uid: 4430 + components: + - type: Transform + pos: 59.5,71.5 + parent: 1 + - uid: 4431 + components: + - type: Transform + pos: 60.5,71.5 + parent: 1 + - uid: 4432 + components: + - type: Transform + pos: 60.5,70.5 + parent: 1 + - uid: 4433 + components: + - type: Transform + pos: 60.5,69.5 + parent: 1 + - uid: 4434 + components: + - type: Transform + pos: 60.5,68.5 + parent: 1 + - uid: 4435 + components: + - type: Transform + pos: 60.5,67.5 + parent: 1 + - uid: 4436 + components: + - type: Transform + pos: 59.5,67.5 + parent: 1 + - uid: 4437 + components: + - type: Transform + pos: 58.5,67.5 + parent: 1 + - uid: 4438 + components: + - type: Transform + pos: 60.5,66.5 + parent: 1 + - uid: 4439 + components: + - type: Transform + pos: 61.5,66.5 + parent: 1 + - uid: 4440 + components: + - type: Transform + pos: 62.5,66.5 + parent: 1 + - uid: 4441 + components: + - type: Transform + pos: 63.5,66.5 + parent: 1 + - uid: 4442 + components: + - type: Transform + pos: 61.5,68.5 + parent: 1 + - uid: 4462 + components: + - type: Transform + pos: 48.5,73.5 + parent: 1 + - uid: 4463 + components: + - type: Transform + pos: 48.5,74.5 + parent: 1 + - uid: 4464 + components: + - type: Transform + pos: 48.5,75.5 + parent: 1 + - uid: 4465 + components: + - type: Transform + pos: 48.5,76.5 + parent: 1 + - uid: 4466 + components: + - type: Transform + pos: 48.5,77.5 + parent: 1 + - uid: 4467 + components: + - type: Transform + pos: 48.5,78.5 + parent: 1 + - uid: 4468 + components: + - type: Transform + pos: 48.5,79.5 + parent: 1 + - uid: 4469 + components: + - type: Transform + pos: 48.5,80.5 + parent: 1 + - uid: 4470 + components: + - type: Transform + pos: 48.5,81.5 + parent: 1 + - uid: 4471 + components: + - type: Transform + pos: 47.5,81.5 + parent: 1 + - uid: 4472 + components: + - type: Transform + pos: 47.5,82.5 + parent: 1 + - uid: 4473 + components: + - type: Transform + pos: 48.5,72.5 + parent: 1 + - uid: 4474 + components: + - type: Transform + pos: 48.5,71.5 + parent: 1 + - uid: 4475 + components: + - type: Transform + pos: 48.5,70.5 + parent: 1 + - uid: 4476 + components: + - type: Transform + pos: 47.5,70.5 + parent: 1 + - uid: 4477 + components: + - type: Transform + pos: 46.5,70.5 + parent: 1 + - uid: 4478 + components: + - type: Transform + pos: 45.5,70.5 + parent: 1 + - uid: 4479 + components: + - type: Transform + pos: 44.5,70.5 + parent: 1 + - uid: 4480 + components: + - type: Transform + pos: 43.5,70.5 + parent: 1 + - uid: 4481 + components: + - type: Transform + pos: 42.5,70.5 + parent: 1 + - uid: 4482 + components: + - type: Transform + pos: 41.5,70.5 + parent: 1 + - uid: 4483 + components: + - type: Transform + pos: 41.5,69.5 + parent: 1 + - uid: 4484 + components: + - type: Transform + pos: 41.5,68.5 + parent: 1 + - uid: 4485 + components: + - type: Transform + pos: 43.5,69.5 + parent: 1 + - uid: 4486 + components: + - type: Transform + pos: 43.5,68.5 + parent: 1 + - uid: 4487 + components: + - type: Transform + pos: 43.5,67.5 + parent: 1 + - uid: 4488 + components: + - type: Transform + pos: 43.5,66.5 + parent: 1 + - uid: 4489 + components: + - type: Transform + pos: 43.5,65.5 + parent: 1 + - uid: 4490 + components: + - type: Transform + pos: 44.5,65.5 + parent: 1 + - uid: 4491 + components: + - type: Transform + pos: 45.5,65.5 + parent: 1 + - uid: 4492 + components: + - type: Transform + pos: 46.5,65.5 + parent: 1 + - uid: 4493 + components: + - type: Transform + pos: 47.5,65.5 + parent: 1 + - uid: 4494 + components: + - type: Transform + pos: 48.5,65.5 + parent: 1 + - uid: 4495 + components: + - type: Transform + pos: 48.5,66.5 + parent: 1 + - uid: 4789 + components: + - type: Transform + pos: 22.5,55.5 + parent: 1 + - uid: 4790 + components: + - type: Transform + pos: 22.5,54.5 + parent: 1 + - uid: 4791 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 4792 + components: + - type: Transform + pos: 21.5,53.5 + parent: 1 + - uid: 4793 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - uid: 4794 + components: + - type: Transform + pos: 19.5,53.5 + parent: 1 + - uid: 4795 + components: + - type: Transform + pos: 18.5,53.5 + parent: 1 + - uid: 4796 + components: + - type: Transform + pos: 17.5,53.5 + parent: 1 + - uid: 4797 + components: + - type: Transform + pos: 17.5,52.5 + parent: 1 + - uid: 4798 + components: + - type: Transform + pos: 17.5,51.5 + parent: 1 + - uid: 4799 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 4800 + components: + - type: Transform + pos: 19.5,51.5 + parent: 1 + - uid: 4801 + components: + - type: Transform + pos: 19.5,50.5 + parent: 1 + - uid: 4802 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 4803 + components: + - type: Transform + pos: 19.5,48.5 + parent: 1 + - uid: 4804 + components: + - type: Transform + pos: 19.5,47.5 + parent: 1 + - uid: 4805 + components: + - type: Transform + pos: 19.5,46.5 + parent: 1 + - uid: 4806 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1 + - uid: 4808 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1 + - uid: 4810 + components: + - type: Transform + pos: 20.5,49.5 + parent: 1 + - uid: 4811 + components: + - type: Transform + pos: 21.5,49.5 + parent: 1 + - uid: 4812 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - uid: 4813 + components: + - type: Transform + pos: 23.5,49.5 + parent: 1 + - uid: 4814 + components: + - type: Transform + pos: 24.5,49.5 + parent: 1 + - uid: 4815 + components: + - type: Transform + pos: 25.5,49.5 + parent: 1 + - uid: 4816 + components: + - type: Transform + pos: 26.5,49.5 + parent: 1 + - uid: 4817 + components: + - type: Transform + pos: 28.5,49.5 + parent: 1 + - uid: 4818 + components: + - type: Transform + pos: 29.5,49.5 + parent: 1 + - uid: 4819 + components: + - type: Transform + pos: 30.5,49.5 + parent: 1 + - uid: 4820 + components: + - type: Transform + pos: 27.5,49.5 + parent: 1 + - uid: 4821 + components: + - type: Transform + pos: 30.5,50.5 + parent: 1 + - uid: 4822 + components: + - type: Transform + pos: 31.5,49.5 + parent: 1 + - uid: 4823 + components: + - type: Transform + pos: 32.5,49.5 + parent: 1 + - uid: 4824 + components: + - type: Transform + pos: 33.5,49.5 + parent: 1 + - uid: 4825 + components: + - type: Transform + pos: 33.5,50.5 + parent: 1 + - uid: 4826 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 + - uid: 4827 + components: + - type: Transform + pos: 33.5,52.5 + parent: 1 + - uid: 4828 + components: + - type: Transform + pos: 33.5,53.5 + parent: 1 + - uid: 4829 + components: + - type: Transform + pos: 33.5,54.5 + parent: 1 + - uid: 4830 + components: + - type: Transform + pos: 33.5,55.5 + parent: 1 + - uid: 4831 + components: + - type: Transform + pos: 33.5,56.5 + parent: 1 + - uid: 4832 + components: + - type: Transform + pos: 33.5,57.5 + parent: 1 + - uid: 4833 + components: + - type: Transform + pos: 34.5,57.5 + parent: 1 + - uid: 4834 + components: + - type: Transform + pos: 34.5,58.5 + parent: 1 + - uid: 4835 + components: + - type: Transform + pos: 18.5,44.5 + parent: 1 + - uid: 4837 + components: + - type: Transform + pos: 17.5,44.5 + parent: 1 + - uid: 4838 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1 + - uid: 4839 + components: + - type: Transform + pos: 59.5,34.5 + parent: 1 + - uid: 4840 + components: + - type: Transform + pos: 59.5,33.5 + parent: 1 + - uid: 4841 + components: + - type: Transform + pos: 60.5,33.5 + parent: 1 + - uid: 4842 + components: + - type: Transform + pos: 61.5,33.5 + parent: 1 + - uid: 4843 + components: + - type: Transform + pos: 61.5,34.5 + parent: 1 + - uid: 4844 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - uid: 4845 + components: + - type: Transform + pos: 61.5,36.5 + parent: 1 + - uid: 4846 + components: + - type: Transform + pos: 61.5,37.5 + parent: 1 + - uid: 4847 + components: + - type: Transform + pos: 61.5,38.5 + parent: 1 + - uid: 4848 + components: + - type: Transform + pos: 62.5,38.5 + parent: 1 + - uid: 4849 + components: + - type: Transform + pos: 62.5,39.5 + parent: 1 + - uid: 4850 + components: + - type: Transform + pos: 62.5,40.5 + parent: 1 + - uid: 4851 + components: + - type: Transform + pos: 62.5,41.5 + parent: 1 + - uid: 4852 + components: + - type: Transform + pos: 62.5,42.5 + parent: 1 + - uid: 4853 + components: + - type: Transform + pos: 62.5,43.5 + parent: 1 + - uid: 4854 + components: + - type: Transform + pos: 61.5,58.5 + parent: 1 + - uid: 4855 + components: + - type: Transform + pos: 62.5,44.5 + parent: 1 + - uid: 4856 + components: + - type: Transform + pos: 59.5,44.5 + parent: 1 + - uid: 4857 + components: + - type: Transform + pos: 60.5,44.5 + parent: 1 + - uid: 4858 + components: + - type: Transform + pos: 58.5,44.5 + parent: 1 + - uid: 4859 + components: + - type: Transform + pos: 58.5,45.5 + parent: 1 + - uid: 4860 + components: + - type: Transform + pos: 58.5,46.5 + parent: 1 + - uid: 4861 + components: + - type: Transform + pos: 61.5,44.5 + parent: 1 + - uid: 4862 + components: + - type: Transform + pos: 62.5,56.5 + parent: 1 + - uid: 4863 + components: + - type: Transform + pos: 62.5,58.5 + parent: 1 + - uid: 4864 + components: + - type: Transform + pos: 62.5,57.5 + parent: 1 + - uid: 4865 + components: + - type: Transform + pos: 62.5,55.5 + parent: 1 + - uid: 4866 + components: + - type: Transform + pos: 62.5,54.5 + parent: 1 + - uid: 4867 + components: + - type: Transform + pos: 62.5,53.5 + parent: 1 + - uid: 4868 + components: + - type: Transform + pos: 62.5,52.5 + parent: 1 + - uid: 4869 + components: + - type: Transform + pos: 61.5,52.5 + parent: 1 + - uid: 4870 + components: + - type: Transform + pos: 60.5,52.5 + parent: 1 + - uid: 4871 + components: + - type: Transform + pos: 59.5,52.5 + parent: 1 + - uid: 4872 + components: + - type: Transform + pos: 58.5,52.5 + parent: 1 + - uid: 4873 + components: + - type: Transform + pos: 58.5,51.5 + parent: 1 + - uid: 4874 + components: + - type: Transform + pos: 58.5,50.5 + parent: 1 + - uid: 4876 + components: + - type: Transform + pos: 60.5,38.5 + parent: 1 + - uid: 4877 + components: + - type: Transform + pos: 59.5,38.5 + parent: 1 + - uid: 4878 + components: + - type: Transform + pos: 58.5,38.5 + parent: 1 + - uid: 4879 + components: + - type: Transform + pos: 57.5,38.5 + parent: 1 + - uid: 4880 + components: + - type: Transform + pos: 56.5,38.5 + parent: 1 + - uid: 4881 + components: + - type: Transform + pos: 55.5,38.5 + parent: 1 + - uid: 4882 + components: + - type: Transform + pos: 54.5,38.5 + parent: 1 + - uid: 4883 + components: + - type: Transform + pos: 54.5,37.5 + parent: 1 + - uid: 4884 + components: + - type: Transform + pos: 54.5,36.5 + parent: 1 + - uid: 4885 + components: + - type: Transform + pos: 54.5,35.5 + parent: 1 + - uid: 4886 + components: + - type: Transform + pos: 54.5,34.5 + parent: 1 + - uid: 4887 + components: + - type: Transform + pos: 54.5,33.5 + parent: 1 + - uid: 4888 + components: + - type: Transform + pos: 54.5,32.5 + parent: 1 + - uid: 4889 + components: + - type: Transform + pos: 54.5,31.5 + parent: 1 + - uid: 4890 + components: + - type: Transform + pos: 54.5,28.5 + parent: 1 + - uid: 4891 + components: + - type: Transform + pos: 54.5,29.5 + parent: 1 + - uid: 4892 + components: + - type: Transform + pos: 54.5,27.5 + parent: 1 + - uid: 4893 + components: + - type: Transform + pos: 54.5,30.5 + parent: 1 + - uid: 4894 + components: + - type: Transform + pos: 53.5,27.5 + parent: 1 + - uid: 4917 + components: + - type: Transform + pos: 61.5,32.5 + parent: 1 + - uid: 4918 + components: + - type: Transform + pos: 61.5,31.5 + parent: 1 + - uid: 4919 + components: + - type: Transform + pos: 61.5,30.5 + parent: 1 + - uid: 4920 + components: + - type: Transform + pos: 61.5,29.5 + parent: 1 + - uid: 4921 + components: + - type: Transform + pos: 61.5,27.5 + parent: 1 + - uid: 4922 + components: + - type: Transform + pos: 61.5,28.5 + parent: 1 + - uid: 4923 + components: + - type: Transform + pos: 61.5,25.5 + parent: 1 + - uid: 4924 + components: + - type: Transform + pos: 61.5,24.5 + parent: 1 + - uid: 4925 + components: + - type: Transform + pos: 61.5,26.5 + parent: 1 + - uid: 4926 + components: + - type: Transform + pos: 61.5,23.5 + parent: 1 + - uid: 4927 + components: + - type: Transform + pos: 61.5,22.5 + parent: 1 + - uid: 4928 + components: + - type: Transform + pos: 61.5,21.5 + parent: 1 + - uid: 4929 + components: + - type: Transform + pos: 60.5,21.5 + parent: 1 + - uid: 4930 + components: + - type: Transform + pos: 59.5,21.5 + parent: 1 + - uid: 4931 + components: + - type: Transform + pos: 58.5,21.5 + parent: 1 + - uid: 4932 + components: + - type: Transform + pos: 57.5,21.5 + parent: 1 + - uid: 4933 + components: + - type: Transform + pos: 56.5,21.5 + parent: 1 + - uid: 4934 + components: + - type: Transform + pos: 55.5,21.5 + parent: 1 + - uid: 4935 + components: + - type: Transform + pos: 55.5,20.5 + parent: 1 + - uid: 4936 + components: + - type: Transform + pos: 55.5,19.5 + parent: 1 + - uid: 4938 + components: + - type: Transform + pos: 45.5,22.5 + parent: 1 + - uid: 4939 + components: + - type: Transform + pos: 46.5,22.5 + parent: 1 + - uid: 4940 + components: + - type: Transform + pos: 47.5,22.5 + parent: 1 + - uid: 4941 + components: + - type: Transform + pos: 48.5,22.5 + parent: 1 + - uid: 4942 + components: + - type: Transform + pos: 48.5,23.5 + parent: 1 + - uid: 4943 + components: + - type: Transform + pos: 48.5,24.5 + parent: 1 + - uid: 4944 + components: + - type: Transform + pos: 48.5,25.5 + parent: 1 + - uid: 4945 + components: + - type: Transform + pos: 48.5,26.5 + parent: 1 + - uid: 4946 + components: + - type: Transform + pos: 48.5,27.5 + parent: 1 + - uid: 4947 + components: + - type: Transform + pos: 49.5,27.5 + parent: 1 + - uid: 4948 + components: + - type: Transform + pos: 50.5,27.5 + parent: 1 + - uid: 5002 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1 + - uid: 5003 + components: + - type: Transform + pos: 54.5,40.5 + parent: 1 + - uid: 5041 + components: + - type: Transform + pos: 57.5,67.5 + parent: 1 + - uid: 5042 + components: + - type: Transform + pos: 56.5,67.5 + parent: 1 + - uid: 5043 + components: + - type: Transform + pos: 55.5,67.5 + parent: 1 + - uid: 5044 + components: + - type: Transform + pos: 54.5,67.5 + parent: 1 + - uid: 5045 + components: + - type: Transform + pos: 53.5,67.5 + parent: 1 + - uid: 5046 + components: + - type: Transform + pos: 52.5,67.5 + parent: 1 + - uid: 5047 + components: + - type: Transform + pos: 51.5,67.5 + parent: 1 + - uid: 5048 + components: + - type: Transform + pos: 50.5,67.5 + parent: 1 + - uid: 5087 + components: + - type: Transform + pos: 61.5,59.5 + parent: 1 + - uid: 5088 + components: + - type: Transform + pos: 61.5,60.5 + parent: 1 + - uid: 5089 + components: + - type: Transform + pos: 61.5,61.5 + parent: 1 + - uid: 5090 + components: + - type: Transform + pos: 61.5,62.5 + parent: 1 + - uid: 5091 + components: + - type: Transform + pos: 61.5,63.5 + parent: 1 + - uid: 5092 + components: + - type: Transform + pos: 60.5,63.5 + parent: 1 + - uid: 5093 + components: + - type: Transform + pos: 59.5,63.5 + parent: 1 + - uid: 5094 + components: + - type: Transform + pos: 59.5,62.5 + parent: 1 + - uid: 5095 + components: + - type: Transform + pos: 60.5,58.5 + parent: 1 + - uid: 5096 + components: + - type: Transform + pos: 59.5,58.5 + parent: 1 + - uid: 5097 + components: + - type: Transform + pos: 58.5,58.5 + parent: 1 + - uid: 5098 + components: + - type: Transform + pos: 57.5,58.5 + parent: 1 + - uid: 5099 + components: + - type: Transform + pos: 56.5,58.5 + parent: 1 + - uid: 5100 + components: + - type: Transform + pos: 55.5,58.5 + parent: 1 + - uid: 5101 + components: + - type: Transform + pos: 54.5,58.5 + parent: 1 + - uid: 5102 + components: + - type: Transform + pos: 54.5,57.5 + parent: 1 + - uid: 5103 + components: + - type: Transform + pos: 54.5,56.5 + parent: 1 + - uid: 5184 + components: + - type: Transform + pos: 63.5,58.5 + parent: 1 + - uid: 5185 + components: + - type: Transform + pos: 64.5,58.5 + parent: 1 + - uid: 5186 + components: + - type: Transform + pos: 65.5,58.5 + parent: 1 + - uid: 5187 + components: + - type: Transform + pos: 66.5,58.5 + parent: 1 + - uid: 5188 + components: + - type: Transform + pos: 67.5,58.5 + parent: 1 + - uid: 5189 + components: + - type: Transform + pos: 68.5,58.5 + parent: 1 + - uid: 5190 + components: + - type: Transform + pos: 69.5,58.5 + parent: 1 + - uid: 5191 + components: + - type: Transform + pos: 70.5,58.5 + parent: 1 + - uid: 5192 + components: + - type: Transform + pos: 71.5,58.5 + parent: 1 + - uid: 5193 + components: + - type: Transform + pos: 71.5,57.5 + parent: 1 + - uid: 5194 + components: + - type: Transform + pos: 71.5,56.5 + parent: 1 + - uid: 5195 + components: + - type: Transform + pos: 71.5,55.5 + parent: 1 + - uid: 5196 + components: + - type: Transform + pos: 71.5,54.5 + parent: 1 + - uid: 5197 + components: + - type: Transform + pos: 71.5,53.5 + parent: 1 + - uid: 5198 + components: + - type: Transform + pos: 71.5,52.5 + parent: 1 + - uid: 5199 + components: + - type: Transform + pos: 71.5,50.5 + parent: 1 + - uid: 5200 + components: + - type: Transform + pos: 71.5,49.5 + parent: 1 + - uid: 5202 + components: + - type: Transform + pos: 71.5,51.5 + parent: 1 + - uid: 5206 + components: + - type: Transform + pos: 75.5,48.5 + parent: 1 + - uid: 5208 + components: + - type: Transform + pos: 75.5,49.5 + parent: 1 + - uid: 5209 + components: + - type: Transform + pos: 75.5,50.5 + parent: 1 + - uid: 5210 + components: + - type: Transform + pos: 75.5,51.5 + parent: 1 + - uid: 5211 + components: + - type: Transform + pos: 76.5,48.5 + parent: 1 + - uid: 5212 + components: + - type: Transform + pos: 74.5,52.5 + parent: 1 + - uid: 5265 + components: + - type: Transform + pos: 75.5,52.5 + parent: 1 + - uid: 5266 + components: + - type: Transform + pos: 76.5,52.5 + parent: 1 + - uid: 5267 + components: + - type: Transform + pos: 77.5,52.5 + parent: 1 + - uid: 5268 + components: + - type: Transform + pos: 78.5,52.5 + parent: 1 + - uid: 5269 + components: + - type: Transform + pos: 79.5,52.5 + parent: 1 + - uid: 5270 + components: + - type: Transform + pos: 75.5,47.5 + parent: 1 + - uid: 5271 + components: + - type: Transform + pos: 75.5,46.5 + parent: 1 + - uid: 5272 + components: + - type: Transform + pos: 75.5,45.5 + parent: 1 + - uid: 5273 + components: + - type: Transform + pos: 75.5,44.5 + parent: 1 + - uid: 5274 + components: + - type: Transform + pos: 76.5,44.5 + parent: 1 + - uid: 5275 + components: + - type: Transform + pos: 77.5,44.5 + parent: 1 + - uid: 5276 + components: + - type: Transform + pos: 78.5,44.5 + parent: 1 + - uid: 5277 + components: + - type: Transform + pos: 79.5,44.5 + parent: 1 + - uid: 5278 + components: + - type: Transform + pos: 77.5,48.5 + parent: 1 + - uid: 5279 + components: + - type: Transform + pos: 78.5,48.5 + parent: 1 + - uid: 5280 + components: + - type: Transform + pos: 79.5,48.5 + parent: 1 + - uid: 5281 + components: + - type: Transform + pos: 80.5,48.5 + parent: 1 + - uid: 5282 + components: + - type: Transform + pos: 80.5,49.5 + parent: 1 + - uid: 5283 + components: + - type: Transform + pos: 80.5,47.5 + parent: 1 + - uid: 5366 + components: + - type: Transform + pos: 64.5,66.5 + parent: 1 + - uid: 5367 + components: + - type: Transform + pos: 65.5,66.5 + parent: 1 + - uid: 5368 + components: + - type: Transform + pos: 66.5,66.5 + parent: 1 + - uid: 5369 + components: + - type: Transform + pos: 67.5,66.5 + parent: 1 + - uid: 5370 + components: + - type: Transform + pos: 68.5,66.5 + parent: 1 + - uid: 5371 + components: + - type: Transform + pos: 69.5,66.5 + parent: 1 + - uid: 5372 + components: + - type: Transform + pos: 71.5,66.5 + parent: 1 + - uid: 5373 + components: + - type: Transform + pos: 70.5,66.5 + parent: 1 + - uid: 5374 + components: + - type: Transform + pos: 71.5,65.5 + parent: 1 + - uid: 5375 + components: + - type: Transform + pos: 71.5,64.5 + parent: 1 + - uid: 5378 + components: + - type: Transform + pos: 71.5,67.5 + parent: 1 + - uid: 5379 + components: + - type: Transform + pos: 71.5,68.5 + parent: 1 + - uid: 5380 + components: + - type: Transform + pos: 71.5,69.5 + parent: 1 + - uid: 5381 + components: + - type: Transform + pos: 71.5,70.5 + parent: 1 + - uid: 5382 + components: + - type: Transform + pos: 71.5,71.5 + parent: 1 + - uid: 5383 + components: + - type: Transform + pos: 71.5,72.5 + parent: 1 + - uid: 5384 + components: + - type: Transform + pos: 71.5,73.5 + parent: 1 + - uid: 5385 + components: + - type: Transform + pos: 71.5,75.5 + parent: 1 + - uid: 5386 + components: + - type: Transform + pos: 71.5,76.5 + parent: 1 + - uid: 5387 + components: + - type: Transform + pos: 71.5,77.5 + parent: 1 + - uid: 5388 + components: + - type: Transform + pos: 71.5,74.5 + parent: 1 + - uid: 5389 + components: + - type: Transform + pos: 72.5,77.5 + parent: 1 + - uid: 5390 + components: + - type: Transform + pos: 72.5,78.5 + parent: 1 + - uid: 5391 + components: + - type: Transform + pos: 72.5,79.5 + parent: 1 + - uid: 5392 + components: + - type: Transform + pos: 71.5,79.5 + parent: 1 + - uid: 5393 + components: + - type: Transform + pos: 70.5,79.5 + parent: 1 + - uid: 5394 + components: + - type: Transform + pos: 70.5,80.5 + parent: 1 + - uid: 5395 + components: + - type: Transform + pos: 69.5,80.5 + parent: 1 + - uid: 5396 + components: + - type: Transform + pos: 69.5,81.5 + parent: 1 + - uid: 5397 + components: + - type: Transform + pos: 68.5,80.5 + parent: 1 + - uid: 5398 + components: + - type: Transform + pos: 67.5,80.5 + parent: 1 + - uid: 5399 + components: + - type: Transform + pos: 66.5,80.5 + parent: 1 + - uid: 5400 + components: + - type: Transform + pos: 66.5,78.5 + parent: 1 + - uid: 5401 + components: + - type: Transform + pos: 66.5,79.5 + parent: 1 + - uid: 5402 + components: + - type: Transform + pos: 65.5,78.5 + parent: 1 + - uid: 5403 + components: + - type: Transform + pos: 64.5,78.5 + parent: 1 + - uid: 5404 + components: + - type: Transform + pos: 64.5,77.5 + parent: 1 + - uid: 5405 + components: + - type: Transform + pos: 64.5,76.5 + parent: 1 + - uid: 5406 + components: + - type: Transform + pos: 66.5,77.5 + parent: 1 + - uid: 5407 + components: + - type: Transform + pos: 67.5,77.5 + parent: 1 + - uid: 5408 + components: + - type: Transform + pos: 68.5,77.5 + parent: 1 + - uid: 5409 + components: + - type: Transform + pos: 66.5,76.5 + parent: 1 + - uid: 5410 + components: + - type: Transform + pos: 66.5,75.5 + parent: 1 + - uid: 5411 + components: + - type: Transform + pos: 67.5,75.5 + parent: 1 + - uid: 5412 + components: + - type: Transform + pos: 68.5,75.5 + parent: 1 + - uid: 5413 + components: + - type: Transform + pos: 68.5,74.5 + parent: 1 + - uid: 5414 + components: + - type: Transform + pos: 64.5,65.5 + parent: 1 + - uid: 5415 + components: + - type: Transform + pos: 64.5,64.5 + parent: 1 + - uid: 5416 + components: + - type: Transform + pos: 64.5,63.5 + parent: 1 + - uid: 5417 + components: + - type: Transform + pos: 64.5,62.5 + parent: 1 + - uid: 5418 + components: + - type: Transform + pos: 64.5,60.5 + parent: 1 + - uid: 5419 + components: + - type: Transform + pos: 64.5,61.5 + parent: 1 + - uid: 5420 + components: + - type: Transform + pos: 63.5,60.5 + parent: 1 + - uid: 5421 + components: + - type: Transform + pos: 66.5,65.5 + parent: 1 + - uid: 5422 + components: + - type: Transform + pos: 66.5,64.5 + parent: 1 + - uid: 5423 + components: + - type: Transform + pos: 66.5,63.5 + parent: 1 + - uid: 5424 + components: + - type: Transform + pos: 66.5,62.5 + parent: 1 + - uid: 5425 + components: + - type: Transform + pos: 66.5,61.5 + parent: 1 + - uid: 5426 + components: + - type: Transform + pos: 66.5,60.5 + parent: 1 + - uid: 5427 + components: + - type: Transform + pos: 67.5,60.5 + parent: 1 + - uid: 5430 + components: + - type: Transform + pos: 63.5,67.5 + parent: 1 + - uid: 5431 + components: + - type: Transform + pos: 63.5,68.5 + parent: 1 + - uid: 5432 + components: + - type: Transform + pos: 67.5,67.5 + parent: 1 + - uid: 5433 + components: + - type: Transform + pos: 67.5,68.5 + parent: 1 + - uid: 5556 + components: + - type: Transform + pos: 48.5,28.5 + parent: 1 + - uid: 5557 + components: + - type: Transform + pos: 47.5,28.5 + parent: 1 + - uid: 5558 + components: + - type: Transform + pos: 46.5,28.5 + parent: 1 + - uid: 5559 + components: + - type: Transform + pos: 45.5,28.5 + parent: 1 + - uid: 5560 + components: + - type: Transform + pos: 44.5,28.5 + parent: 1 + - uid: 5561 + components: + - type: Transform + pos: 43.5,28.5 + parent: 1 + - uid: 5562 + components: + - type: Transform + pos: 43.5,30.5 + parent: 1 + - uid: 5563 + components: + - type: Transform + pos: 42.5,29.5 + parent: 1 + - uid: 5564 + components: + - type: Transform + pos: 41.5,29.5 + parent: 1 + - uid: 5565 + components: + - type: Transform + pos: 40.5,29.5 + parent: 1 + - uid: 5566 + components: + - type: Transform + pos: 39.5,29.5 + parent: 1 + - uid: 5567 + components: + - type: Transform + pos: 38.5,29.5 + parent: 1 + - uid: 5568 + components: + - type: Transform + pos: 37.5,29.5 + parent: 1 + - uid: 5569 + components: + - type: Transform + pos: 36.5,29.5 + parent: 1 + - uid: 5570 + components: + - type: Transform + pos: 36.5,30.5 + parent: 1 + - uid: 5571 + components: + - type: Transform + pos: 35.5,30.5 + parent: 1 + - uid: 5609 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 5610 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 5611 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1 + - uid: 5629 + components: + - type: Transform + pos: 32.5,41.5 + parent: 1 + - uid: 5630 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1 + - uid: 5631 + components: + - type: Transform + pos: 28.5,35.5 + parent: 1 + - uid: 5632 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1 + - uid: 5633 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1 + - uid: 5634 + components: + - type: Transform + pos: 29.5,36.5 + parent: 1 + - uid: 5635 + components: + - type: Transform + pos: 29.5,37.5 + parent: 1 + - uid: 5636 + components: + - type: Transform + pos: 30.5,37.5 + parent: 1 + - uid: 5637 + components: + - type: Transform + pos: 31.5,37.5 + parent: 1 + - uid: 5638 + components: + - type: Transform + pos: 32.5,37.5 + parent: 1 + - uid: 5639 + components: + - type: Transform + pos: 32.5,38.5 + parent: 1 + - uid: 5640 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1 + - uid: 5641 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 5644 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1 + - uid: 5645 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1 + - uid: 5646 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - uid: 5647 + components: + - type: Transform + pos: 32.5,33.5 + parent: 1 + - uid: 5648 + components: + - type: Transform + pos: 33.5,33.5 + parent: 1 + - uid: 5649 + components: + - type: Transform + pos: 34.5,33.5 + parent: 1 + - uid: 5650 + components: + - type: Transform + pos: 35.5,33.5 + parent: 1 + - uid: 5651 + components: + - type: Transform + pos: 36.5,33.5 + parent: 1 + - uid: 5652 + components: + - type: Transform + pos: 36.5,34.5 + parent: 1 + - uid: 5653 + components: + - type: Transform + pos: 36.5,35.5 + parent: 1 + - uid: 5655 + components: + - type: Transform + pos: 32.5,43.5 + parent: 1 + - uid: 5656 + components: + - type: Transform + pos: 31.5,43.5 + parent: 1 + - uid: 5657 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 + - uid: 5658 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - uid: 5700 + components: + - type: Transform + pos: 43.5,29.5 + parent: 1 + - uid: 5701 + components: + - type: Transform + pos: 43.5,31.5 + parent: 1 + - uid: 5702 + components: + - type: Transform + pos: 43.5,32.5 + parent: 1 + - uid: 5703 + components: + - type: Transform + pos: 43.5,33.5 + parent: 1 + - uid: 5704 + components: + - type: Transform + pos: 43.5,34.5 + parent: 1 + - uid: 5705 + components: + - type: Transform + pos: 43.5,35.5 + parent: 1 + - uid: 5707 + components: + - type: Transform + pos: 43.5,36.5 + parent: 1 + - uid: 5708 + components: + - type: Transform + pos: 42.5,37.5 + parent: 1 + - uid: 5709 + components: + - type: Transform + pos: 42.5,38.5 + parent: 1 + - uid: 5710 + components: + - type: Transform + pos: 42.5,39.5 + parent: 1 + - uid: 5711 + components: + - type: Transform + pos: 41.5,39.5 + parent: 1 + - uid: 5712 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1 + - uid: 5729 + components: + - type: Transform + pos: 42.5,36.5 + parent: 1 + - uid: 5794 + components: + - type: Transform + pos: 40.5,40.5 + parent: 1 + - uid: 5795 + components: + - type: Transform + pos: 39.5,40.5 + parent: 1 + - uid: 5970 + components: + - type: Transform + pos: 80.5,74.5 + parent: 1 + - uid: 5981 + components: + - type: Transform + pos: 79.5,71.5 + parent: 1 + - uid: 5982 + components: + - type: Transform + pos: 80.5,71.5 + parent: 1 + - uid: 5983 + components: + - type: Transform + pos: 81.5,71.5 + parent: 1 + - uid: 5984 + components: + - type: Transform + pos: 82.5,71.5 + parent: 1 + - uid: 5985 + components: + - type: Transform + pos: 83.5,71.5 + parent: 1 + - uid: 5986 + components: + - type: Transform + pos: 83.5,70.5 + parent: 1 + - uid: 5987 + components: + - type: Transform + pos: 83.5,69.5 + parent: 1 + - uid: 5988 + components: + - type: Transform + pos: 83.5,68.5 + parent: 1 + - uid: 5989 + components: + - type: Transform + pos: 83.5,67.5 + parent: 1 + - uid: 5990 + components: + - type: Transform + pos: 83.5,65.5 + parent: 1 + - uid: 5991 + components: + - type: Transform + pos: 83.5,64.5 + parent: 1 + - uid: 5992 + components: + - type: Transform + pos: 83.5,63.5 + parent: 1 + - uid: 5993 + components: + - type: Transform + pos: 83.5,62.5 + parent: 1 + - uid: 5994 + components: + - type: Transform + pos: 83.5,66.5 + parent: 1 + - uid: 5995 + components: + - type: Transform + pos: 83.5,61.5 + parent: 1 + - uid: 5996 + components: + - type: Transform + pos: 83.5,60.5 + parent: 1 + - uid: 5997 + components: + - type: Transform + pos: 83.5,59.5 + parent: 1 + - uid: 5999 + components: + - type: Transform + pos: 82.5,59.5 + parent: 1 + - uid: 6000 + components: + - type: Transform + pos: 81.5,59.5 + parent: 1 + - uid: 6015 + components: + - type: Transform + pos: 83.5,26.5 + parent: 1 + - uid: 6039 + components: + - type: Transform + pos: 79.5,22.5 + parent: 1 + - uid: 6040 + components: + - type: Transform + pos: 78.5,22.5 + parent: 1 + - uid: 6041 + components: + - type: Transform + pos: 78.5,23.5 + parent: 1 + - uid: 6042 + components: + - type: Transform + pos: 78.5,24.5 + parent: 1 + - uid: 6043 + components: + - type: Transform + pos: 78.5,25.5 + parent: 1 + - uid: 6044 + components: + - type: Transform + pos: 79.5,25.5 + parent: 1 + - uid: 6045 + components: + - type: Transform + pos: 80.5,25.5 + parent: 1 + - uid: 6046 + components: + - type: Transform + pos: 81.5,25.5 + parent: 1 + - uid: 6047 + components: + - type: Transform + pos: 82.5,25.5 + parent: 1 + - uid: 6048 + components: + - type: Transform + pos: 83.5,25.5 + parent: 1 + - uid: 6049 + components: + - type: Transform + pos: 83.5,27.5 + parent: 1 + - uid: 6050 + components: + - type: Transform + pos: 83.5,28.5 + parent: 1 + - uid: 6051 + components: + - type: Transform + pos: 83.5,29.5 + parent: 1 + - uid: 6052 + components: + - type: Transform + pos: 83.5,31.5 + parent: 1 + - uid: 6053 + components: + - type: Transform + pos: 83.5,32.5 + parent: 1 + - uid: 6054 + components: + - type: Transform + pos: 83.5,33.5 + parent: 1 + - uid: 6055 + components: + - type: Transform + pos: 83.5,34.5 + parent: 1 + - uid: 6056 + components: + - type: Transform + pos: 83.5,35.5 + parent: 1 + - uid: 6057 + components: + - type: Transform + pos: 83.5,37.5 + parent: 1 + - uid: 6058 + components: + - type: Transform + pos: 83.5,30.5 + parent: 1 + - uid: 6059 + components: + - type: Transform + pos: 83.5,36.5 + parent: 1 + - uid: 6060 + components: + - type: Transform + pos: 82.5,37.5 + parent: 1 + - uid: 6061 + components: + - type: Transform + pos: 81.5,37.5 + parent: 1 + - uid: 6063 + components: + - type: Transform + pos: 83.5,38.5 + parent: 1 + - uid: 6064 + components: + - type: Transform + pos: 83.5,39.5 + parent: 1 + - uid: 6065 + components: + - type: Transform + pos: 83.5,40.5 + parent: 1 + - uid: 6066 + components: + - type: Transform + pos: 83.5,41.5 + parent: 1 + - uid: 6067 + components: + - type: Transform + pos: 83.5,43.5 + parent: 1 + - uid: 6068 + components: + - type: Transform + pos: 83.5,44.5 + parent: 1 + - uid: 6069 + components: + - type: Transform + pos: 83.5,45.5 + parent: 1 + - uid: 6070 + components: + - type: Transform + pos: 83.5,46.5 + parent: 1 + - uid: 6071 + components: + - type: Transform + pos: 83.5,47.5 + parent: 1 + - uid: 6072 + components: + - type: Transform + pos: 83.5,49.5 + parent: 1 + - uid: 6073 + components: + - type: Transform + pos: 83.5,42.5 + parent: 1 + - uid: 6074 + components: + - type: Transform + pos: 83.5,48.5 + parent: 1 + - uid: 6075 + components: + - type: Transform + pos: 84.5,49.5 + parent: 1 + - uid: 6076 + components: + - type: Transform + pos: 85.5,49.5 + parent: 1 + - uid: 6077 + components: + - type: Transform + pos: 86.5,49.5 + parent: 1 + - uid: 6078 + components: + - type: Transform + pos: 87.5,49.5 + parent: 1 + - uid: 6079 + components: + - type: Transform + pos: 87.5,48.5 + parent: 1 + - uid: 6080 + components: + - type: Transform + pos: 87.5,47.5 + parent: 1 + - uid: 6081 + components: + - type: Transform + pos: 87.5,46.5 + parent: 1 + - uid: 6483 + components: + - type: Transform + pos: 77.5,25.5 + parent: 1 + - uid: 6484 + components: + - type: Transform + pos: 75.5,25.5 + parent: 1 + - uid: 6485 + components: + - type: Transform + pos: 74.5,25.5 + parent: 1 + - uid: 6486 + components: + - type: Transform + pos: 76.5,25.5 + parent: 1 + - uid: 6487 + components: + - type: Transform + pos: 74.5,24.5 + parent: 1 + - uid: 6488 + components: + - type: Transform + pos: 74.5,23.5 + parent: 1 + - uid: 6489 + components: + - type: Transform + pos: 74.5,22.5 + parent: 1 + - uid: 6490 + components: + - type: Transform + pos: 74.5,21.5 + parent: 1 + - uid: 6491 + components: + - type: Transform + pos: 74.5,20.5 + parent: 1 + - uid: 6492 + components: + - type: Transform + pos: 73.5,20.5 + parent: 1 + - uid: 6493 + components: + - type: Transform + pos: 72.5,20.5 + parent: 1 + - uid: 6494 + components: + - type: Transform + pos: 72.5,21.5 + parent: 1 + - uid: 6495 + components: + - type: Transform + pos: 72.5,22.5 + parent: 1 + - uid: 6496 + components: + - type: Transform + pos: 72.5,23.5 + parent: 1 + - uid: 6497 + components: + - type: Transform + pos: 71.5,23.5 + parent: 1 + - uid: 6498 + components: + - type: Transform + pos: 71.5,24.5 + parent: 1 + - uid: 6499 + components: + - type: Transform + pos: 71.5,25.5 + parent: 1 + - uid: 6500 + components: + - type: Transform + pos: 71.5,26.5 + parent: 1 + - uid: 6501 + components: + - type: Transform + pos: 71.5,27.5 + parent: 1 + - uid: 6502 + components: + - type: Transform + pos: 71.5,28.5 + parent: 1 + - uid: 6503 + components: + - type: Transform + pos: 71.5,29.5 + parent: 1 + - uid: 6504 + components: + - type: Transform + pos: 71.5,30.5 + parent: 1 + - uid: 6505 + components: + - type: Transform + pos: 71.5,31.5 + parent: 1 + - uid: 6506 + components: + - type: Transform + pos: 72.5,31.5 + parent: 1 + - uid: 6507 + components: + - type: Transform + pos: 73.5,31.5 + parent: 1 + - uid: 6509 + components: + - type: Transform + pos: 70.5,23.5 + parent: 1 + - uid: 6510 + components: + - type: Transform + pos: 70.5,22.5 + parent: 1 + - uid: 6538 + components: + - type: Transform + pos: 70.5,22.5 + parent: 1 + - uid: 6539 + components: + - type: Transform + pos: 70.5,21.5 + parent: 1 + - uid: 6540 + components: + - type: Transform + pos: 69.5,21.5 + parent: 1 + - uid: 6541 + components: + - type: Transform + pos: 68.5,21.5 + parent: 1 + - uid: 6542 + components: + - type: Transform + pos: 67.5,21.5 + parent: 1 + - uid: 6543 + components: + - type: Transform + pos: 66.5,21.5 + parent: 1 + - uid: 6544 + components: + - type: Transform + pos: 66.5,20.5 + parent: 1 + - uid: 6545 + components: + - type: Transform + pos: 65.5,20.5 + parent: 1 + - uid: 6546 + components: + - type: Transform + pos: 64.5,20.5 + parent: 1 + - uid: 6547 + components: + - type: Transform + pos: 64.5,19.5 + parent: 1 + - uid: 6548 + components: + - type: Transform + pos: 64.5,18.5 + parent: 1 + - uid: 6549 + components: + - type: Transform + pos: 62.5,18.5 + parent: 1 + - uid: 6550 + components: + - type: Transform + pos: 63.5,18.5 + parent: 1 + - uid: 6830 + components: + - type: Transform + pos: 34.5,55.5 + parent: 1 + - uid: 6831 + components: + - type: Transform + pos: 35.5,55.5 + parent: 1 + - uid: 6832 + components: + - type: Transform + pos: 36.5,55.5 + parent: 1 + - uid: 6833 + components: + - type: Transform + pos: 37.5,55.5 + parent: 1 + - uid: 6834 + components: + - type: Transform + pos: 38.5,55.5 + parent: 1 + - uid: 6835 + components: + - type: Transform + pos: 39.5,55.5 + parent: 1 + - uid: 6836 + components: + - type: Transform + pos: 39.5,54.5 + parent: 1 + - uid: 6837 + components: + - type: Transform + pos: 39.5,53.5 + parent: 1 + - uid: 6838 + components: + - type: Transform + pos: 39.5,52.5 + parent: 1 + - uid: 6839 + components: + - type: Transform + pos: 32.5,55.5 + parent: 1 + - uid: 6840 + components: + - type: Transform + pos: 31.5,55.5 + parent: 1 + - uid: 6841 + components: + - type: Transform + pos: 30.5,55.5 + parent: 1 + - uid: 6842 + components: + - type: Transform + pos: 29.5,55.5 + parent: 1 + - uid: 6843 + components: + - type: Transform + pos: 28.5,55.5 + parent: 1 + - uid: 6844 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 6845 + components: + - type: Transform + pos: 27.5,54.5 + parent: 1 + - uid: 6846 + components: + - type: Transform + pos: 26.5,54.5 + parent: 1 + - uid: 6847 + components: + - type: Transform + pos: 25.5,54.5 + parent: 1 + - uid: 6848 + components: + - type: Transform + pos: 25.5,53.5 + parent: 1 + - uid: 6849 + components: + - type: Transform + pos: 24.5,53.5 + parent: 1 + - uid: 6850 + components: + - type: Transform + pos: 32.5,57.5 + parent: 1 + - uid: 6851 + components: + - type: Transform + pos: 32.5,58.5 + parent: 1 + - uid: 6852 + components: + - type: Transform + pos: 32.5,59.5 + parent: 1 + - uid: 6853 + components: + - type: Transform + pos: 32.5,60.5 + parent: 1 + - uid: 6854 + components: + - type: Transform + pos: 32.5,60.5 + parent: 1 + - uid: 6855 + components: + - type: Transform + pos: 31.5,60.5 + parent: 1 + - uid: 6856 + components: + - type: Transform + pos: 31.5,61.5 + parent: 1 + - uid: 6857 + components: + - type: Transform + pos: 31.5,62.5 + parent: 1 + - uid: 6858 + components: + - type: Transform + pos: 31.5,63.5 + parent: 1 + - uid: 6859 + components: + - type: Transform + pos: 31.5,64.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 3941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,27.5 + parent: 1 + - uid: 3942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,27.5 + parent: 1 + - uid: 3943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,27.5 + parent: 1 + - uid: 4031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 1 +- proto: CargoPallet + entities: + - uid: 2005 + components: + - type: Transform + pos: 44.5,76.5 + parent: 1 + - uid: 2006 + components: + - type: Transform + pos: 45.5,76.5 + parent: 1 + - uid: 2007 + components: + - type: Transform + pos: 46.5,76.5 + parent: 1 + - uid: 2009 + components: + - type: Transform + pos: 43.5,76.5 + parent: 1 + - uid: 2010 + components: + - type: Transform + pos: 43.5,74.5 + parent: 1 + - uid: 2011 + components: + - type: Transform + pos: 44.5,74.5 + parent: 1 + - uid: 2012 + components: + - type: Transform + pos: 45.5,74.5 + parent: 1 + - uid: 2013 + components: + - type: Transform + pos: 46.5,74.5 + parent: 1 + - uid: 2014 + components: + - type: Transform + pos: 46.5,72.5 + parent: 1 + - uid: 2015 + components: + - type: Transform + pos: 45.5,72.5 + parent: 1 + - uid: 2016 + components: + - type: Transform + pos: 44.5,72.5 + parent: 1 + - uid: 2017 + components: + - type: Transform + pos: 43.5,72.5 + parent: 1 + - uid: 2018 + components: + - type: Transform + pos: 43.5,78.5 + parent: 1 + - uid: 2019 + components: + - type: Transform + pos: 44.5,78.5 + parent: 1 + - uid: 2020 + components: + - type: Transform + pos: 45.5,78.5 + parent: 1 + - uid: 2021 + components: + - type: Transform + pos: 46.5,78.5 + parent: 1 +- proto: Carpet + entities: + - uid: 2454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 1 + - uid: 2456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,45.5 + parent: 1 + - uid: 2534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 1 + - uid: 2535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 1 + - uid: 2536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,24.5 + parent: 1 + - uid: 2537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,25.5 + parent: 1 +- proto: CarpetGreen + entities: + - uid: 1988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,49.5 + parent: 1 + - uid: 1989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,48.5 + parent: 1 + - uid: 1990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,47.5 + parent: 1 + - uid: 1991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,49.5 + parent: 1 + - uid: 1992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,48.5 + parent: 1 + - uid: 1993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,49.5 + parent: 1 + - uid: 1994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,48.5 + parent: 1 + - uid: 1995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,47.5 + parent: 1 + - uid: 1996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,47.5 + parent: 1 + - uid: 2461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,35.5 + parent: 1 + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,34.5 + parent: 1 + - uid: 2463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,32.5 + parent: 1 + - uid: 2467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 1 + - uid: 2509 + components: + - type: Transform + pos: 53.5,35.5 + parent: 1 + - uid: 2518 + components: + - type: Transform + pos: 53.5,34.5 + parent: 1 + - uid: 2530 + components: + - type: Transform + pos: 53.5,32.5 + parent: 1 + - uid: 2734 + components: + - type: Transform + pos: 53.5,33.5 + parent: 1 + - uid: 6221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,57.5 + parent: 1 + - uid: 6222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,56.5 + parent: 1 + - uid: 6223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,57.5 + parent: 1 + - uid: 6224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,56.5 + parent: 1 + - uid: 6225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,57.5 + parent: 1 + - uid: 6226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,56.5 + parent: 1 + - uid: 6227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,57.5 + parent: 1 + - uid: 6228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,56.5 + parent: 1 + - uid: 6229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,57.5 + parent: 1 + - uid: 6230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,57.5 + parent: 1 + - uid: 6231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,56.5 + parent: 1 + - uid: 6232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,56.5 + parent: 1 + - uid: 6233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,55.5 + parent: 1 + - uid: 6234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,55.5 + parent: 1 + - uid: 6235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,55.5 + parent: 1 + - uid: 6236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,55.5 + parent: 1 + - uid: 6237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,55.5 + parent: 1 + - uid: 6238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,55.5 + parent: 1 +- proto: CarpetSBlue + entities: + - uid: 2538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 1 + - uid: 2539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,25.5 + parent: 1 + - uid: 2540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,25.5 + parent: 1 + - uid: 2541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,24.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 92 + components: + - type: Transform + pos: 22.5,52.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 78.5,72.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 77.5,72.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 75.5,72.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 76.5,72.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 22.5,54.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,83.5 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,29.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,49.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,47.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,24.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,23.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,22.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,21.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,21.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,21.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,21.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,21.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,21.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,21.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,21.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,21.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,20.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,19.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,22.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,23.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,24.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,26.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,27.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,29.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,30.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,32.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,33.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,25.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,23.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,24.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,25.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,25.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,25.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,24.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,25.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,25.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,25.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,25.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,71.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,71.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,71.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,71.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,63.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,64.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,66.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + pos: 52.5,73.5 + parent: 1 + - uid: 1718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,67.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,68.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,69.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,70.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + pos: 61.5,62.5 + parent: 1 + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,74.5 + parent: 1 + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,74.5 + parent: 1 + - uid: 1732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,74.5 + parent: 1 + - uid: 1734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,73.5 + parent: 1 + - uid: 1735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,75.5 + parent: 1 + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,48.5 + parent: 1 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,48.5 + parent: 1 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,48.5 + parent: 1 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,48.5 + parent: 1 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,48.5 + parent: 1 + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,48.5 + parent: 1 + - uid: 1799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,48.5 + parent: 1 + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,79.5 + parent: 1 + - uid: 1851 + components: + - type: Transform + pos: 86.5,43.5 + parent: 1 + - uid: 1853 + components: + - type: Transform + pos: 87.5,43.5 + parent: 1 + - uid: 1854 + components: + - type: Transform + pos: 87.5,45.5 + parent: 1 + - uid: 1855 + components: + - type: Transform + pos: 86.5,45.5 + parent: 1 + - uid: 1856 + components: + - type: Transform + pos: 86.5,51.5 + parent: 1 + - uid: 1857 + components: + - type: Transform + pos: 87.5,51.5 + parent: 1 + - uid: 1858 + components: + - type: Transform + pos: 87.5,53.5 + parent: 1 + - uid: 1859 + components: + - type: Transform + pos: 86.5,53.5 + parent: 1 + - uid: 1860 + components: + - type: Transform + pos: 63.5,13.5 + parent: 1 + - uid: 1862 + components: + - type: Transform + pos: 65.5,13.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,79.5 + parent: 1 + - uid: 1896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,74.5 + parent: 1 + - uid: 1897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,74.5 + parent: 1 + - uid: 1898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,76.5 + parent: 1 + - uid: 1899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,76.5 + parent: 1 + - uid: 2166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,34.5 + parent: 1 + - uid: 2368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,81.5 + parent: 1 + - uid: 2559 + components: + - type: Transform + pos: 60.5,71.5 + parent: 1 + - uid: 2560 + components: + - type: Transform + pos: 53.5,73.5 + parent: 1 + - uid: 2561 + components: + - type: Transform + pos: 54.5,73.5 + parent: 1 + - uid: 2563 + components: + - type: Transform + pos: 56.5,73.5 + parent: 1 + - uid: 2564 + components: + - type: Transform + pos: 57.5,73.5 + parent: 1 + - uid: 2565 + components: + - type: Transform + pos: 58.5,73.5 + parent: 1 + - uid: 2610 + components: + - type: Transform + pos: 61.5,18.5 + parent: 1 + - uid: 2630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,61.5 + parent: 1 + - uid: 2631 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 2632 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 2633 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 2634 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 2635 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 2636 + components: + - type: Transform + pos: 32.5,29.5 + parent: 1 + - uid: 2637 + components: + - type: Transform + pos: 33.5,29.5 + parent: 1 + - uid: 2762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,37.5 + parent: 1 + - uid: 2763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,37.5 + parent: 1 + - uid: 2765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,62.5 + parent: 1 + - uid: 2767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,63.5 + parent: 1 + - uid: 2916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,64.5 + parent: 1 + - uid: 3048 + components: + - type: Transform + pos: 56.5,18.5 + parent: 1 + - uid: 3049 + components: + - type: Transform + pos: 56.5,17.5 + parent: 1 + - uid: 3050 + components: + - type: Transform + pos: 56.5,16.5 + parent: 1 + - uid: 3076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,29.5 + parent: 1 + - uid: 3707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 1 + - uid: 3723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,29.5 + parent: 1 + - uid: 3741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,30.5 + parent: 1 + - uid: 3762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,28.5 + parent: 1 + - uid: 3763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,28.5 + parent: 1 + - uid: 3764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,28.5 + parent: 1 + - uid: 3765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,28.5 + parent: 1 + - uid: 3766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,28.5 + parent: 1 + - uid: 3767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,28.5 + parent: 1 + - uid: 3768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,28.5 + parent: 1 + - uid: 3769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,27.5 + parent: 1 + - uid: 3772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,26.5 + parent: 1 + - uid: 3773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 1 + - uid: 3774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 1 + - uid: 3791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,22.5 + parent: 1 + - uid: 3794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 1 + - uid: 3911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,29.5 + parent: 1 + - uid: 3912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,29.5 + parent: 1 + - uid: 3925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,59.5 + parent: 1 + - uid: 3926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,59.5 + parent: 1 + - uid: 3927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,59.5 + parent: 1 + - uid: 3928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,59.5 + parent: 1 + - uid: 3929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,59.5 + parent: 1 + - uid: 3930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,33.5 + parent: 1 + - uid: 3931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,33.5 + parent: 1 + - uid: 3932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,33.5 + parent: 1 + - uid: 3933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,33.5 + parent: 1 + - uid: 3934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 1 + - uid: 3935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,33.5 + parent: 1 + - uid: 3936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,35.5 + parent: 1 + - uid: 3937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 1 + - uid: 3938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + - uid: 3939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + - uid: 3940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,33.5 + parent: 1 + - uid: 4002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,27.5 + parent: 1 + - uid: 4003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,27.5 + parent: 1 + - uid: 4004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,27.5 + parent: 1 + - uid: 4014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,26.5 + parent: 1 + - uid: 4015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,26.5 + parent: 1 + - uid: 4016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,26.5 + parent: 1 + - uid: 4017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,26.5 + parent: 1 + - uid: 4018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,24.5 + parent: 1 + - uid: 4019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,24.5 + parent: 1 + - uid: 4020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,24.5 + parent: 1 + - uid: 4021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,24.5 + parent: 1 + - uid: 4312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,79.5 + parent: 1 + - uid: 4329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,78.5 + parent: 1 + - uid: 4336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,83.5 + parent: 1 + - uid: 4337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,80.5 + parent: 1 + - uid: 4338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,81.5 + parent: 1 + - uid: 4340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,83.5 + parent: 1 + - uid: 4344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,83.5 + parent: 1 + - uid: 4345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,83.5 + parent: 1 + - uid: 4346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,83.5 + parent: 1 + - uid: 4348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,83.5 + parent: 1 + - uid: 4349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,83.5 + parent: 1 + - uid: 4350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,83.5 + parent: 1 + - uid: 4351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,83.5 + parent: 1 + - uid: 4352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,83.5 + parent: 1 + - uid: 4353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,84.5 + parent: 1 + - uid: 4354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,84.5 + parent: 1 + - uid: 4355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,84.5 + parent: 1 + - uid: 4356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,84.5 + parent: 1 + - uid: 4357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,83.5 + parent: 1 + - uid: 4358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,83.5 + parent: 1 + - uid: 4688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,81.5 + parent: 1 + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,63.5 + parent: 1 + - uid: 5518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,76.5 + parent: 1 + - uid: 5519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,77.5 + parent: 1 + - uid: 5520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,76.5 + parent: 1 + - uid: 5521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,77.5 + parent: 1 + - uid: 5522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,74.5 + parent: 1 + - uid: 5523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,22.5 + parent: 1 + - uid: 5524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,33.5 + parent: 1 + - uid: 5626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 1 + - uid: 5627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,35.5 + parent: 1 + - uid: 5628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,35.5 + parent: 1 + - uid: 5743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 1 + - uid: 5748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,35.5 + parent: 1 + - uid: 5749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,36.5 + parent: 1 + - uid: 5750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 1 + - uid: 5752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 1 + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,38.5 + parent: 1 + - uid: 5755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,85.5 + parent: 1 + - uid: 5756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,84.5 + parent: 1 + - uid: 5757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,83.5 + parent: 1 + - uid: 5758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,19.5 + parent: 1 + - uid: 5759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 1 + - uid: 5760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 1 + - uid: 5761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,22.5 + parent: 1 + - uid: 5762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 1 + - uid: 5763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,17.5 + parent: 1 + - uid: 5764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,18.5 + parent: 1 + - uid: 5765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 1 + - uid: 5766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 1 + - uid: 5767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,42.5 + parent: 1 + - uid: 5768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,42.5 + parent: 1 + - uid: 5769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,42.5 + parent: 1 + - uid: 5781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,39.5 + parent: 1 + - uid: 5782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,39.5 + parent: 1 + - uid: 5783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,39.5 + parent: 1 + - uid: 5784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,39.5 + parent: 1 + - uid: 5785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,39.5 + parent: 1 + - uid: 5786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,41.5 + parent: 1 + - uid: 5787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,41.5 + parent: 1 + - uid: 5788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,41.5 + parent: 1 + - uid: 5789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,41.5 + parent: 1 + - uid: 5790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,41.5 + parent: 1 + - uid: 5791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,41.5 + parent: 1 + - uid: 5792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,41.5 + parent: 1 + - uid: 5793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,41.5 + parent: 1 + - uid: 6296 + components: + - type: Transform + pos: 53.5,41.5 + parent: 1 + - uid: 6297 + components: + - type: Transform + pos: 53.5,42.5 + parent: 1 + - uid: 6575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,79.5 + parent: 1 + - uid: 6576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,79.5 + parent: 1 + - uid: 6595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,30.5 + parent: 1 + - uid: 6599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,30.5 + parent: 1 +- proto: Chair + entities: + - uid: 1695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,42.5 + parent: 1 + - uid: 1886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,70.5 + parent: 1 + - uid: 1887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,70.5 + parent: 1 + - uid: 1959 + components: + - type: Transform + pos: 28.5,43.5 + parent: 1 + - uid: 1980 + components: + - type: Transform + pos: 53.5,35.5 + parent: 1 + - uid: 2158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,32.5 + parent: 1 + - uid: 2189 + components: + - type: Transform + pos: 17.5,44.5 + parent: 1 + - uid: 2342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,15.5 + parent: 1 + - uid: 2343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,16.5 + parent: 1 + - uid: 2498 + components: + - type: Transform + pos: 52.5,35.5 + parent: 1 + - uid: 2499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,32.5 + parent: 1 + - uid: 2618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,64.5 + parent: 1 + - uid: 2619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,65.5 + parent: 1 + - uid: 2620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,65.5 + parent: 1 + - uid: 2621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,64.5 + parent: 1 + - uid: 2694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,74.5 + parent: 1 + - uid: 2704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,76.5 + parent: 1 + - uid: 2705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,75.5 + parent: 1 + - uid: 2709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,42.5 + parent: 1 + - uid: 2729 + components: + - type: Transform + pos: 84.5,30.5 + parent: 1 + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,28.5 + parent: 1 + - uid: 2735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,66.5 + parent: 1 + - uid: 2736 + components: + - type: Transform + pos: 84.5,68.5 + parent: 1 + - uid: 2952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 1 + - uid: 2954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,41.5 + parent: 1 + - uid: 2966 + components: + - type: Transform + pos: 16.5,55.5 + parent: 1 + - uid: 4583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,75.5 + parent: 1 + - uid: 4761 + components: + - type: Transform + pos: 17.5,55.5 + parent: 1 + - uid: 4762 + components: + - type: Transform + pos: 18.5,55.5 + parent: 1 + - uid: 4763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,52.5 + parent: 1 + - uid: 4764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,52.5 + parent: 1 + - uid: 4765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,52.5 + parent: 1 + - uid: 4775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,50.5 + parent: 1 + - uid: 4776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,48.5 + parent: 1 + - uid: 4777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,46.5 + parent: 1 + - uid: 4778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,46.5 + parent: 1 + - uid: 4779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,48.5 + parent: 1 + - uid: 4780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,50.5 + parent: 1 + - uid: 6219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,54.5 + parent: 1 + - uid: 6220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,56.5 + parent: 1 + - uid: 6294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,41.5 + parent: 1 + - uid: 6764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 1 + - uid: 6765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,41.5 + parent: 1 + - uid: 6766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,41.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 1865 + components: + - type: Transform + pos: 69.5,79.5 + parent: 1 + - uid: 1969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,48.5 + parent: 1 + - uid: 1970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,51.5 + parent: 1 + - uid: 1971 + components: + - type: Transform + pos: 77.5,45.5 + parent: 1 + - uid: 1972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,48.5 + parent: 1 + - uid: 1974 + components: + - type: Transform + pos: 48.5,62.5 + parent: 1 + - uid: 1977 + components: + - type: Transform + pos: 73.5,61.5 + parent: 1 + - uid: 2335 + components: + - type: Transform + pos: 66.5,19.5 + parent: 1 + - uid: 3785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 1 + - uid: 6203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,54.5 + parent: 1 + - uid: 6204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,54.5 + parent: 1 + - uid: 6206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.471333,56.883904 + parent: 1 + - uid: 6212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.690083,53.8297 + parent: 1 + - uid: 6213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.690083,57.123653 + parent: 1 + - uid: 6214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.440083,54.225807 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,35.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 2326 + components: + - type: Transform + pos: 66.5,18.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 2334 + components: + - type: Transform + pos: 66.5,21.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 2390 + components: + - type: Transform + pos: 67.5,18.5 + parent: 1 +- proto: CigarCase + entities: + - uid: 6350 + components: + - type: Transform + pos: 26.378788,53.70339 + parent: 1 +- proto: CigarGold + entities: + - uid: 4592 + components: + - type: Transform + pos: 49.467575,63.98085 + parent: 1 + - uid: 6171 + components: + - type: Transform + pos: 33.385803,61.70168 + parent: 1 + - uid: 6172 + components: + - type: Transform + pos: 33.073303,61.732952 + parent: 1 + - uid: 6351 + components: + - type: Transform + pos: 41.79771,55.725628 + parent: 1 +- proto: CigCartonBlack + entities: + - uid: 6284 + components: + - type: Transform + pos: 41.344852,62.625275 + parent: 1 +- proto: CigPackBlack + entities: + - uid: 6285 + components: + - type: Transform + pos: 40.626102,66.200676 + parent: 1 +- proto: CloningPod + entities: + - uid: 2255 + components: + - type: Transform + pos: 67.5,24.5 + parent: 1 +- proto: ClosetChefFilled + entities: + - uid: 2087 + components: + - type: Transform + pos: 57.5,50.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 2345 + components: + - type: Transform + pos: 62.5,16.5 + parent: 1 + - uid: 2722 + components: + - type: Transform + pos: 84.5,63.5 + parent: 1 + - uid: 2727 + components: + - type: Transform + pos: 84.5,31.5 + parent: 1 + - uid: 2750 + components: + - type: Transform + pos: 84.5,72.5 + parent: 1 + - uid: 2756 + components: + - type: Transform + pos: 61.5,71.5 + parent: 1 + - uid: 4689 + components: + - type: Transform + pos: 50.5,84.5 + parent: 1 + - uid: 4690 + components: + - type: Transform + pos: 54.5,84.5 + parent: 1 + - uid: 4691 + components: + - type: Transform + pos: 60.5,84.5 + parent: 1 + - uid: 4767 + components: + - type: Transform + pos: 19.5,55.5 + parent: 1 + - uid: 4773 + components: + - type: Transform + pos: 16.5,50.5 + parent: 1 + - uid: 5951 + components: + - type: Transform + pos: 28.5,29.5 + parent: 1 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 2721 + components: + - type: Transform + pos: 84.5,65.5 + parent: 1 + - uid: 2728 + components: + - type: Transform + pos: 84.5,33.5 + parent: 1 + - uid: 4692 + components: + - type: Transform + pos: 51.5,84.5 + parent: 1 + - uid: 4693 + components: + - type: Transform + pos: 58.5,84.5 + parent: 1 + - uid: 4774 + components: + - type: Transform + pos: 16.5,46.5 + parent: 1 + - uid: 5952 + components: + - type: Transform + pos: 28.5,30.5 + parent: 1 +- proto: ClosetFireFilled + entities: + - uid: 2344 + components: + - type: Transform + pos: 62.5,15.5 + parent: 1 + - uid: 2751 + components: + - type: Transform + pos: 83.5,72.5 + parent: 1 + - uid: 2757 + components: + - type: Transform + pos: 61.5,70.5 + parent: 1 + - uid: 4694 + components: + - type: Transform + pos: 52.5,84.5 + parent: 1 + - uid: 4695 + components: + - type: Transform + pos: 59.5,84.5 + parent: 1 + - uid: 4696 + components: + - type: Transform + pos: 56.5,84.5 + parent: 1 + - uid: 4768 + components: + - type: Transform + pos: 20.5,55.5 + parent: 1 + - uid: 5953 + components: + - type: Transform + pos: 28.5,31.5 + parent: 1 +- proto: ClosetJanitorFilled + entities: + - uid: 3053 + components: + - type: Transform + pos: 55.5,18.5 + parent: 1 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 2754 + components: + - type: Transform + pos: 82.5,72.5 + parent: 1 + - uid: 2755 + components: + - type: Transform + pos: 51.5,74.5 + parent: 1 + - uid: 5303 + components: + - type: Transform + pos: 60.5,29.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 4697 + components: + - type: Transform + pos: 55.5,84.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 2187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,49.5 + parent: 1 + - uid: 2188 + components: + - type: Transform + pos: 66.5,40.5 + parent: 1 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 6292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,47.5 + parent: 1 +- proto: ClothingBackpackDeathSquad + entities: + - uid: 5357 + components: + - type: Transform + pos: 64.60166,75.598076 + parent: 1 +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 5286 + components: + - type: Transform + pos: 49.488422,76.59363 + parent: 1 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 6727 + components: + - type: Transform + pos: 72.480286,28.721449 + parent: 1 +- proto: ClothingBeltSalvageWebbing + entities: + - uid: 5298 + components: + - type: Transform + pos: 46.48835,68.097595 + parent: 1 +- proto: ClothingBeltSecurityFilled + entities: + - uid: 2695 + components: + - type: Transform + pos: 72.467766,70.16145 + parent: 1 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 2337 + components: + - type: Transform + pos: 70.46796,19.192427 + parent: 1 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 5359 + components: + - type: Transform + pos: 64.2475,75.410446 + parent: 1 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 4710 + components: + - type: Transform + pos: 52.40145,44.763718 + parent: 1 +- proto: ClothingHeadHatCargosoft + entities: + - uid: 5285 + components: + - type: Transform + pos: 45.50926,69.69884 + parent: 1 +- proto: ClothingHeadHatCentcomcap + entities: + - uid: 2352 + components: + - type: Transform + pos: 74.579666,46.16364 + parent: 1 + - uid: 6349 + components: + - type: Transform + pos: 43.174263,55.725628 + parent: 1 +- proto: ClothingHeadHatHoshat + entities: + - uid: 4749 + components: + - type: Transform + pos: 74.20112,63.64259 + parent: 1 +- proto: ClothingHeadsetAltCentCom + entities: + - uid: 2353 + components: + - type: Transform + pos: 74.56681,50.73331 + parent: 1 + - uid: 6353 + components: + - type: Transform + pos: 42.881042,53.661694 + parent: 1 +- proto: ClothingHeadsetMining + entities: + - uid: 5300 + components: + - type: Transform + pos: 46.540432,69.37973 + parent: 1 +- proto: ClothingMaskGasDeathSquad + entities: + - uid: 5351 + components: + - type: Transform + pos: 62.278748,75.6502 + parent: 1 + - uid: 5352 + components: + - type: Transform + pos: 62.39333,75.53554 + parent: 1 + - uid: 5353 + components: + - type: Transform + pos: 62.528748,75.400024 + parent: 1 +- proto: ClothingNeckGoldmedal + entities: + - uid: 6192 + components: + - type: Transform + pos: 29.708336,62.54395 + parent: 1 +- proto: ClothingNeckScarfStripedCentcom + entities: + - uid: 6246 + components: + - type: Transform + pos: 27.463533,53.607567 + parent: 1 +- proto: ClothingNeckStethoscope + entities: + - uid: 6735 + components: + - type: Transform + pos: 74.38454,33.636185 + parent: 1 +- proto: ClothingOuterHardsuitDeathsquad + entities: + - uid: 5347 + components: + - type: Transform + pos: 62.35166,74.74332 + parent: 1 + - uid: 5349 + components: + - type: Transform + pos: 62.53916,74.74332 + parent: 1 + - uid: 5350 + components: + - type: Transform + pos: 62.72666,74.74332 + parent: 1 +- proto: ClothingOuterHardsuitERTLeader + entities: + - uid: 5360 + components: + - type: Transform + pos: 67.53278,79.78774 + parent: 1 +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 5332 + components: + - type: Transform + pos: 67.37044,77.72743 + parent: 1 + - uid: 5333 + components: + - type: Transform + pos: 67.5371,77.72743 + parent: 1 + - uid: 5334 + components: + - type: Transform + pos: 67.71419,77.72743 + parent: 1 +- proto: ClothingOuterHospitalGown + entities: + - uid: 898 + components: + - type: Transform + pos: 72.63558,25.612406 + parent: 1 + - uid: 2319 + components: + - type: Transform + pos: 72.31266,25.581133 + parent: 1 + - uid: 2320 + components: + - type: Transform + pos: 72.50016,25.497742 + parent: 1 +- proto: ClothingShoesBootsSalvage + entities: + - uid: 5299 + components: + - type: Transform + pos: 46.477932,67.62852 + parent: 1 +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 2558 + components: + - type: Transform + pos: 64.20536,61.750526 + parent: 1 + - uid: 4381 + components: + - type: Transform + pos: 64.06994,61.62544 + parent: 1 +- proto: ClothingUniformJumpsuitColorBlue + entities: + - uid: 2602 + components: + - type: Transform + pos: 58.69319,66.65346 + parent: 1 + - uid: 2603 + components: + - type: Transform + pos: 58.531715,66.54189 + parent: 1 + - uid: 2604 + components: + - type: Transform + pos: 58.39111,66.37201 + parent: 1 +- proto: ClothingUniformJumpsuitColorRed + entities: + - uid: 2599 + components: + - type: Transform + pos: 58.67236,68.65485 + parent: 1 + - uid: 2600 + components: + - type: Transform + pos: 58.526527,68.56103 + parent: 1 + - uid: 2601 + components: + - type: Transform + pos: 58.35986,68.42552 + parent: 1 +- proto: ClothingUniformJumpsuitDeathSquad + entities: + - uid: 5354 + components: + - type: Transform + pos: 62.75791,75.66062 + parent: 1 + - uid: 5355 + components: + - type: Transform + pos: 62.91416,75.53554 + parent: 1 + - uid: 5356 + components: + - type: Transform + pos: 63.028748,75.410446 + parent: 1 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 876 + components: + - type: Transform + pos: 64.48661,61.562897 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: 64.622025,61.67756 + parent: 1 +- proto: ComfyChair + entities: + - uid: 1752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,41.5 + parent: 1 + - uid: 1753 + components: + - type: Transform + pos: 65.5,43.5 + parent: 1 + - uid: 1754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,53.5 + parent: 1 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,53.5 + parent: 1 + - uid: 1758 + components: + - type: Transform + pos: 64.5,43.5 + parent: 1 + - uid: 1759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,41.5 + parent: 1 + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,46.5 + parent: 1 + - uid: 1762 + components: + - type: Transform + pos: 65.5,55.5 + parent: 1 + - uid: 1763 + components: + - type: Transform + pos: 64.5,55.5 + parent: 1 + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,45.5 + parent: 1 + - uid: 1768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,51.5 + parent: 1 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,46.5 + parent: 1 + - uid: 1777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,45.5 + parent: 1 + - uid: 1779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,51.5 + parent: 1 + - uid: 1804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,50.5 + parent: 1 + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,50.5 + parent: 1 + - uid: 2070 + components: + - type: Transform + pos: 63.5,55.5 + parent: 1 + - uid: 2071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,53.5 + parent: 1 + - uid: 2072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,41.5 + parent: 1 + - uid: 2073 + components: + - type: Transform + pos: 63.5,43.5 + parent: 1 + - uid: 2993 + components: + - type: Transform + pos: 31.5,62.5 + parent: 1 + - uid: 2994 + components: + - type: Transform + pos: 32.5,62.5 + parent: 1 + - uid: 2995 + components: + - type: Transform + pos: 33.5,62.5 + parent: 1 + - uid: 2996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,60.5 + parent: 1 + - uid: 2997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,60.5 + parent: 1 + - uid: 2998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,60.5 + parent: 1 + - uid: 3000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,61.5 + parent: 1 + - uid: 6197 + components: + - type: Transform + pos: 26.5,56.5 + parent: 1 + - uid: 6202 + components: + - type: Transform + pos: 42.5,56.5 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 3782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,32.5 + parent: 1 +- proto: ComputerAtmosMonitoring + entities: + - uid: 3783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,32.5 + parent: 1 +- proto: ComputerCargoBounty + entities: + - uid: 3910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,62.5 + parent: 1 + - uid: 4602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,64.5 + parent: 1 +- proto: ComputerCargoOrders + entities: + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,77.5 + parent: 1 + - uid: 3909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,62.5 + parent: 1 + - uid: 3924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,69.5 + parent: 1 + - uid: 4595 + components: + - type: Transform + pos: 41.5,67.5 + parent: 1 +- proto: ComputerCloningConsole + entities: + - uid: 223 + components: + - type: Transform + pos: 69.5,25.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2255: + - MedicalScannerSender: CloningPodReceiver + - CloningPodSender: CloningPodReceiver + 1750: + - MedicalScannerSender: MedicalScannerReceiver + - CloningPodSender: MedicalScannerReceiver +- proto: ComputerComms + entities: + - uid: 1878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,56.5 + parent: 1 + - uid: 1894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,56.5 + parent: 1 + - uid: 1978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,50.5 + parent: 1 +- proto: ComputerCrewMonitoring + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,45.5 + parent: 1 + - uid: 6746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,35.5 + parent: 1 +- proto: ComputerCriminalRecords + entities: + - uid: 1965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,48.5 + parent: 1 + - uid: 1975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,61.5 + parent: 1 + - uid: 2597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,67.5 + parent: 1 +- proto: ComputerId + entities: + - uid: 1877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,57.5 + parent: 1 + - uid: 1885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,57.5 + parent: 1 + - uid: 1979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,46.5 + parent: 1 +- proto: ComputerMedicalRecords + entities: + - uid: 6763 + components: + - type: Transform + pos: 66.5,31.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 3781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 1 +- proto: ComputerShuttleCargo + entities: + - uid: 4582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,75.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 1976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,62.5 + parent: 1 + - uid: 2487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,45.5 + parent: 1 + - uid: 4752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,51.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 6261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,57.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 2022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,77.5 + parent: 1 + - uid: 2023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,77.5 + parent: 1 + - uid: 2024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,77.5 + parent: 1 + - uid: 2025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,77.5 + parent: 1 + - uid: 2026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,77.5 + parent: 1 + - uid: 2027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,73.5 + parent: 1 + - uid: 2028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,73.5 + parent: 1 + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,73.5 + parent: 1 + - uid: 2030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,73.5 + parent: 1 + - uid: 2031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,73.5 + parent: 1 + - uid: 3023 + components: + - type: Transform + pos: 57.5,18.5 + parent: 1 + - uid: 3024 + components: + - type: Transform + pos: 57.5,17.5 + parent: 1 + - uid: 3025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,16.5 + parent: 1 + - uid: 3026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,16.5 + parent: 1 + - uid: 3027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,16.5 + parent: 1 + - uid: 3028 + components: + - type: Transform + pos: 60.5,16.5 + parent: 1 + - uid: 3029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 1 + - uid: 3030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,15.5 + parent: 1 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,15.5 + parent: 1 + - uid: 3032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,15.5 + parent: 1 + - uid: 3033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,15.5 + parent: 1 + - uid: 3034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 1 + - uid: 3057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 1 +- proto: CrateArtifactContainer + entities: + - uid: 6363 + components: + - type: Transform + pos: 46.5,74.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 6364 +- proto: CrateCargoLuxuryHardsuit + entities: + - uid: 5288 + components: + - type: Transform + pos: 46.5,78.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 5289 +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 5292 + components: + - type: Transform + pos: 46.5,72.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 5293 +- proto: CrateFoodPizza + entities: + - uid: 2612 + components: + - type: Transform + pos: 45.5,76.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 350 +- proto: CrateFoodPizzaLarge + entities: + - uid: 2611 + components: + - type: Transform + pos: 43.5,78.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 844 +- proto: CrateFreezer + entities: + - uid: 2064 + components: + - type: Transform + pos: 69.5,27.5 + parent: 1 + - uid: 2649 + components: + - type: Transform + pos: 51.5,50.5 + parent: 1 +- proto: CrateFunDartsSet + entities: + - uid: 2488 + components: + - type: Transform + pos: 56.5,33.5 + parent: 1 +- proto: CrateFunLizardPlushieBulk + entities: + - uid: 2613 + components: + - type: Transform + pos: 43.5,76.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 845 + - uid: 4657 + components: + - type: Transform + pos: 57.5,34.5 + parent: 1 +- proto: CrateFunPlushie + entities: + - uid: 2489 + components: + - type: Transform + pos: 57.5,33.5 + parent: 1 + - uid: 2614 + components: + - type: Transform + pos: 43.5,72.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 862 +- proto: CrateFunToyBox + entities: + - uid: 4654 + components: + - type: Transform + pos: 56.5,34.5 + parent: 1 +- proto: CrateRCDAmmo + entities: + - uid: 5290 + components: + - type: Transform + pos: 44.5,74.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 5291 +- proto: CrateServiceBureaucracy + entities: + - uid: 2615 + components: + - type: Transform + pos: 44.5,72.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 863 +- proto: CryogenicSleepUnit + entities: + - uid: 2458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,34.5 + parent: 1 + - uid: 2459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,36.5 + parent: 1 + - uid: 2460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,62.5 + parent: 1 + - uid: 2468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,61.5 + parent: 1 + - uid: 2732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,60.5 + parent: 1 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,35.5 + parent: 1 +- proto: CryoPod + entities: + - uid: 6600 + components: + - type: Transform + pos: 64.5,31.5 + parent: 1 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 4625 + components: + - type: Transform + pos: 65.564384,31.5989 + parent: 1 + - uid: 6744 + components: + - type: Transform + pos: 65.720634,31.755259 + parent: 1 +- proto: DawInstrument + entities: + - uid: 2490 + components: + - type: Transform + pos: 56.5,35.5 + parent: 1 +- proto: DebugGenerator + entities: + - uid: 3978 + components: + - type: Transform + pos: 36.5,26.5 + parent: 1 + - uid: 3980 + components: + - type: Transform + pos: 39.5,26.5 + parent: 1 + - uid: 3982 + components: + - type: Transform + pos: 40.5,24.5 + parent: 1 + - uid: 3984 + components: + - type: Transform + pos: 37.5,24.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 6751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,28.5 + parent: 1 + - uid: 6776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,27.5 + parent: 1 +- proto: DefibrillatorCompact + entities: + - uid: 6780 + components: + - type: Transform + pos: 67.513145,31.581882 + parent: 1 +- proto: DeployableBarrier + entities: + - uid: 2687 + components: + - type: Transform + pos: 69.5,70.5 + parent: 1 + - uid: 2688 + components: + - type: Transform + pos: 69.5,71.5 + parent: 1 + - uid: 2690 + components: + - type: Transform + pos: 69.5,72.5 + parent: 1 +- proto: DiceBag + entities: + - uid: 6190 + components: + - type: Transform + pos: 29.364586,62.65861 + parent: 1 +- proto: DisposalBend + entities: + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,33.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,26.5 + parent: 1 + - uid: 1819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,29.5 + parent: 1 + - uid: 2508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 1 + - uid: 3018 + components: + - type: Transform + pos: 57.5,18.5 + parent: 1 + - uid: 3019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,18.5 + parent: 1 + - uid: 3064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 1 + - uid: 3079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,19.5 + parent: 1 + - uid: 3115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,42.5 + parent: 1 + - uid: 3120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,53.5 + parent: 1 + - uid: 3125 + components: + - type: Transform + pos: 62.5,53.5 + parent: 1 + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,51.5 + parent: 1 + - uid: 3138 + components: + - type: Transform + pos: 83.5,56.5 + parent: 1 + - uid: 3155 + components: + - type: Transform + pos: 71.5,58.5 + parent: 1 + - uid: 3170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,48.5 + parent: 1 + - uid: 3171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,51.5 + parent: 1 + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,50.5 + parent: 1 + - uid: 3173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,50.5 + parent: 1 + - uid: 3192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,38.5 + parent: 1 + - uid: 3213 + components: + - type: Transform + pos: 83.5,45.5 + parent: 1 + - uid: 3214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,40.5 + parent: 1 + - uid: 3283 + components: + - type: Transform + pos: 70.5,74.5 + parent: 1 + - uid: 3307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,68.5 + parent: 1 + - uid: 3308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,66.5 + parent: 1 + - uid: 3309 + components: + - type: Transform + pos: 57.5,68.5 + parent: 1 + - uid: 3310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,66.5 + parent: 1 + - uid: 3845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,70.5 + parent: 1 + - uid: 3846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,80.5 + parent: 1 + - uid: 3847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,70.5 + parent: 1 + - uid: 3870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,59.5 + parent: 1 + - uid: 3880 + components: + - type: Transform + pos: 48.5,59.5 + parent: 1 + - uid: 3884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,58.5 + parent: 1 + - uid: 3896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,19.5 + parent: 1 + - uid: 3897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,20.5 + parent: 1 + - uid: 3898 + components: + - type: Transform + pos: 68.5,20.5 + parent: 1 + - uid: 5806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,43.5 + parent: 1 + - uid: 5807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,48.5 + parent: 1 + - uid: 6174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,59.5 + parent: 1 + - uid: 6240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,56.5 + parent: 1 + - uid: 6251 + components: + - type: Transform + pos: 33.5,56.5 + parent: 1 + - uid: 6252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,55.5 + parent: 1 + - uid: 6329 + components: + - type: Transform + pos: 40.5,55.5 + parent: 1 + - uid: 6330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,55.5 + parent: 1 +- proto: DisposalJunction + entities: + - uid: 1105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,38.5 + parent: 1 + - uid: 2494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,38.5 + parent: 1 + - uid: 3103 + components: + - type: Transform + pos: 62.5,42.5 + parent: 1 + - uid: 3104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,38.5 + parent: 1 + - uid: 3250 + components: + - type: Transform + pos: 48.5,48.5 + parent: 1 + - uid: 3304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,68.5 + parent: 1 + - uid: 3305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,66.5 + parent: 1 + - uid: 5813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,48.5 + parent: 1 + - uid: 6241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,56.5 + parent: 1 + - uid: 6244 + components: + - type: Transform + pos: 31.5,55.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 1536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,34.5 + parent: 1 + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,35.5 + parent: 1 + - uid: 3102 + components: + - type: Transform + pos: 62.5,44.5 + parent: 1 + - uid: 3124 + components: + - type: Transform + pos: 62.5,52.5 + parent: 1 + - uid: 3154 + components: + - type: Transform + pos: 71.5,56.5 + parent: 1 + - uid: 3156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,58.5 + parent: 1 + - uid: 3165 + components: + - type: Transform + pos: 71.5,48.5 + parent: 1 + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,38.5 + parent: 1 + - uid: 3193 + components: + - type: Transform + pos: 71.5,40.5 + parent: 1 + - uid: 3277 + components: + - type: Transform + pos: 70.5,71.5 + parent: 1 + - uid: 3844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,70.5 + parent: 1 + - uid: 3864 + components: + - type: Transform + pos: 43.5,65.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,35.5 + parent: 1 + - uid: 605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,32.5 + parent: 1 + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,31.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,33.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,33.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,34.5 + parent: 1 + - uid: 1820 + components: + - type: Transform + pos: 54.5,37.5 + parent: 1 + - uid: 2457 + components: + - type: Transform + pos: 54.5,36.5 + parent: 1 + - uid: 2507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,34.5 + parent: 1 + - uid: 3020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,19.5 + parent: 1 + - uid: 3021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,20.5 + parent: 1 + - uid: 3060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,21.5 + parent: 1 + - uid: 3061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,21.5 + parent: 1 + - uid: 3062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,21.5 + parent: 1 + - uid: 3063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,21.5 + parent: 1 + - uid: 3065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,21.5 + parent: 1 + - uid: 3066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,21.5 + parent: 1 + - uid: 3067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,21.5 + parent: 1 + - uid: 3068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,21.5 + parent: 1 + - uid: 3069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,21.5 + parent: 1 + - uid: 3070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,21.5 + parent: 1 + - uid: 3071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,21.5 + parent: 1 + - uid: 3072 + components: + - type: Transform + pos: 48.5,22.5 + parent: 1 + - uid: 3073 + components: + - type: Transform + pos: 48.5,23.5 + parent: 1 + - uid: 3074 + components: + - type: Transform + pos: 48.5,24.5 + parent: 1 + - uid: 3075 + components: + - type: Transform + pos: 48.5,25.5 + parent: 1 + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,20.5 + parent: 1 + - uid: 3080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,19.5 + parent: 1 + - uid: 3081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,19.5 + parent: 1 + - uid: 3082 + components: + - type: Transform + pos: 61.5,22.5 + parent: 1 + - uid: 3083 + components: + - type: Transform + pos: 61.5,23.5 + parent: 1 + - uid: 3084 + components: + - type: Transform + pos: 61.5,24.5 + parent: 1 + - uid: 3085 + components: + - type: Transform + pos: 61.5,26.5 + parent: 1 + - uid: 3086 + components: + - type: Transform + pos: 61.5,27.5 + parent: 1 + - uid: 3087 + components: + - type: Transform + pos: 61.5,28.5 + parent: 1 + - uid: 3088 + components: + - type: Transform + pos: 61.5,29.5 + parent: 1 + - uid: 3089 + components: + - type: Transform + pos: 61.5,30.5 + parent: 1 + - uid: 3090 + components: + - type: Transform + pos: 61.5,25.5 + parent: 1 + - uid: 3091 + components: + - type: Transform + pos: 61.5,31.5 + parent: 1 + - uid: 3092 + components: + - type: Transform + pos: 61.5,33.5 + parent: 1 + - uid: 3093 + components: + - type: Transform + pos: 61.5,34.5 + parent: 1 + - uid: 3094 + components: + - type: Transform + pos: 61.5,36.5 + parent: 1 + - uid: 3095 + components: + - type: Transform + pos: 61.5,37.5 + parent: 1 + - uid: 3096 + components: + - type: Transform + pos: 61.5,32.5 + parent: 1 + - uid: 3097 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - uid: 3100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,44.5 + parent: 1 + - uid: 3101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,44.5 + parent: 1 + - uid: 3105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,39.5 + parent: 1 + - uid: 3106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,40.5 + parent: 1 + - uid: 3107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,41.5 + parent: 1 + - uid: 3108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 1 + - uid: 3109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,42.5 + parent: 1 + - uid: 3110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,42.5 + parent: 1 + - uid: 3111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,42.5 + parent: 1 + - uid: 3112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,42.5 + parent: 1 + - uid: 3113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,42.5 + parent: 1 + - uid: 3114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,42.5 + parent: 1 + - uid: 3119 + components: + - type: Transform + pos: 58.5,54.5 + parent: 1 + - uid: 3121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,53.5 + parent: 1 + - uid: 3122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,53.5 + parent: 1 + - uid: 3123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,53.5 + parent: 1 + - uid: 3126 + components: + - type: Transform + pos: 62.5,51.5 + parent: 1 + - uid: 3127 + components: + - type: Transform + pos: 62.5,50.5 + parent: 1 + - uid: 3128 + components: + - type: Transform + pos: 62.5,49.5 + parent: 1 + - uid: 3129 + components: + - type: Transform + pos: 62.5,48.5 + parent: 1 + - uid: 3130 + components: + - type: Transform + pos: 62.5,47.5 + parent: 1 + - uid: 3131 + components: + - type: Transform + pos: 62.5,46.5 + parent: 1 + - uid: 3132 + components: + - type: Transform + pos: 62.5,45.5 + parent: 1 + - uid: 3133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,52.5 + parent: 1 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,52.5 + parent: 1 + - uid: 3136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,51.5 + parent: 1 + - uid: 3139 + components: + - type: Transform + pos: 83.5,52.5 + parent: 1 + - uid: 3140 + components: + - type: Transform + pos: 83.5,53.5 + parent: 1 + - uid: 3141 + components: + - type: Transform + pos: 83.5,54.5 + parent: 1 + - uid: 3142 + components: + - type: Transform + pos: 83.5,55.5 + parent: 1 + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,56.5 + parent: 1 + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,56.5 + parent: 1 + - uid: 3145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,56.5 + parent: 1 + - uid: 3146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,56.5 + parent: 1 + - uid: 3147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,56.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,56.5 + parent: 1 + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,56.5 + parent: 1 + - uid: 3150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,56.5 + parent: 1 + - uid: 3151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,56.5 + parent: 1 + - uid: 3152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,56.5 + parent: 1 + - uid: 3153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,56.5 + parent: 1 + - uid: 3157 + components: + - type: Transform + pos: 71.5,57.5 + parent: 1 + - uid: 3158 + components: + - type: Transform + pos: 71.5,55.5 + parent: 1 + - uid: 3159 + components: + - type: Transform + pos: 71.5,54.5 + parent: 1 + - uid: 3160 + components: + - type: Transform + pos: 71.5,53.5 + parent: 1 + - uid: 3161 + components: + - type: Transform + pos: 71.5,52.5 + parent: 1 + - uid: 3162 + components: + - type: Transform + pos: 71.5,51.5 + parent: 1 + - uid: 3163 + components: + - type: Transform + pos: 71.5,50.5 + parent: 1 + - uid: 3164 + components: + - type: Transform + pos: 71.5,49.5 + parent: 1 + - uid: 3166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,48.5 + parent: 1 + - uid: 3167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,48.5 + parent: 1 + - uid: 3168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,48.5 + parent: 1 + - uid: 3169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,48.5 + parent: 1 + - uid: 3174 + components: + - type: Transform + pos: 76.5,49.5 + parent: 1 + - uid: 3175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,51.5 + parent: 1 + - uid: 3177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,38.5 + parent: 1 + - uid: 3178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,38.5 + parent: 1 + - uid: 3179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,38.5 + parent: 1 + - uid: 3180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,38.5 + parent: 1 + - uid: 3181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,38.5 + parent: 1 + - uid: 3182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,38.5 + parent: 1 + - uid: 3184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,37.5 + parent: 1 + - uid: 3185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,36.5 + parent: 1 + - uid: 3186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,35.5 + parent: 1 + - uid: 3187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,34.5 + parent: 1 + - uid: 3188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,33.5 + parent: 1 + - uid: 3189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,32.5 + parent: 1 + - uid: 3190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,31.5 + parent: 1 + - uid: 3191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,38.5 + parent: 1 + - uid: 3194 + components: + - type: Transform + pos: 71.5,39.5 + parent: 1 + - uid: 3195 + components: + - type: Transform + pos: 71.5,41.5 + parent: 1 + - uid: 3196 + components: + - type: Transform + pos: 71.5,42.5 + parent: 1 + - uid: 3197 + components: + - type: Transform + pos: 71.5,43.5 + parent: 1 + - uid: 3198 + components: + - type: Transform + pos: 71.5,44.5 + parent: 1 + - uid: 3199 + components: + - type: Transform + pos: 71.5,45.5 + parent: 1 + - uid: 3200 + components: + - type: Transform + pos: 71.5,46.5 + parent: 1 + - uid: 3201 + components: + - type: Transform + pos: 71.5,47.5 + parent: 1 + - uid: 3202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,40.5 + parent: 1 + - uid: 3203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,40.5 + parent: 1 + - uid: 3204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,40.5 + parent: 1 + - uid: 3205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,40.5 + parent: 1 + - uid: 3206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,40.5 + parent: 1 + - uid: 3207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,40.5 + parent: 1 + - uid: 3208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,40.5 + parent: 1 + - uid: 3209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,40.5 + parent: 1 + - uid: 3210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,40.5 + parent: 1 + - uid: 3211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,40.5 + parent: 1 + - uid: 3212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,40.5 + parent: 1 + - uid: 3216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,45.5 + parent: 1 + - uid: 3217 + components: + - type: Transform + pos: 83.5,44.5 + parent: 1 + - uid: 3218 + components: + - type: Transform + pos: 83.5,43.5 + parent: 1 + - uid: 3219 + components: + - type: Transform + pos: 83.5,42.5 + parent: 1 + - uid: 3220 + components: + - type: Transform + pos: 83.5,41.5 + parent: 1 + - uid: 3222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,38.5 + parent: 1 + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,38.5 + parent: 1 + - uid: 3224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,38.5 + parent: 1 + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,38.5 + parent: 1 + - uid: 3227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,38.5 + parent: 1 + - uid: 3228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,38.5 + parent: 1 + - uid: 3229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,38.5 + parent: 1 + - uid: 3230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,38.5 + parent: 1 + - uid: 3231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,38.5 + parent: 1 + - uid: 3232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,38.5 + parent: 1 + - uid: 3237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,35.5 + parent: 1 + - uid: 3238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,36.5 + parent: 1 + - uid: 3239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,37.5 + parent: 1 + - uid: 3241 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1 + - uid: 3242 + components: + - type: Transform + pos: 48.5,40.5 + parent: 1 + - uid: 3243 + components: + - type: Transform + pos: 48.5,41.5 + parent: 1 + - uid: 3244 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 + - uid: 3245 + components: + - type: Transform + pos: 48.5,43.5 + parent: 1 + - uid: 3246 + components: + - type: Transform + pos: 48.5,44.5 + parent: 1 + - uid: 3247 + components: + - type: Transform + pos: 48.5,46.5 + parent: 1 + - uid: 3248 + components: + - type: Transform + pos: 48.5,47.5 + parent: 1 + - uid: 3249 + components: + - type: Transform + pos: 48.5,45.5 + parent: 1 + - uid: 3251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,48.5 + parent: 1 + - uid: 3252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,48.5 + parent: 1 + - uid: 3253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,48.5 + parent: 1 + - uid: 3254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,48.5 + parent: 1 + - uid: 3255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,48.5 + parent: 1 + - uid: 3256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,48.5 + parent: 1 + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,48.5 + parent: 1 + - uid: 3258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,48.5 + parent: 1 + - uid: 3259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,48.5 + parent: 1 + - uid: 3260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,48.5 + parent: 1 + - uid: 3261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,48.5 + parent: 1 + - uid: 3262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,48.5 + parent: 1 + - uid: 3263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,48.5 + parent: 1 + - uid: 3264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,48.5 + parent: 1 + - uid: 3265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,49.5 + parent: 1 + - uid: 3266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,50.5 + parent: 1 + - uid: 3267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,51.5 + parent: 1 + - uid: 3268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,52.5 + parent: 1 + - uid: 3269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,53.5 + parent: 1 + - uid: 3270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,54.5 + parent: 1 + - uid: 3271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,55.5 + parent: 1 + - uid: 3272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,57.5 + parent: 1 + - uid: 3273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,56.5 + parent: 1 + - uid: 3279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,71.5 + parent: 1 + - uid: 3280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,71.5 + parent: 1 + - uid: 3281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,72.5 + parent: 1 + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,73.5 + parent: 1 + - uid: 3284 + components: + - type: Transform + pos: 70.5,70.5 + parent: 1 + - uid: 3285 + components: + - type: Transform + pos: 70.5,69.5 + parent: 1 + - uid: 3286 + components: + - type: Transform + pos: 70.5,68.5 + parent: 1 + - uid: 3287 + components: + - type: Transform + pos: 70.5,67.5 + parent: 1 + - uid: 3288 + components: + - type: Transform + pos: 70.5,66.5 + parent: 1 + - uid: 3289 + components: + - type: Transform + pos: 70.5,65.5 + parent: 1 + - uid: 3290 + components: + - type: Transform + pos: 70.5,64.5 + parent: 1 + - uid: 3291 + components: + - type: Transform + pos: 70.5,62.5 + parent: 1 + - uid: 3292 + components: + - type: Transform + pos: 70.5,61.5 + parent: 1 + - uid: 3293 + components: + - type: Transform + pos: 70.5,60.5 + parent: 1 + - uid: 3294 + components: + - type: Transform + pos: 70.5,59.5 + parent: 1 + - uid: 3295 + components: + - type: Transform + pos: 70.5,63.5 + parent: 1 + - uid: 3299 + components: + - type: Transform + pos: 54.5,70.5 + parent: 1 + - uid: 3300 + components: + - type: Transform + pos: 54.5,64.5 + parent: 1 + - uid: 3301 + components: + - type: Transform + pos: 54.5,65.5 + parent: 1 + - uid: 3302 + components: + - type: Transform + pos: 54.5,69.5 + parent: 1 + - uid: 3311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,66.5 + parent: 1 + - uid: 3312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,66.5 + parent: 1 + - uid: 3313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,66.5 + parent: 1 + - uid: 3314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,66.5 + parent: 1 + - uid: 3315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,68.5 + parent: 1 + - uid: 3316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,68.5 + parent: 1 + - uid: 3317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,68.5 + parent: 1 + - uid: 3318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,68.5 + parent: 1 + - uid: 3468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,30.5 + parent: 1 + - uid: 3604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,35.5 + parent: 1 + - uid: 3786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,33.5 + parent: 1 + - uid: 3787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 1 + - uid: 3788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,33.5 + parent: 1 + - uid: 3848 + components: + - type: Transform + pos: 48.5,71.5 + parent: 1 + - uid: 3849 + components: + - type: Transform + pos: 48.5,72.5 + parent: 1 + - uid: 3850 + components: + - type: Transform + pos: 48.5,73.5 + parent: 1 + - uid: 3851 + components: + - type: Transform + pos: 48.5,74.5 + parent: 1 + - uid: 3852 + components: + - type: Transform + pos: 48.5,75.5 + parent: 1 + - uid: 3853 + components: + - type: Transform + pos: 48.5,76.5 + parent: 1 + - uid: 3854 + components: + - type: Transform + pos: 48.5,77.5 + parent: 1 + - uid: 3855 + components: + - type: Transform + pos: 48.5,78.5 + parent: 1 + - uid: 3856 + components: + - type: Transform + pos: 48.5,79.5 + parent: 1 + - uid: 3857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,70.5 + parent: 1 + - uid: 3858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,70.5 + parent: 1 + - uid: 3859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,70.5 + parent: 1 + - uid: 3860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,69.5 + parent: 1 + - uid: 3861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,68.5 + parent: 1 + - uid: 3862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,67.5 + parent: 1 + - uid: 3863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,66.5 + parent: 1 + - uid: 3865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,65.5 + parent: 1 + - uid: 3866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,65.5 + parent: 1 + - uid: 3867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,65.5 + parent: 1 + - uid: 3868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,65.5 + parent: 1 + - uid: 3869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,65.5 + parent: 1 + - uid: 3871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,59.5 + parent: 1 + - uid: 3872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,59.5 + parent: 1 + - uid: 3873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,59.5 + parent: 1 + - uid: 3874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,59.5 + parent: 1 + - uid: 3875 + components: + - type: Transform + pos: 43.5,60.5 + parent: 1 + - uid: 3876 + components: + - type: Transform + pos: 43.5,61.5 + parent: 1 + - uid: 3877 + components: + - type: Transform + pos: 43.5,62.5 + parent: 1 + - uid: 3878 + components: + - type: Transform + pos: 43.5,63.5 + parent: 1 + - uid: 3879 + components: + - type: Transform + pos: 43.5,64.5 + parent: 1 + - uid: 3881 + components: + - type: Transform + pos: 48.5,58.5 + parent: 1 + - uid: 3883 + components: + - type: Transform + pos: 60.5,59.5 + parent: 1 + - uid: 3885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,58.5 + parent: 1 + - uid: 3886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,58.5 + parent: 1 + - uid: 3887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,58.5 + parent: 1 + - uid: 3888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,58.5 + parent: 1 + - uid: 3889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,58.5 + parent: 1 + - uid: 3890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,58.5 + parent: 1 + - uid: 3891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,58.5 + parent: 1 + - uid: 3892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,58.5 + parent: 1 + - uid: 3893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,58.5 + parent: 1 + - uid: 3899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,20.5 + parent: 1 + - uid: 3900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,20.5 + parent: 1 + - uid: 3901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,20.5 + parent: 1 + - uid: 3902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,19.5 + parent: 1 + - uid: 3904 + components: + - type: Transform + pos: 60.5,37.5 + parent: 1 + - uid: 4652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,29.5 + parent: 1 + - uid: 4653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 1 + - uid: 5808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 1 + - uid: 5809 + components: + - type: Transform + pos: 32.5,44.5 + parent: 1 + - uid: 5810 + components: + - type: Transform + pos: 32.5,45.5 + parent: 1 + - uid: 5811 + components: + - type: Transform + pos: 32.5,46.5 + parent: 1 + - uid: 5812 + components: + - type: Transform + pos: 32.5,47.5 + parent: 1 + - uid: 5814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 1 + - uid: 6176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,59.5 + parent: 1 + - uid: 6177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,59.5 + parent: 1 + - uid: 6178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,58.5 + parent: 1 + - uid: 6179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,57.5 + parent: 1 + - uid: 6180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,49.5 + parent: 1 + - uid: 6181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,50.5 + parent: 1 + - uid: 6182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,51.5 + parent: 1 + - uid: 6183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,52.5 + parent: 1 + - uid: 6184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,53.5 + parent: 1 + - uid: 6218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,55.5 + parent: 1 + - uid: 6239 + components: + - type: Transform + pos: 31.5,54.5 + parent: 1 + - uid: 6242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,55.5 + parent: 1 + - uid: 6243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,55.5 + parent: 1 + - uid: 6245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,54.5 + parent: 1 + - uid: 6247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,55.5 + parent: 1 + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,55.5 + parent: 1 + - uid: 6249 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 6253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,55.5 + parent: 1 + - uid: 6254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,55.5 + parent: 1 + - uid: 6255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,55.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,63.5 + parent: 1 + - uid: 2304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,36.5 + parent: 1 + - uid: 2455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,35.5 + parent: 1 + - uid: 2552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,28.5 + parent: 1 + - uid: 3017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,17.5 + parent: 1 + - uid: 3099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,44.5 + parent: 1 + - uid: 3116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,41.5 + parent: 1 + - uid: 3117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,52.5 + parent: 1 + - uid: 3118 + components: + - type: Transform + pos: 58.5,55.5 + parent: 1 + - uid: 3135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,51.5 + parent: 1 + - uid: 3176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,51.5 + parent: 1 + - uid: 3215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,45.5 + parent: 1 + - uid: 3276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,74.5 + parent: 1 + - uid: 3278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,71.5 + parent: 1 + - uid: 3298 + components: + - type: Transform + pos: 54.5,71.5 + parent: 1 + - uid: 3321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,67.5 + parent: 1 + - uid: 3322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,67.5 + parent: 1 + - uid: 3770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,26.5 + parent: 1 + - uid: 3779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 1 + - uid: 3841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,69.5 + parent: 1 + - uid: 3842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,80.5 + parent: 1 + - uid: 3843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,65.5 + parent: 1 + - uid: 3882 + components: + - type: Transform + pos: 60.5,60.5 + parent: 1 + - uid: 3895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,18.5 + parent: 1 + - uid: 5805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,43.5 + parent: 1 + - uid: 6175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,59.5 + parent: 1 + - uid: 6331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,53.5 + parent: 1 + - uid: 6332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,53.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 178 + components: + - type: Transform + pos: 79.5,51.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 44.5,69.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: 46.5,34.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: 54.5,63.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: 54.5,71.5 + parent: 1 + - uid: 1733 + components: + - type: Transform + pos: 51.5,35.5 + parent: 1 + - uid: 2300 + components: + - type: Transform + pos: 60.5,36.5 + parent: 1 + - uid: 2305 + components: + - type: Transform + pos: 60.5,60.5 + parent: 1 + - uid: 2362 + components: + - type: Transform + pos: 81.5,51.5 + parent: 1 + - uid: 2363 + components: + - type: Transform + pos: 81.5,45.5 + parent: 1 + - uid: 2398 + components: + - type: Transform + pos: 65.5,52.5 + parent: 1 + - uid: 2399 + components: + - type: Transform + pos: 65.5,44.5 + parent: 1 + - uid: 2401 + components: + - type: Transform + pos: 49.5,65.5 + parent: 1 + - uid: 2407 + components: + - type: Transform + pos: 58.5,55.5 + parent: 1 + - uid: 2411 + components: + - type: Transform + pos: 55.5,41.5 + parent: 1 + - uid: 3051 + components: + - type: Transform + pos: 73.5,71.5 + parent: 1 + - uid: 3275 + components: + - type: Transform + pos: 69.5,74.5 + parent: 1 + - uid: 3771 + components: + - type: Transform + pos: 49.5,26.5 + parent: 1 + - uid: 3840 + components: + - type: Transform + pos: 49.5,80.5 + parent: 1 + - uid: 3894 + components: + - type: Transform + pos: 68.5,18.5 + parent: 1 + - uid: 5804 + components: + - type: Transform + pos: 34.5,43.5 + parent: 1 + - uid: 6161 + components: + - type: Transform + pos: 35.5,59.5 + parent: 1 + - uid: 6327 + components: + - type: Transform + pos: 28.5,53.5 + parent: 1 + - uid: 6328 + components: + - type: Transform + pos: 40.5,53.5 + parent: 1 +- proto: DisposalYJunction + entities: + - uid: 3022 + components: + - type: Transform + pos: 56.5,21.5 + parent: 1 + - uid: 3077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,21.5 + parent: 1 + - uid: 3098 + components: + - type: Transform + pos: 61.5,38.5 + parent: 1 + - uid: 3240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,38.5 + parent: 1 + - uid: 3303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,67.5 + parent: 1 + - uid: 3306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,67.5 + parent: 1 +- proto: DresserFilled + entities: + - uid: 2501 + components: + - type: Transform + pos: 51.5,23.5 + parent: 1 + - uid: 2502 + components: + - type: Transform + pos: 51.5,26.5 + parent: 1 + - uid: 2503 + components: + - type: Transform + pos: 57.5,23.5 + parent: 1 + - uid: 2504 + components: + - type: Transform + pos: 57.5,26.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 5946 + components: + - type: Transform + pos: 40.686066,67.48985 + parent: 1 + - uid: 5947 + components: + - type: Transform + pos: 40.404816,67.36476 + parent: 1 +- proto: DrinkBottleBeer + entities: + - uid: 5948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.613148,66.749756 + parent: 1 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 4713 + components: + - type: Transform + pos: 51.974365,44.815838 + parent: 1 + - uid: 6169 + components: + - type: Transform + pos: 35.614975,61.92058 + parent: 1 +- proto: DrinkGildlagerGlass + entities: + - uid: 6159 + components: + - type: Transform + pos: 35.34414,62.05609 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 2666 + components: + - type: Transform + pos: 55.495975,44.62876 + parent: 1 + - uid: 2667 + components: + - type: Transform + pos: 55.32931,44.743427 + parent: 1 + - uid: 2668 + components: + - type: Transform + pos: 55.662643,44.733 + parent: 1 + - uid: 4707 + components: + - type: Transform + pos: 51.6827,45.639328 + parent: 1 + - uid: 4708 + components: + - type: Transform + pos: 51.453533,45.51424 + parent: 1 + - uid: 4709 + components: + - type: Transform + pos: 51.286865,45.70187 + parent: 1 +- proto: DrinkGoldenCup + entities: + - uid: 6188 + components: + - type: Transform + pos: 29.500002,63.45083 + parent: 1 +- proto: DrinkHotCoco + entities: + - uid: 6728 + components: + - type: Transform + pos: 65.36647,31.713562 + parent: 1 +- proto: DrinkHotCoffee + entities: + - uid: 4615 + components: + - type: Transform + pos: 78.995224,47.63867 + parent: 1 +- proto: DrinkJigger + entities: + - uid: 4711 + components: + - type: Transform + pos: 51.71395,45.03474 + parent: 1 +- proto: DrinkMug + entities: + - uid: 4585 + components: + - type: Transform + pos: 42.387615,65.66749 + parent: 1 +- proto: DrinkMugDog + entities: + - uid: 2506 + components: + - type: Transform + pos: 52.452152,33.795906 + parent: 1 +- proto: DrinkMugHeart + entities: + - uid: 2366 + components: + - type: Transform + pos: 52.795902,33.566578 + parent: 1 +- proto: DrinkMugMetal + entities: + - uid: 2748 + components: + - type: Transform + pos: 84.64552,29.714083 + parent: 1 +- proto: EncryptionKeyCentCom + entities: + - uid: 6354 + components: + - type: Transform + pos: 42.61021,53.692966 + parent: 1 +- proto: EuphoniumInstrument + entities: + - uid: 1725 + components: + - type: Transform + pos: 57.541027,32.646713 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,36.5 + parent: 1 + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,45.5 + parent: 1 + - uid: 6752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,60.5 + parent: 1 + - uid: 6753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,54.5 + parent: 1 + - uid: 6754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,33.5 + parent: 1 + - uid: 6755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,23.5 + parent: 1 + - uid: 6756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,35.5 + parent: 1 + - uid: 6757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,46.5 + parent: 1 + - uid: 6758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,34.5 + parent: 1 + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,54.5 + parent: 1 + - uid: 6760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,66.5 + parent: 1 + - uid: 6761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,72.5 + parent: 1 + - uid: 6762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,73.5 + parent: 1 +- proto: FaxMachineCentcom + entities: + - uid: 1997 + components: + - type: Transform + pos: 79.5,49.5 + parent: 1 +- proto: filingCabinetDrawerRandom + entities: + - uid: 4591 + components: + - type: Transform + pos: 46.5,63.5 + parent: 1 +- proto: filingCabinetTallRandom + entities: + - uid: 3915 + components: + - type: Transform + pos: 44.5,67.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 273 + components: + - type: Transform + pos: 69.5,49.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 66.5,49.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 50.5,21.5 + parent: 1 + - uid: 599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,54.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,42.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6804 + - uid: 1669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,21.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,31.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,25.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,71.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,39.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6806 + - uid: 1712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,65.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,72.5 + parent: 1 + - uid: 1742 + components: + - type: Transform + pos: 47.5,35.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - uid: 1921 + components: + - type: Transform + pos: 48.5,61.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - 6804 + - uid: 1922 + components: + - type: Transform + pos: 72.5,36.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - uid: 1923 + components: + - type: Transform + pos: 73.5,36.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - uid: 1924 + components: + - type: Transform + pos: 77.5,44.5 + parent: 1 + - uid: 1925 + components: + - type: Transform + pos: 77.5,52.5 + parent: 1 + - uid: 1926 + components: + - type: Transform + pos: 72.5,60.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6795 + - uid: 1927 + components: + - type: Transform + pos: 73.5,60.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6795 + - uid: 1928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,51.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6785 + - uid: 1929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6785 + - uid: 1930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6785 + - uid: 1931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6785 + - uid: 1932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6784 + - uid: 1933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6784 + - uid: 1934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,44.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6784 + - uid: 1935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,45.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6784 + - uid: 1936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,59.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - 6804 + - uid: 1937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - 6804 + - uid: 1938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,57.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - 6804 + - uid: 1939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6806 + - uid: 1940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6806 + - uid: 1941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - 6790 + - uid: 1942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - 6790 + - uid: 1943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - 6790 + - uid: 1944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,59.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - 6787 + - uid: 1945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - 6787 + - uid: 1946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,57.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - 6787 + - uid: 1947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,39.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6788 + - uid: 1948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6788 + - uid: 1949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6788 + - uid: 1950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - 6794 + - uid: 1951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - 6794 + - uid: 1952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - 6794 + - uid: 1953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,67.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6795 + - 6796 + - uid: 1954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6795 + - 6796 + - uid: 1955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,65.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6795 + - 6796 + - uid: 1981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,55.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6794 + - uid: 1982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6794 + - uid: 1983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,57.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6794 + - uid: 1984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,39.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - 6789 + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,40.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - 6789 + - uid: 1986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,41.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - 6789 + - uid: 1998 + components: + - type: Transform + pos: 71.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - uid: 1999 + components: + - type: Transform + pos: 70.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - uid: 2000 + components: + - type: Transform + pos: 72.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - uid: 2001 + components: + - type: Transform + pos: 72.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - uid: 2002 + components: + - type: Transform + pos: 71.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - uid: 2003 + components: + - type: Transform + pos: 70.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - uid: 2048 + components: + - type: Transform + pos: 47.5,61.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - 6804 + - uid: 2066 + components: + - type: Transform + pos: 69.5,47.5 + parent: 1 + - uid: 2114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,54.5 + parent: 1 + - uid: 2328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6781 + - uid: 2426 + components: + - type: Transform + pos: 69.5,32.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - uid: 2427 + components: + - type: Transform + pos: 70.5,32.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - uid: 2431 + components: + - type: Transform + pos: 62.5,40.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - 6783 + - uid: 2432 + components: + - type: Transform + pos: 62.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - 6786 + - uid: 2434 + components: + - type: Transform + pos: 69.5,60.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6795 + - uid: 2435 + components: + - type: Transform + pos: 70.5,60.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - 6795 + - uid: 2436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - 6805 + - uid: 2437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,65.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - 6805 + - uid: 2639 + components: + - type: Transform + pos: 30.5,29.5 + parent: 1 + - uid: 2882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6804 + - uid: 2883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6804 + - uid: 2884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - uid: 2885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - uid: 2886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - uid: 3008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,42.5 + parent: 1 + - uid: 3343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,26.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4628 + - uid: 3697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6781 + - uid: 3701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - uid: 3703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,27.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - 6778 + - uid: 3704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,27.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - 6778 + - uid: 3705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,22.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4628 + - 6781 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,76.5 + parent: 1 + - uid: 4685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,82.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6800 + - uid: 4686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,82.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6800 + - uid: 4687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,82.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6800 + - uid: 4735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6784 + - uid: 4736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,47.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - uid: 4737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - uid: 4738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,49.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - uid: 4739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,47.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - 6817 + - uid: 4740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - 6817 + - uid: 4741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,49.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - 6817 + - uid: 4742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,51.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - uid: 4743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,55.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6818 + - 6819 + - uid: 4744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6818 + - 6822 + - uid: 4745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,55.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6818 + - 6821 + - uid: 4746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,61.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6805 + - uid: 4747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,68.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - 6805 + - uid: 6150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - uid: 6151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - uid: 6573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,22.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - uid: 6574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,22.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - uid: 6738 + components: + - type: Transform + pos: 66.5,47.5 + parent: 1 + - uid: 6791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,49.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - uid: 6792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - uid: 6793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,47.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,62.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6799 + - uid: 6798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,62.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6799 + - uid: 6807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,35.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - uid: 6809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - uid: 6810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - uid: 6811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,31.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - uid: 6812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,31.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - uid: 6814 + components: + - type: Transform + pos: 31.5,45.5 + parent: 1 + - uid: 6815 + components: + - type: Transform + pos: 32.5,45.5 + parent: 1 + - uid: 6816 + components: + - type: Transform + pos: 33.5,45.5 + parent: 1 +- proto: Fireplace + entities: + - uid: 6155 + components: + - type: Transform + pos: 32.5,63.5 + parent: 1 +- proto: Flash + entities: + - uid: 6152 + components: + - type: Transform + pos: 69.51149,69.56881 + parent: 1 +- proto: FlippoLighter + entities: + - uid: 6281 + components: + - type: Transform + pos: 34.71099,53.569324 + parent: 1 +- proto: FloorDrain + entities: + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2336 + components: + - type: Transform + pos: 68.5,20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2568 + components: + - type: Transform + pos: 51.5,30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,53.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 4343 + components: + - type: Transform + pos: 70.5,23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 6723 + components: + - type: Transform + pos: 70.5,28.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonut + entities: + - uid: 6173 + components: + - type: Transform + pos: 31.635805,61.712105 + parent: 1 + - uid: 6276 + components: + - type: Transform + pos: 37.583424,54.572777 + parent: 1 +- proto: FoodCakeChocolate + entities: + - uid: 656 + components: + - type: Transform + pos: 53.27507,33.97311 + parent: 1 +- proto: FoodDonutChocolate + entities: + - uid: 6277 + components: + - type: Transform + pos: 37.395924,54.301754 + parent: 1 +- proto: FoodPlateSmall + entities: + - uid: 2662 + components: + - type: Transform + pos: 61.357624,55.638588 + parent: 1 + - uid: 2663 + components: + - type: Transform + pos: 61.357624,55.638588 + parent: 1 + - uid: 2664 + components: + - type: Transform + pos: 61.357624,55.638588 + parent: 1 +- proto: FoodPoppy + entities: + - uid: 6279 + components: + - type: Transform + pos: 34.479256,56.876457 + parent: 1 +- proto: FoodSoupEscargot + entities: + - uid: 5287 + components: + - type: Transform + pos: 45.51521,81.700714 + parent: 1 +- proto: ForkPlastic + entities: + - uid: 2656 + components: + - type: Transform + pos: 61.388874,55.61774 + parent: 1 + - uid: 2657 + components: + - type: Transform + pos: 61.388874,55.61774 + parent: 1 + - uid: 2658 + components: + - type: Transform + pos: 61.388874,55.61774 + parent: 1 +- proto: GasFilterFlipped + entities: + - uid: 6583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMinerNitrogenStation + entities: + - uid: 3743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,24.5 + parent: 1 +- proto: GasMinerOxygenStation + entities: + - uid: 3739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 1 +- proto: GasMixer + entities: + - uid: 3757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,29.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 3724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPassiveVent + entities: + - uid: 2417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,51.5 + parent: 1 + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,50.5 + parent: 1 + - uid: 3775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBend + entities: + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,50.5 + parent: 1 + - uid: 2577 + components: + - type: Transform + pos: 31.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2622 + components: + - type: Transform + pos: 33.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3439 + components: + - type: Transform + pos: 63.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3578 + components: + - type: Transform + pos: 71.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3616 + components: + - type: Transform + pos: 84.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4308 + components: + - type: Transform + pos: 53.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4718 + components: + - type: Transform + pos: 52.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5869 + components: + - type: Transform + pos: 49.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,79.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5924 + components: + - type: Transform + pos: 47.5,79.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,29.5 + parent: 1 + - uid: 6619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 2895 + components: + - type: Transform + pos: 47.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2936 + components: + - type: Transform + pos: 31.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3400 + components: + - type: Transform + pos: 70.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3803 + components: + - type: Transform + pos: 54.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3805 + components: + - type: Transform + pos: 55.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6584 + components: + - type: Transform + pos: 64.5,30.5 + parent: 1 + - uid: 6601 + components: + - type: Transform + pos: 67.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 3738 + components: + - type: Transform + pos: 47.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorWaste + entities: + - uid: 3740 + components: + - type: Transform + pos: 49.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1363 + components: + - type: Transform + pos: 47.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1372 + components: + - type: Transform + pos: 33.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1660 + components: + - type: Transform + pos: 47.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2769 + components: + - type: Transform + pos: 47.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2771 + components: + - type: Transform + pos: 49.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2772 + components: + - type: Transform + pos: 47.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2782 + components: + - type: Transform + pos: 49.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2787 + components: + - type: Transform + pos: 49.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2851 + components: + - type: Transform + pos: 33.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2852 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2853 + components: + - type: Transform + pos: 33.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2854 + components: + - type: Transform + pos: 33.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2855 + components: + - type: Transform + pos: 31.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2856 + components: + - type: Transform + pos: 31.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2857 + components: + - type: Transform + pos: 31.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2858 + components: + - type: Transform + pos: 31.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2859 + components: + - type: Transform + pos: 31.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2860 + components: + - type: Transform + pos: 31.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2887 + components: + - type: Transform + pos: 49.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2889 + components: + - type: Transform + pos: 47.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2909 + components: + - type: Transform + pos: 49.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2910 + components: + - type: Transform + pos: 49.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2915 + components: + - type: Transform + pos: 49.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2917 + components: + - type: Transform + pos: 47.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2918 + components: + - type: Transform + pos: 47.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2919 + components: + - type: Transform + pos: 49.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2924 + components: + - type: Transform + pos: 55.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2925 + components: + - type: Transform + pos: 55.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2926 + components: + - type: Transform + pos: 55.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2927 + components: + - type: Transform + pos: 55.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2928 + components: + - type: Transform + pos: 54.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2929 + components: + - type: Transform + pos: 54.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2956 + components: + - type: Transform + pos: 33.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2983 + components: + - type: Transform + pos: 31.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2984 + components: + - type: Transform + pos: 31.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2985 + components: + - type: Transform + pos: 31.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2986 + components: + - type: Transform + pos: 31.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3327 + components: + - type: Transform + pos: 63.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3364 + components: + - type: Transform + pos: 49.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3365 + components: + - type: Transform + pos: 49.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3366 + components: + - type: Transform + pos: 49.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3367 + components: + - type: Transform + pos: 49.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3368 + components: + - type: Transform + pos: 47.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3369 + components: + - type: Transform + pos: 47.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3370 + components: + - type: Transform + pos: 47.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3372 + components: + - type: Transform + pos: 70.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3376 + components: + - type: Transform + pos: 63.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3451 + components: + - type: Transform + pos: 61.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3452 + components: + - type: Transform + pos: 61.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3453 + components: + - type: Transform + pos: 61.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3454 + components: + - type: Transform + pos: 63.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3455 + components: + - type: Transform + pos: 61.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3456 + components: + - type: Transform + pos: 61.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3458 + components: + - type: Transform + pos: 61.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3467 + components: + - type: Transform + pos: 69.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3469 + components: + - type: Transform + pos: 69.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3477 + components: + - type: Transform + pos: 61.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3478 + components: + - type: Transform + pos: 61.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3485 + components: + - type: Transform + pos: 69.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3486 + components: + - type: Transform + pos: 69.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3487 + components: + - type: Transform + pos: 69.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3488 + components: + - type: Transform + pos: 61.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3489 + components: + - type: Transform + pos: 63.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3491 + components: + - type: Transform + pos: 70.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3492 + components: + - type: Transform + pos: 70.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3493 + components: + - type: Transform + pos: 70.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3494 + components: + - type: Transform + pos: 70.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3495 + components: + - type: Transform + pos: 70.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3496 + components: + - type: Transform + pos: 70.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3497 + components: + - type: Transform + pos: 70.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3498 + components: + - type: Transform + pos: 70.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3513 + components: + - type: Transform + pos: 72.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3585 + components: + - type: Transform + pos: 70.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3587 + components: + - type: Transform + pos: 70.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3588 + components: + - type: Transform + pos: 70.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3589 + components: + - type: Transform + pos: 70.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3590 + components: + - type: Transform + pos: 70.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3591 + components: + - type: Transform + pos: 70.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3592 + components: + - type: Transform + pos: 70.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3593 + components: + - type: Transform + pos: 70.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3594 + components: + - type: Transform + pos: 70.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3596 + components: + - type: Transform + pos: 70.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3598 + components: + - type: Transform + pos: 70.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3599 + components: + - type: Transform + pos: 72.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3600 + components: + - type: Transform + pos: 72.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3601 + components: + - type: Transform + pos: 72.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3602 + components: + - type: Transform + pos: 72.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3603 + components: + - type: Transform + pos: 72.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3606 + components: + - type: Transform + pos: 72.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3607 + components: + - type: Transform + pos: 72.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3608 + components: + - type: Transform + pos: 72.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3610 + components: + - type: Transform + pos: 72.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3611 + components: + - type: Transform + pos: 72.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3612 + components: + - type: Transform + pos: 72.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3626 + components: + - type: Transform + pos: 84.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3627 + components: + - type: Transform + pos: 84.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3628 + components: + - type: Transform + pos: 84.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3629 + components: + - type: Transform + pos: 84.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3630 + components: + - type: Transform + pos: 84.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3631 + components: + - type: Transform + pos: 84.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3632 + components: + - type: Transform + pos: 84.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3725 + components: + - type: Transform + pos: 44.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3742 + components: + - type: Transform + pos: 42.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3745 + components: + - type: Transform + pos: 47.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3746 + components: + - type: Transform + pos: 47.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3747 + components: + - type: Transform + pos: 47.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3748 + components: + - type: Transform + pos: 49.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3749 + components: + - type: Transform + pos: 49.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3750 + components: + - type: Transform + pos: 49.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3754 + components: + - type: Transform + pos: 49.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3830 + components: + - type: Transform + pos: 55.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3831 + components: + - type: Transform + pos: 55.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3832 + components: + - type: Transform + pos: 55.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3833 + components: + - type: Transform + pos: 54.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3834 + components: + - type: Transform + pos: 54.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3835 + components: + - type: Transform + pos: 54.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4310 + components: + - type: Transform + pos: 57.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4317 + components: + - type: Transform + pos: 51.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4318 + components: + - type: Transform + pos: 51.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4319 + components: + - type: Transform + pos: 51.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4320 + components: + - type: Transform + pos: 51.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4321 + components: + - type: Transform + pos: 57.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4323 + components: + - type: Transform + pos: 51.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4325 + components: + - type: Transform + pos: 57.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4717 + components: + - type: Transform + pos: 52.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5833 + components: + - type: Transform + pos: 63.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5834 + components: + - type: Transform + pos: 63.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5836 + components: + - type: Transform + pos: 66.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5837 + components: + - type: Transform + pos: 66.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5843 + components: + - type: Transform + pos: 67.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5844 + components: + - type: Transform + pos: 67.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5864 + components: + - type: Transform + pos: 49.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5865 + components: + - type: Transform + pos: 49.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5866 + components: + - type: Transform + pos: 49.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5867 + components: + - type: Transform + pos: 49.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5876 + components: + - type: Transform + pos: 44.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5877 + components: + - type: Transform + pos: 44.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5878 + components: + - type: Transform + pos: 44.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5879 + components: + - type: Transform + pos: 44.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5884 + components: + - type: Transform + pos: 44.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5885 + components: + - type: Transform + pos: 44.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5886 + components: + - type: Transform + pos: 44.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5887 + components: + - type: Transform + pos: 44.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5888 + components: + - type: Transform + pos: 44.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5895 + components: + - type: Transform + pos: 41.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5907 + components: + - type: Transform + pos: 47.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5908 + components: + - type: Transform + pos: 47.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5909 + components: + - type: Transform + pos: 47.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5910 + components: + - type: Transform + pos: 47.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5911 + components: + - type: Transform + pos: 47.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5912 + components: + - type: Transform + pos: 47.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5913 + components: + - type: Transform + pos: 47.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5914 + components: + - type: Transform + pos: 42.5,71.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5915 + components: + - type: Transform + pos: 42.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5917 + components: + - type: Transform + pos: 42.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5918 + components: + - type: Transform + pos: 42.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5919 + components: + - type: Transform + pos: 42.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5920 + components: + - type: Transform + pos: 42.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5921 + components: + - type: Transform + pos: 42.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,79.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6610 + components: + - type: Transform + pos: 67.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6611 + components: + - type: Transform + pos: 67.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6612 + components: + - type: Transform + pos: 67.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6617 + components: + - type: Transform + pos: 63.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6618 + components: + - type: Transform + pos: 63.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6621 + components: + - type: Transform + pos: 63.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6622 + components: + - type: Transform + pos: 63.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6623 + components: + - type: Transform + pos: 63.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6624 + components: + - type: Transform + pos: 63.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6626 + components: + - type: Transform + pos: 63.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6627 + components: + - type: Transform + pos: 63.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6628 + components: + - type: Transform + pos: 63.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6629 + components: + - type: Transform + pos: 63.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6635 + components: + - type: Transform + pos: 69.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6636 + components: + - type: Transform + pos: 69.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6637 + components: + - type: Transform + pos: 69.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6638 + components: + - type: Transform + pos: 69.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6639 + components: + - type: Transform + pos: 69.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6640 + components: + - type: Transform + pos: 69.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6650 + components: + - type: Transform + pos: 64.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6651 + components: + - type: Transform + pos: 64.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6652 + components: + - type: Transform + pos: 64.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6653 + components: + - type: Transform + pos: 64.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6654 + components: + - type: Transform + pos: 64.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6655 + components: + - type: Transform + pos: 64.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6656 + components: + - type: Transform + pos: 64.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6696 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6698 + components: + - type: Transform + pos: 61.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6699 + components: + - type: Transform + pos: 61.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6707 + components: + - type: Transform + pos: 61.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6708 + components: + - type: Transform + pos: 61.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6709 + components: + - type: Transform + pos: 61.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6710 + components: + - type: Transform + pos: 61.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6711 + components: + - type: Transform + pos: 61.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6712 + components: + - type: Transform + pos: 61.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6713 + components: + - type: Transform + pos: 61.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6714 + components: + - type: Transform + pos: 61.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6715 + components: + - type: Transform + pos: 61.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6716 + components: + - type: Transform + pos: 61.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6717 + components: + - type: Transform + pos: 61.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6719 + components: + - type: Transform + pos: 61.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1883 + components: + - type: Transform + pos: 61.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,51.5 + parent: 1 + - uid: 2510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2822 + components: + - type: Transform + pos: 39.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2862 + components: + - type: Transform + pos: 25.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2897 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2921 + components: + - type: Transform + pos: 54.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2922 + components: + - type: Transform + pos: 55.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3326 + components: + - type: Transform + pos: 66.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3329 + components: + - type: Transform + pos: 54.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3339 + components: + - type: Transform + pos: 61.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3354 + components: + - type: Transform + pos: 66.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3393 + components: + - type: Transform + pos: 69.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3432 + components: + - type: Transform + pos: 72.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3524 + components: + - type: Transform + pos: 77.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3530 + components: + - type: Transform + pos: 77.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3694 + components: + - type: Transform + pos: 20.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5821 + components: + - type: Transform + pos: 66.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5823 + components: + - type: Transform + pos: 66.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,71.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,30.5 + parent: 1 + - uid: 6585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6589 + components: + - type: Transform + pos: 67.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6590 + components: + - type: Transform + pos: 69.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 2892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 3755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3756 + components: + - type: Transform + pos: 46.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 2415 + components: + - type: Transform + pos: 51.5,52.5 + parent: 1 + - uid: 6577 + components: + - type: Transform + pos: 63.5,31.5 + parent: 1 + - type: GasThermoMachine + targetTemperature: 73.15 +- proto: GasVentPump + entities: + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6784 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6819 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,29.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6804 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2775 + components: + - type: Transform + pos: 52.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2777 + components: + - type: Transform + pos: 52.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2818 + components: + - type: Transform + pos: 41.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2827 + components: + - type: Transform + pos: 27.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,47.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3319 + components: + - type: Transform + pos: 64.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3341 + components: + - type: Transform + pos: 64.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6785 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,45.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6784 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,65.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6794 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,33.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,44.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,40.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6794 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,49.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3680 + components: + - type: Transform + pos: 18.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,25.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,25.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,34.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4324 + components: + - type: Transform + pos: 51.5,67.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6799 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,60.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6822 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5826 + components: + - type: Transform + pos: 67.5,70.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5827 + components: + - type: Transform + pos: 63.5,70.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,62.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5848 + components: + - type: Transform + pos: 70.5,68.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6795 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5863 + components: + - type: Transform + pos: 47.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5889 + components: + - type: Transform + pos: 44.5,71.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5890 + components: + - type: Transform + pos: 41.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6805 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,79.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5928 + components: + - type: Transform + pos: 55.5,77.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6800 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6198 + components: + - type: Transform + pos: 40.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6821 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6818 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,29.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4628 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6781 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4628 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6821 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6819 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6818 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,44.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6806 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6804 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6813 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,49.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6782 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6786 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,51.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6785 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,44.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6784 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,63.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6794 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6787 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,42.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6788 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3659 + components: + - type: Transform + pos: 79.5,40.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6789 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3663 + components: + - type: Transform + pos: 79.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6794 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,47.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6790 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3679 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6817 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,28.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,33.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6808 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4322 + components: + - type: Transform + pos: 57.5,67.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6799 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,48.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6783 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,62.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6822 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5817 + components: + - type: Transform + pos: 64.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,62.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6796 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,70.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6795 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6803 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5881 + components: + - type: Transform + pos: 43.5,66.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6805 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,71.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,79.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6802 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,29.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6725 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4628 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6781 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6649 + components: + - type: Transform + pos: 64.5,24.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6778 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorRTG + entities: + - uid: 896 + components: + - type: Transform + pos: 39.5,24.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 36.5,24.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: 37.5,26.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 40.5,26.5 + parent: 1 +- proto: GlockenspielInstrument + entities: + - uid: 1727 + components: + - type: Transform + pos: 56.96811,32.594593 + parent: 1 +- proto: GravityGenerator + entities: + - uid: 1868 + components: + - type: Transform + pos: 27.5,37.5 + parent: 1 +- proto: Grille + entities: + - uid: 11 + components: + - type: Transform + pos: 26.5,46.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 27.5,46.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 44.5,61.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 71.5,63.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 71.5,61.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 54.5,85.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 71.5,35.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 52.5,85.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 32.5,50.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 53.5,30.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 68.5,26.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 67.5,26.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 28.5,46.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 58.5,85.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 56.5,76.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 56.5,85.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 53.5,79.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 52.5,60.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 85.5,66.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: 77.5,62.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: 78.5,62.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: 79.5,62.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: 77.5,66.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: 78.5,66.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: 79.5,66.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: 85.5,67.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 85.5,68.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 85.5,60.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 85.5,61.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: 85.5,62.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: 64.5,36.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: 76.5,54.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 77.5,54.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 78.5,54.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 75.5,52.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 76.5,52.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 78.5,52.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 79.5,52.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 85.5,52.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 86.5,52.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 87.5,52.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 88.5,52.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 86.5,50.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: 86.5,46.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: 85.5,44.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: 86.5,44.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: 87.5,44.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: 88.5,44.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: 54.5,41.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: 54.5,42.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: 77.5,34.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: 78.5,34.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 79.5,34.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: 85.5,34.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: 85.5,35.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: 85.5,36.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: 77.5,30.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: 78.5,30.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 79.5,30.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: 85.5,28.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: 85.5,29.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: 85.5,30.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 73.5,29.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 73.5,30.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 73.5,28.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 66.5,32.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 65.5,32.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: 64.5,32.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 65.5,36.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 66.5,36.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 74.5,36.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 71.5,34.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 69.5,42.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: 69.5,43.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: 69.5,44.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: 66.5,42.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 66.5,43.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 66.5,44.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 76.5,42.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 77.5,42.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: 78.5,42.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: 78.5,44.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: 79.5,44.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 76.5,44.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 75.5,44.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 80.5,47.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 80.5,48.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: 80.5,49.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: 74.5,60.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 71.5,62.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: 66.5,60.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: 67.5,60.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: 64.5,60.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: 63.5,60.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: 73.5,66.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: 73.5,67.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: 73.5,68.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: 67.5,68.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: 63.5,68.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: 69.5,73.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: 72.5,73.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: 68.5,74.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: 68.5,75.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: 68.5,77.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: 53.5,60.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: 46.5,61.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: 53.5,62.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: 54.5,62.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: 55.5,62.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: 55.5,60.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: 56.5,60.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: 49.5,61.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: 50.5,55.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: 50.5,54.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: 51.5,56.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: 52.5,56.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 53.5,55.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 53.5,54.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: 50.5,41.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: 50.5,42.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 51.5,40.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: 52.5,40.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: 46.5,40.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: 46.5,41.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 46.5,42.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: 46.5,43.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: 46.5,44.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: 46.5,52.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 46.5,53.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 46.5,54.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 46.5,55.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 46.5,56.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 66.5,54.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 66.5,53.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 66.5,52.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 69.5,54.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 69.5,53.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 69.5,52.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 63.5,56.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 61.5,56.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 69.5,48.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 66.5,48.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 63.5,40.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 61.5,40.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 56.5,36.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 53.5,36.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 46.5,35.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 49.5,35.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: 45.5,34.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 45.5,32.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 43.5,48.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 45.5,48.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 40.5,50.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 41.5,50.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: 42.5,50.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 36.5,50.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: 37.5,50.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: 38.5,50.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: 36.5,46.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: 37.5,46.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: 38.5,46.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 40.5,46.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 41.5,46.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 42.5,46.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 41.5,61.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 40.5,61.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 39.5,61.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: 39.5,62.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: 39.5,63.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 42.5,68.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 44.5,68.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 39.5,70.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: 39.5,71.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: 39.5,72.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: 38.5,72.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: 37.5,72.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 36.5,75.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: 37.5,75.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 38.5,75.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 39.5,75.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: 37.5,78.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 38.5,78.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 39.5,78.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 39.5,80.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 39.5,79.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 42.5,82.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 43.5,82.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: 44.5,82.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: 45.5,82.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: 46.5,82.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: 28.5,59.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: 28.5,60.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: 28.5,62.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: 28.5,63.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: 24.5,57.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: 24.5,58.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: 25.5,58.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: 26.5,58.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: 28.5,50.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: 27.5,50.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: 26.5,50.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 23.5,48.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: 21.5,48.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: 31.5,44.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: 33.5,44.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: 62.5,14.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: 62.5,12.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: 64.5,12.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: 64.5,13.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: 64.5,14.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: 66.5,14.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: 66.5,12.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: 69.5,17.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: 70.5,17.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: 65.5,18.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: 65.5,21.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: 66.5,22.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: 67.5,22.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: 39.5,31.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: 37.5,31.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: 41.5,32.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: 41.5,34.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: 30.5,36.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: 24.5,37.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: 24.5,36.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: 17.5,46.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: 15.5,46.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: 15.5,48.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: 16.5,48.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: 17.5,48.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: 17.5,50.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: 15.5,50.5 + parent: 1 + - uid: 1743 + components: + - type: Transform + pos: 50.5,85.5 + parent: 1 + - uid: 1956 + components: + - type: Transform + pos: 15.5,52.5 + parent: 1 + - uid: 1957 + components: + - type: Transform + pos: 15.5,53.5 + parent: 1 + - uid: 1960 + components: + - type: Transform + pos: 15.5,54.5 + parent: 1 + - uid: 1961 + components: + - type: Transform + pos: 15.5,55.5 + parent: 1 + - uid: 1962 + components: + - type: Transform + pos: 16.5,56.5 + parent: 1 + - uid: 1963 + components: + - type: Transform + pos: 17.5,56.5 + parent: 1 + - uid: 1964 + components: + - type: Transform + pos: 19.5,56.5 + parent: 1 + - uid: 2091 + components: + - type: Transform + pos: 69.5,26.5 + parent: 1 + - uid: 2129 + components: + - type: Transform + pos: 20.5,51.5 + parent: 1 + - uid: 2176 + components: + - type: Transform + pos: 18.5,51.5 + parent: 1 + - uid: 2236 + components: + - type: Transform + pos: 66.5,26.5 + parent: 1 + - uid: 2278 + components: + - type: Transform + pos: 71.5,33.5 + parent: 1 + - uid: 2315 + components: + - type: Transform + pos: 62.5,85.5 + parent: 1 + - uid: 2316 + components: + - type: Transform + pos: 48.5,85.5 + parent: 1 + - uid: 2385 + components: + - type: Transform + pos: 85.5,50.5 + parent: 1 + - uid: 2386 + components: + - type: Transform + pos: 85.5,46.5 + parent: 1 + - uid: 2387 + components: + - type: Transform + pos: 88.5,49.5 + parent: 1 + - uid: 2400 + components: + - type: Transform + pos: 88.5,47.5 + parent: 1 + - uid: 2469 + components: + - type: Transform + pos: 39.5,40.5 + parent: 1 + - uid: 2470 + components: + - type: Transform + pos: 40.5,40.5 + parent: 1 + - uid: 2608 + components: + - type: Transform + pos: 67.5,64.5 + parent: 1 + - uid: 2932 + components: + - type: Transform + pos: 38.5,54.5 + parent: 1 + - uid: 2933 + components: + - type: Transform + pos: 38.5,56.5 + parent: 1 + - uid: 2934 + components: + - type: Transform + pos: 30.5,54.5 + parent: 1 + - uid: 2935 + components: + - type: Transform + pos: 30.5,56.5 + parent: 1 + - uid: 2988 + components: + - type: Transform + pos: 31.5,58.5 + parent: 1 + - uid: 2989 + components: + - type: Transform + pos: 33.5,58.5 + parent: 1 + - uid: 3037 + components: + - type: Transform + pos: 54.5,17.5 + parent: 1 + - uid: 3038 + components: + - type: Transform + pos: 54.5,18.5 + parent: 1 + - uid: 3233 + components: + - type: Transform + pos: 60.5,85.5 + parent: 1 + - uid: 3717 + components: + - type: Transform + pos: 42.5,26.5 + parent: 1 + - uid: 3718 + components: + - type: Transform + pos: 44.5,26.5 + parent: 1 + - uid: 3719 + components: + - type: Transform + pos: 46.5,26.5 + parent: 1 + - uid: 3795 + components: + - type: Transform + pos: 54.5,76.5 + parent: 1 + - uid: 3985 + components: + - type: Transform + pos: 41.5,30.5 + parent: 1 + - uid: 4041 + components: + - type: Transform + pos: 53.5,28.5 + parent: 1 + - uid: 4375 + components: + - type: Transform + pos: 53.5,80.5 + parent: 1 + - uid: 4378 + components: + - type: Transform + pos: 53.5,81.5 + parent: 1 + - uid: 5746 + components: + - type: Transform + pos: 63.5,64.5 + parent: 1 + - uid: 5751 + components: + - type: Transform + pos: 65.5,64.5 + parent: 1 + - uid: 5772 + components: + - type: Transform + pos: 41.5,28.5 + parent: 1 + - uid: 5975 + components: + - type: Transform + pos: 57.5,81.5 + parent: 1 + - uid: 5976 + components: + - type: Transform + pos: 57.5,80.5 + parent: 1 + - uid: 5977 + components: + - type: Transform + pos: 57.5,79.5 + parent: 1 + - uid: 5978 + components: + - type: Transform + pos: 50.5,79.5 + parent: 1 + - uid: 5979 + components: + - type: Transform + pos: 50.5,80.5 + parent: 1 + - uid: 5980 + components: + - type: Transform + pos: 50.5,81.5 + parent: 1 +- proto: GroundTobacco + entities: + - uid: 6283 + components: + - type: Transform + pos: 34.513073,54.00713 + parent: 1 +- proto: GunSafeRifleLecter + entities: + - uid: 5306 + components: + - type: Transform + pos: 62.5,78.5 + parent: 1 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 5305 + components: + - type: Transform + pos: 62.5,79.5 + parent: 1 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 5304 + components: + - type: Transform + pos: 62.5,80.5 + parent: 1 +- proto: GunSafeSubMachineGunWt550 + entities: + - uid: 5307 + components: + - type: Transform + pos: 62.5,77.5 + parent: 1 +- proto: Handcuffs + entities: + - uid: 2697 + components: + - type: Transform + pos: 72.45735,69.4839 + parent: 1 +- proto: HighSecCentralCommandLocked + entities: + - uid: 68 + components: + - type: Transform + pos: 65.5,74.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 68.5,80.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 74.5,48.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 21.5,43.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1 + - uid: 1864 + components: + - type: Transform + pos: 72.5,78.5 + parent: 1 + - uid: 1866 + components: + - type: Transform + pos: 66.5,76.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 2505 + components: + - type: Transform + pos: 51.5,30.5 + parent: 1 +- proto: InflatableDoorStack + entities: + - uid: 2746 + components: + - type: Transform + pos: 84.42677,67.761 + parent: 1 +- proto: InflatableWallStack + entities: + - uid: 2745 + components: + - type: Transform + pos: 84.624695,67.521255 + parent: 1 +- proto: JetpackBlueFilled + entities: + - uid: 5957 + components: + - type: Transform + pos: 49.47698,32.715927 + parent: 1 +- proto: KalimbaInstrument + entities: + - uid: 1728 + components: + - type: Transform + pos: 56.40561,32.552895 + parent: 1 +- proto: KitchenElectricGrill + entities: + - uid: 2413 + components: + - type: Transform + pos: 56.5,52.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 2412 + components: + - type: Transform + pos: 56.5,54.5 + parent: 1 + - uid: 4601 + components: + - type: Transform + pos: 40.5,63.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 2331 + components: + - type: Transform + pos: 67.5,21.5 + parent: 1 + - uid: 2648 + components: + - type: Transform + pos: 54.5,52.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 2414 + components: + - type: Transform + pos: 52.5,52.5 + parent: 1 +- proto: KnifePlastic + entities: + - uid: 2515 + components: + - type: Transform + pos: 53.74382,33.8376 + parent: 1 + - uid: 2653 + components: + - type: Transform + pos: 61.118042,55.607315 + parent: 1 + - uid: 2654 + components: + - type: Transform + pos: 61.118042,55.607315 + parent: 1 + - uid: 2655 + components: + - type: Transform + pos: 61.118042,55.607315 + parent: 1 +- proto: Lamp + entities: + - uid: 2354 + components: + - type: Transform + pos: 74.461334,51.692005 + parent: 1 + - uid: 6273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.520924,57.616558 + parent: 1 + - uid: 6274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.593838,54.5832 + parent: 1 +- proto: LampGold + entities: + - uid: 6191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.677086,62.992176 + parent: 1 + - uid: 6271 + components: + - type: Transform + pos: 34.583424,57.66868 + parent: 1 + - uid: 6272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.62509,53.874374 + parent: 1 +- proto: LargeBeaker + entities: + - uid: 2339 + components: + - type: Transform + pos: 70.57213,18.77547 + parent: 1 +- proto: LockableButtonCargo + entities: + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,78.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2042: + - Pressed: Toggle + 2043: + - Pressed: Toggle + - uid: 2047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,72.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2041: + - Pressed: Toggle + 2040: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 1987 + components: + - type: MetaData + desc: Closes hallway blast doors and opens shutters to route crew through the checkpoint. + name: Checkpoint Doors + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,48.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2546: + - Pressed: Toggle + 2545: + - Pressed: Toggle + 1264: + - Pressed: Toggle + 1263: + - Pressed: Toggle + 1257: + - Pressed: Toggle + 2549: + - Pressed: Toggle + 2550: + - Pressed: Toggle + 1253: + - Pressed: Toggle + 1249: + - Pressed: Toggle + 1209: + - Pressed: Toggle + - uid: 4617 + components: + - type: MetaData + desc: Toggles the blast door adjacent to this button. + name: Exit Blast Door + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,49.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4616: + - Pressed: Toggle + - uid: 4618 + components: + - type: MetaData + desc: Closes the shutters/blast doors around the office. + name: Office Lockdown + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,47.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1823: + - Pressed: Toggle + 1827: + - Pressed: Toggle + 1834: + - Pressed: Toggle + 1828: + - Pressed: Toggle + 1829: + - Pressed: Toggle + 1832: + - Pressed: Toggle + 1831: + - Pressed: Toggle + 1830: + - Pressed: Toggle + 1824: + - Pressed: Toggle + 1822: + - Pressed: Toggle + 1825: + - Pressed: Toggle + 1833: + - Pressed: Toggle + 1826: + - Pressed: Toggle + - uid: 4675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,52.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4671: + - Pressed: Toggle + 4672: + - Pressed: Toggle + 4673: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 2682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,65.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2677: + - Pressed: Toggle + 2678: + - Pressed: Toggle + 2679: + - Pressed: Toggle + 2680: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 5799 + components: + - type: Transform + pos: 49.5,28.5 + parent: 1 +- proto: LockerBoozeFilled + entities: + - uid: 2451 + components: + - type: Transform + pos: 51.5,46.5 + parent: 1 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 2322 + components: + - type: Transform + pos: 45.5,20.5 + parent: 1 + - uid: 2766 + components: + - type: Transform + pos: 53.5,74.5 + parent: 1 + - uid: 5950 + components: + - type: Transform + pos: 33.5,30.5 + parent: 1 + - uid: 6293 + components: + - type: Transform + pos: 59.5,32.5 + parent: 1 +- proto: LockerEngineerFilled + entities: + - uid: 5801 + components: + - type: Transform + pos: 34.5,32.5 + parent: 1 + - uid: 5802 + components: + - type: Transform + pos: 35.5,32.5 + parent: 1 + - uid: 5803 + components: + - type: Transform + pos: 36.5,32.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 2525 + components: + - type: Transform + pos: 69.5,68.5 + parent: 1 +- proto: LockerFreezer + entities: + - uid: 2090 + components: + - type: Transform + pos: 54.5,55.5 + parent: 1 +- proto: LockerParamedicFilled + entities: + - uid: 2708 + components: + - type: Transform + pos: 74.5,34.5 + parent: 1 +- proto: LockerSecurityFilled + entities: + - uid: 1967 + components: + - type: Transform + pos: 87.5,49.5 + parent: 1 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 2764 + components: + - type: Transform + pos: 57.5,74.5 + parent: 1 + - uid: 3793 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1 + - uid: 4772 + components: + - type: Transform + pos: 23.5,51.5 + parent: 1 + - uid: 5949 + components: + - type: Transform + pos: 34.5,30.5 + parent: 1 + - uid: 5961 + components: + - type: Transform + pos: 78.5,74.5 + parent: 1 +- proto: MachineCentrifuge + entities: + - uid: 2332 + components: + - type: Transform + pos: 70.5,20.5 + parent: 1 +- proto: MachineElectrolysisUnit + entities: + - uid: 2330 + components: + - type: Transform + pos: 69.5,18.5 + parent: 1 +- proto: MagazineBoxAntiMateriel + entities: + - uid: 5364 + components: + - type: Transform + pos: 65.53278,79.50994 + parent: 1 +- proto: MaterialBiomass + entities: + - uid: 865 + components: + - type: Transform + pos: 72.32308,24.559591 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 72.552246,24.747221 + parent: 1 + - uid: 2393 + components: + - type: Transform + pos: 72.62516,24.434504 + parent: 1 +- proto: MedicalBed + entities: + - uid: 6743 + components: + - type: Transform + pos: 72.5,30.5 + parent: 1 + - uid: 6774 + components: + - type: Transform + pos: 72.5,27.5 + parent: 1 +- proto: MedicalScanner + entities: + - uid: 1750 + components: + - type: Transform + pos: 70.5,25.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 2433 + components: + - type: Transform + pos: 67.33968,27.75147 + parent: 1 + - uid: 6770 + components: + - type: Transform + pos: 67.32926,27.56384 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 913 + components: + - type: Transform + pos: 67.62093,27.574265 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 67.62093,27.730623 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 911 + components: + - type: Transform + pos: 67.94385,27.532568 + parent: 1 + - uid: 2207 + components: + - type: Transform + pos: 67.94385,27.69935 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 5361 + components: + - type: Transform + pos: 67.4182,78.70366 + parent: 1 + - uid: 5362 + components: + - type: Transform + pos: 67.61612,78.557724 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 2724 + components: + - type: Transform + pos: 84.522964,64.63073 + parent: 1 + - uid: 2726 + components: + - type: Transform + pos: 84.522964,32.654533 + parent: 1 +- proto: MedkitOxygenFilled + entities: + - uid: 6745 + components: + - type: Transform + pos: 68.25635,27.522144 + parent: 1 + - uid: 6747 + components: + - type: Transform + pos: 68.23551,27.69935 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 6730 + components: + - type: Transform + pos: 68.52718,27.7202 + parent: 1 + - uid: 6771 + components: + - type: Transform + pos: 68.52718,27.542992 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 6772 + components: + - type: Transform + pos: 68.73551,27.772318 + parent: 1 + - uid: 6773 + components: + - type: Transform + pos: 68.74593,27.56384 + parent: 1 +- proto: MicrophoneInstrument + entities: + - uid: 1730 + components: + - type: Transform + pos: 57.68686,35.534134 + parent: 1 +- proto: Mirror + entities: + - uid: 2570 + components: + - type: Transform + pos: 52.5,31.5 + parent: 1 +- proto: MopBucketFull + entities: + - uid: 3052 + components: + - type: Transform + pos: 55.5,17.5 + parent: 1 +- proto: MopItem + entities: + - uid: 3054 + components: + - type: Transform + pos: 55.411907,17.607346 + parent: 1 +- proto: Morgue + entities: + - uid: 2259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,19.5 + parent: 1 + - uid: 2262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,19.5 + parent: 1 + - uid: 2263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,19.5 + parent: 1 + - uid: 2292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,19.5 + parent: 1 +- proto: NewtonCradle + entities: + - uid: 6345 + components: + - type: Transform + pos: 27.536348,56.484562 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 5777 + components: + - type: Transform + pos: 49.5,30.5 + parent: 1 + - uid: 5778 + components: + - type: Transform + pos: 49.5,29.5 + parent: 1 +- proto: NitrousOxideCanister + entities: + - uid: 5779 + components: + - type: Transform + pos: 47.5,30.5 + parent: 1 +- proto: OcarinaInstrument + entities: + - uid: 1731 + components: + - type: Transform + pos: 57.384777,35.700916 + parent: 1 +- proto: OperatingTable + entities: + - uid: 6722 + components: + - type: Transform + pos: 70.5,27.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 5775 + components: + - type: Transform + pos: 48.5,30.5 + parent: 1 + - uid: 5776 + components: + - type: Transform + pos: 48.5,29.5 + parent: 1 +- proto: PackPaperRollingFilters + entities: + - uid: 6282 + components: + - type: Transform + pos: 34.513073,53.538055 + parent: 1 +- proto: Paper + entities: + - uid: 2355 + components: + - type: Transform + pos: 79.5076,48.098076 + parent: 1 + - uid: 2356 + components: + - type: Transform + pos: 79.59556,48.162933 + parent: 1 + - uid: 2357 + components: + - type: Transform + pos: 79.683525,48.232426 + parent: 1 + - uid: 6337 + components: + - type: Transform + pos: 42.47944,55.65065 + parent: 1 + - uid: 6338 + components: + - type: Transform + pos: 42.614857,55.70277 + parent: 1 + - uid: 6339 + components: + - type: Transform + pos: 26.66107,55.65065 + parent: 1 + - uid: 6340 + components: + - type: Transform + pos: 26.53607,55.713196 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 6825 + components: + - type: Transform + pos: 18.5,43.5 + parent: 1 +- proto: PaperBin20 + entities: + - uid: 2358 + components: + - type: Transform + pos: 74.5,45.5 + parent: 1 + - uid: 4622 + components: + - type: Transform + pos: 78.5,47.5 + parent: 1 + - uid: 6341 + components: + - type: Transform + pos: 25.5,55.5 + parent: 1 + - uid: 6342 + components: + - type: Transform + pos: 41.5,56.5 + parent: 1 +- proto: PaperCargoBountyManifest + entities: + - uid: 4590 + components: + - type: Transform + pos: 49.704082,64.12126 + parent: 1 +- proto: PaperCargoInvoice + entities: + - uid: 350 + components: + - type: Transform + parent: 2612 + - type: Physics + canCollide: False + - uid: 844 + components: + - type: Transform + parent: 2611 + - type: Physics + canCollide: False + - uid: 845 + components: + - type: Transform + parent: 2613 + - type: Physics + canCollide: False + - uid: 862 + components: + - type: Transform + parent: 2614 + - type: Physics + canCollide: False + - uid: 863 + components: + - type: Transform + parent: 2615 + - type: Physics + canCollide: False + - uid: 5289 + components: + - type: Transform + parent: 5288 + - type: Physics + canCollide: False + - uid: 5291 + components: + - type: Transform + parent: 5290 + - type: Physics + canCollide: False + - uid: 5293 + components: + - type: Transform + parent: 5292 + - type: Physics + canCollide: False + - uid: 6364 + components: + - type: Transform + parent: 6363 + - type: Physics + canCollide: False +- proto: PenCentcom + entities: + - uid: 2347 + components: + - type: Transform + pos: 79.393166,49.00501 + parent: 1 + - uid: 6187 + components: + - type: Transform + pos: 29.645836,60.229843 + parent: 1 + - uid: 6335 + components: + - type: Transform + pos: 26.44232,55.64023 + parent: 1 + - uid: 6336 + components: + - type: Transform + pos: 42.68777,55.588108 + parent: 1 +- proto: PercentileDie + entities: + - uid: 6355 + components: + - type: Transform + pos: 41.43566,56.017498 + parent: 1 +- proto: PhoneInstrumentUpstream + entities: + - uid: 6170 + components: + - type: Transform + pos: 32.458725,61.62871 + parent: 1 +- proto: PianoInstrument + entities: + - uid: 1812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,49.5 + parent: 1 +- proto: PlaqueAtmos + entities: + - uid: 4651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,31.5 + parent: 1 +- proto: PlasmaWindoorSecureCentralCommandLocked + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,78.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,78.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 2036 + components: + - type: Transform + pos: 36.5,77.5 + parent: 1 + - uid: 2037 + components: + - type: Transform + pos: 36.5,73.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: 39.5,73.5 + parent: 1 + - uid: 2039 + components: + - type: Transform + pos: 39.5,77.5 + parent: 1 + - uid: 3041 + components: + - type: Transform + pos: 54.5,15.5 + parent: 1 +- proto: PlushiePenguin + entities: + - uid: 2547 + components: + - type: Transform + pos: 58.536118,23.669628 + parent: 1 +- proto: PlushieRouny + entities: + - uid: 2548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.473614,23.669628 + parent: 1 +- proto: PlushieSharkGrey + entities: + - uid: 2706 + components: + - type: Transform + pos: 53.483402,34.619392 + parent: 1 +- proto: PlushieThrongler + entities: + - uid: 2572 + components: + - type: Transform + pos: 59.594227,19.558416 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: + - uid: 2758 + components: + - type: Transform + pos: 59.5,70.5 + parent: 1 + - uid: 5954 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 5955 + components: + - type: Transform + pos: 49.5,24.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 5296 + components: + - type: Transform + pos: 60.5,28.5 + parent: 1 +- proto: PortableScrubber + entities: + - uid: 2890 + components: + - type: Transform + pos: 46.5,36.5 + parent: 1 +- proto: PosterContrabandClown + entities: + - uid: 4656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,33.5 + parent: 1 +- proto: PosterContrabandDonk + entities: + - uid: 6313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,66.5 + parent: 1 +- proto: PosterContrabandEAT + entities: + - uid: 2669 + components: + - type: Transform + pos: 57.5,56.5 + parent: 1 +- proto: PosterContrabandFunPolice + entities: + - uid: 2707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,70.5 + parent: 1 + - uid: 5345 + components: + - type: Transform + pos: 61.5,79.5 + parent: 1 +- proto: PosterContrabandGreyTide + entities: + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,76.5 + parent: 1 +- proto: PosterContrabandMissingGloves + entities: + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 1 +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,67.5 + parent: 1 +- proto: PosterContrabandSmoke + entities: + - uid: 6316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,60.5 + parent: 1 +- proto: PosterContrabandSunkist + entities: + - uid: 6318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,83.5 + parent: 1 +- proto: PosterContrabandVoteWeh + entities: + - uid: 6319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,72.5 + parent: 1 +- proto: PosterContrabandWehWatches + entities: + - uid: 6295 + components: + - type: Transform + pos: 64.5,34.5 + parent: 1 +- proto: PosterLegit12Gauge + entities: + - uid: 6358 + components: + - type: Transform + pos: 63.5,73.5 + parent: 1 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 3698 + components: + - type: Transform + pos: 68.5,22.5 + parent: 1 +- proto: PosterLegitBuild + entities: + - uid: 2963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,41.5 + parent: 1 + - uid: 4643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,33.5 + parent: 1 +- proto: PosterLegitCleanliness + entities: + - uid: 4658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,40.5 + parent: 1 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 2937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,42.5 + parent: 1 +- proto: PosterLegitEnlist + entities: + - uid: 2693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,76.5 + parent: 1 + - uid: 5971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,39.5 + parent: 1 +- proto: PosterLegitFoamForceAd + entities: + - uid: 4655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,29.5 + parent: 1 +- proto: PosterLegitGetYourLEGS + entities: + - uid: 6280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,58.5 + parent: 1 +- proto: PosterLegitHelpOthers + entities: + - uid: 4659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,44.5 + parent: 1 + - uid: 6298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,52.5 + parent: 1 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 4660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,51.5 + parent: 1 +- proto: PosterLegitHighClassMartini + entities: + - uid: 2671 + components: + - type: Transform + pos: 59.5,41.5 + parent: 1 +- proto: PosterLegitIan + entities: + - uid: 4661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,60.5 + parent: 1 +- proto: PosterLegitIonRifle + entities: + - uid: 5972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,81.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 2672 + components: + - type: Transform + pos: 62.5,29.5 + parent: 1 +- proto: PosterLegitLoveIan + entities: + - uid: 4662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,55.5 + parent: 1 + - uid: 6299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,54.5 + parent: 1 +- proto: PosterLegitNanomichiAd + entities: + - uid: 6359 + components: + - type: Transform + pos: 44.5,42.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 1691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,51.5 + parent: 1 + - uid: 2375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,53.5 + parent: 1 + - uid: 2376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,43.5 + parent: 1 + - uid: 2377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,40.5 + parent: 1 + - uid: 2378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,56.5 + parent: 1 + - uid: 2379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,52.5 + parent: 1 + - uid: 2380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,44.5 + parent: 1 + - uid: 2381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,32.5 + parent: 1 + - uid: 2382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,64.5 + parent: 1 + - uid: 2944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,45.5 + parent: 1 + - uid: 4633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 1 + - uid: 4634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,60.5 + parent: 1 + - uid: 4635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,50.5 + parent: 1 + - uid: 4636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 1 + - uid: 4637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,46.5 + parent: 1 + - uid: 4638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,46.5 + parent: 1 + - uid: 4639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,27.5 + parent: 1 + - uid: 4640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,70.5 + parent: 1 + - uid: 4641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,70.5 + parent: 1 + - uid: 4642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,70.5 + parent: 1 + - uid: 5346 + components: + - type: Transform + pos: 63.5,76.5 + parent: 1 + - uid: 5348 + components: + - type: Transform + pos: 65.5,82.5 + parent: 1 + - uid: 6300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,57.5 + parent: 1 + - uid: 6301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,53.5 + parent: 1 + - uid: 6303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,46.5 + parent: 1 + - uid: 6304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,50.5 + parent: 1 +- proto: PosterLegitNoERP + entities: + - uid: 2527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,23.5 + parent: 1 +- proto: PosterLegitNTTGC + entities: + - uid: 2674 + components: + - type: Transform + pos: 73.5,53.5 + parent: 1 +- proto: PosterLegitObey + entities: + - uid: 6305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,52.5 + parent: 1 +- proto: PosterLegitOppenhopper + entities: + - uid: 2065 + components: + - type: Transform + pos: 52.5,43.5 + parent: 1 +- proto: PosterLegitPDAAd + entities: + - uid: 2675 + components: + - type: Transform + pos: 67.5,40.5 + parent: 1 +- proto: PosterLegitPeriodicTable + entities: + - uid: 2395 + components: + - type: Transform + pos: 68.5,17.5 + parent: 1 +- proto: PosterLegitRenault + entities: + - uid: 4665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,36.5 + parent: 1 +- proto: PosterLegitReportCrimes + entities: + - uid: 4664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,56.5 + parent: 1 + - uid: 6302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,58.5 + parent: 1 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 4666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,25.5 + parent: 1 +- proto: PosterLegitSafetyInternals + entities: + - uid: 4667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,24.5 + parent: 1 + - uid: 6357 + components: + - type: Transform + pos: 41.5,44.5 + parent: 1 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 3700 + components: + - type: Transform + pos: 66.5,17.5 + parent: 1 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 3699 + components: + - type: Transform + pos: 71.5,19.5 + parent: 1 +- proto: PosterLegitSafetyReport + entities: + - uid: 2676 + components: + - type: Transform + pos: 65.5,60.5 + parent: 1 +- proto: PosterLegitSecWatch + entities: + - uid: 4668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,75.5 + parent: 1 +- proto: PosterLegitStateLaws + entities: + - uid: 4669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,64.5 + parent: 1 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,82.5 + parent: 1 +- proto: PosterLegitVacation + entities: + - uid: 2673 + components: + - type: Transform + pos: 73.5,43.5 + parent: 1 + - uid: 6356 + components: + - type: Transform + pos: 37.5,44.5 + parent: 1 +- proto: PosterLegitWalk + entities: + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,58.5 + parent: 1 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 4670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,68.5 + parent: 1 + - uid: 6307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,52.5 + parent: 1 +- proto: PottedPlant0 + entities: + - uid: 2373 + components: + - type: Transform + pos: 85.5,56.5 + parent: 1 +- proto: PottedPlant2 + entities: + - uid: 2374 + components: + - type: Transform + pos: 85.5,40.5 + parent: 1 +- proto: PottedPlant21 + entities: + - uid: 2999 + components: + - type: Transform + pos: 24.5,48.5 + parent: 1 + - uid: 3001 + components: + - type: Transform + pos: 42.5,48.5 + parent: 1 + - uid: 6156 + components: + - type: Transform + pos: 30.5,63.5 + parent: 1 + - uid: 6157 + components: + - type: Transform + pos: 30.5,59.5 + parent: 1 + - uid: 6260 + components: + - type: Transform + pos: 29.5,53.5 + parent: 1 + - uid: 6326 + components: + - type: Transform + pos: 39.5,53.5 + parent: 1 + - uid: 6767 + components: + - type: Transform + pos: 30.5,49.5 + parent: 1 + - uid: 6768 + components: + - type: Transform + pos: 34.5,49.5 + parent: 1 +- proto: PottedPlant22 + entities: + - uid: 6217 + components: + - type: Transform + pos: 33.5,57.5 + parent: 1 +- proto: PowerCageHigh + entities: + - uid: 5341 + components: + - type: Transform + pos: 65.51005,81.70388 + parent: 1 + - uid: 5342 + components: + - type: Transform + pos: 65.52046,81.49541 + parent: 1 + - uid: 5343 + components: + - type: Transform + pos: 66.52046,81.72473 + parent: 1 + - uid: 5344 + components: + - type: Transform + pos: 66.52046,81.52667 + parent: 1 +- proto: PowerCageRecharger + entities: + - uid: 5336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,81.5 + parent: 1 + - uid: 5338 + components: + - type: Transform + pos: 64.5,81.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 2720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,47.5 + parent: 1 + - uid: 4750 + components: + - type: Transform + pos: 72.5,60.5 + parent: 1 + - uid: 4751 + components: + - type: Transform + pos: 72.5,36.5 + parent: 1 + - uid: 6153 + components: + - type: Transform + pos: 47.5,61.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 665 + components: + - type: Transform + pos: 79.5,41.5 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,24.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,51.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,27.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,55.5 + parent: 1 + - uid: 1770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,41.5 + parent: 1 + - uid: 1772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,46.5 + parent: 1 + - uid: 1811 + components: + - type: Transform + pos: 64.5,55.5 + parent: 1 + - uid: 2077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,50.5 + parent: 1 + - uid: 2078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,52.5 + parent: 1 + - uid: 2079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,44.5 + parent: 1 + - uid: 2080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,50.5 + parent: 1 + - uid: 2081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,46.5 + parent: 1 + - uid: 2082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,46.5 + parent: 1 + - uid: 2083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,50.5 + parent: 1 + - uid: 2084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,48.5 + parent: 1 + - uid: 2088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,40.5 + parent: 1 + - uid: 2089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,56.5 + parent: 1 + - uid: 2092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,62.5 + parent: 1 + - uid: 2093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,51.5 + parent: 1 + - uid: 2094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,45.5 + parent: 1 + - uid: 2095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,34.5 + parent: 1 + - uid: 2096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,30.5 + parent: 1 + - uid: 2097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,66.5 + parent: 1 + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,40.5 + parent: 1 + - uid: 2105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,37.5 + parent: 1 + - uid: 2106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,64.5 + parent: 1 + - uid: 2107 + components: + - type: Transform + pos: 53.5,39.5 + parent: 1 + - uid: 2108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,56.5 + parent: 1 + - uid: 2109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,57.5 + parent: 1 + - uid: 2110 + components: + - type: Transform + pos: 58.5,59.5 + parent: 1 + - uid: 2112 + components: + - type: Transform + pos: 57.5,55.5 + parent: 1 + - uid: 2113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,50.5 + parent: 1 + - uid: 2115 + components: + - type: Transform + pos: 56.5,46.5 + parent: 1 + - uid: 2116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,34.5 + parent: 1 + - uid: 2117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,33.5 + parent: 1 + - uid: 2119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,64.5 + parent: 1 + - uid: 2120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,70.5 + parent: 1 + - uid: 2121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,70.5 + parent: 1 + - uid: 2122 + components: + - type: Transform + pos: 73.5,63.5 + parent: 1 + - uid: 2123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,62.5 + parent: 1 + - uid: 2128 + components: + - type: Transform + pos: 65.5,67.5 + parent: 1 + - uid: 2130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,70.5 + parent: 1 + - uid: 2131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,75.5 + parent: 1 + - uid: 2132 + components: + - type: Transform + pos: 71.5,80.5 + parent: 1 + - uid: 2133 + components: + - type: Transform + pos: 63.5,75.5 + parent: 1 + - uid: 2134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,78.5 + parent: 1 + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,74.5 + parent: 1 + - uid: 2137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,34.5 + parent: 1 + - uid: 2138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,34.5 + parent: 1 + - uid: 2142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 1 + - uid: 2143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,20.5 + parent: 1 + - uid: 2144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,18.5 + parent: 1 + - uid: 2145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,20.5 + parent: 1 + - uid: 2174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,48.5 + parent: 1 + - uid: 2175 + components: + - type: Transform + pos: 18.5,55.5 + parent: 1 + - uid: 2177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,47.5 + parent: 1 + - uid: 2180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,53.5 + parent: 1 + - uid: 2183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,43.5 + parent: 1 + - uid: 2184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,45.5 + parent: 1 + - uid: 2186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,61.5 + parent: 1 + - uid: 2190 + components: + - type: Transform + pos: 74.5,69.5 + parent: 1 + - uid: 2191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,27.5 + parent: 1 + - uid: 2192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,40.5 + parent: 1 + - uid: 2193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,33.5 + parent: 1 + - uid: 2194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,56.5 + parent: 1 + - uid: 2197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,63.5 + parent: 1 + - uid: 2198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,63.5 + parent: 1 + - uid: 2200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,65.5 + parent: 1 + - uid: 2201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,75.5 + parent: 1 + - uid: 2202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,75.5 + parent: 1 + - uid: 2203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,69.5 + parent: 1 + - uid: 2204 + components: + - type: Transform + pos: 48.5,81.5 + parent: 1 + - uid: 2205 + components: + - type: Transform + pos: 41.5,81.5 + parent: 1 + - uid: 2206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,69.5 + parent: 1 + - uid: 2208 + components: + - type: Transform + pos: 27.5,57.5 + parent: 1 + - uid: 2210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 1 + - uid: 2211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,53.5 + parent: 1 + - uid: 2212 + components: + - type: Transform + pos: 41.5,57.5 + parent: 1 + - uid: 2214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,51.5 + parent: 1 + - uid: 2216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,43.5 + parent: 1 + - uid: 2217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,45.5 + parent: 1 + - uid: 2218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,51.5 + parent: 1 + - uid: 2219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,45.5 + parent: 1 + - uid: 2220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,51.5 + parent: 1 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,42.5 + parent: 1 + - uid: 2226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,41.5 + parent: 1 + - uid: 2227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,33.5 + parent: 1 + - uid: 2228 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1 + - uid: 2229 + components: + - type: Transform + pos: 38.5,34.5 + parent: 1 + - uid: 2230 + components: + - type: Transform + pos: 42.5,43.5 + parent: 1 + - uid: 2231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,41.5 + parent: 1 + - uid: 2232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,28.5 + parent: 1 + - uid: 2234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,36.5 + parent: 1 + - uid: 2237 + components: + - type: Transform + pos: 65.5,16.5 + parent: 1 + - uid: 2245 + components: + - type: Transform + pos: 32.5,51.5 + parent: 1 + - uid: 2246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,45.5 + parent: 1 + - uid: 2247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,51.5 + parent: 1 + - uid: 2248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,41.5 + parent: 1 + - uid: 2249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,55.5 + parent: 1 + - uid: 2256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,27.5 + parent: 1 + - uid: 2257 + components: + - type: Transform + pos: 45.5,57.5 + parent: 1 + - uid: 2258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,39.5 + parent: 1 + - uid: 2260 + components: + - type: Transform + pos: 64.5,39.5 + parent: 1 + - uid: 2261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,57.5 + parent: 1 + - uid: 2323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,28.5 + parent: 1 + - uid: 2341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,24.5 + parent: 1 + - uid: 2429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,43.5 + parent: 1 + - uid: 2689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,68.5 + parent: 1 + - uid: 2768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,41.5 + parent: 1 + - uid: 2881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,45.5 + parent: 1 + - uid: 2888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,36.5 + parent: 1 + - uid: 2939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,79.5 + parent: 1 + - uid: 3002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,47.5 + parent: 1 + - uid: 3003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,47.5 + parent: 1 + - uid: 3296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,23.5 + parent: 1 + - uid: 3733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,28.5 + parent: 1 + - uid: 3737 + components: + - type: Transform + pos: 45.5,30.5 + parent: 1 + - uid: 4039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,34.5 + parent: 1 + - uid: 4727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,60.5 + parent: 1 + - uid: 5770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 1 + - uid: 5771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,38.5 + parent: 1 + - uid: 6167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,61.5 + parent: 1 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,35.5 + parent: 1 + - uid: 6320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,33.5 + parent: 1 + - uid: 6733 + components: + - type: Transform + pos: 36.5,57.5 + parent: 1 + - uid: 6734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,53.5 + parent: 1 + - uid: 6749 + components: + - type: Transform + pos: 67.5,31.5 + parent: 1 + - uid: 6820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,57.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 2085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,43.5 + parent: 1 + - uid: 2086 + components: + - type: Transform + pos: 87.5,53.5 + parent: 1 + - uid: 2098 + components: + - type: Transform + pos: 83.5,72.5 + parent: 1 + - uid: 2099 + components: + - type: Transform + pos: 76.5,72.5 + parent: 1 + - uid: 2100 + components: + - type: Transform + pos: 79.5,74.5 + parent: 1 + - uid: 2101 + components: + - type: Transform + pos: 54.5,48.5 + parent: 1 + - uid: 2102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,51.5 + parent: 1 + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,45.5 + parent: 1 + - uid: 2124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,61.5 + parent: 1 + - uid: 2125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,61.5 + parent: 1 + - uid: 2126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,71.5 + parent: 1 + - uid: 2127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,71.5 + parent: 1 + - uid: 2140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,78.5 + parent: 1 + - uid: 2149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,22.5 + parent: 1 + - uid: 2150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,24.5 + parent: 1 + - uid: 2151 + components: + - type: Transform + pos: 76.5,25.5 + parent: 1 + - uid: 2152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,63.5 + parent: 1 + - uid: 2153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,64.5 + parent: 1 + - uid: 2154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,69.5 + parent: 1 + - uid: 2155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,77.5 + parent: 1 + - uid: 2156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,77.5 + parent: 1 + - uid: 2157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,73.5 + parent: 1 + - uid: 2159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 1 + - uid: 2160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,32.5 + parent: 1 + - uid: 2161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 1 + - uid: 2162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,21.5 + parent: 1 + - uid: 2163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,23.5 + parent: 1 + - uid: 2164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,18.5 + parent: 1 + - uid: 2165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,33.5 + parent: 1 + - uid: 2167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,20.5 + parent: 1 + - uid: 2168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 1 + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,25.5 + parent: 1 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,29.5 + parent: 1 + - uid: 2171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,29.5 + parent: 1 + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,53.5 + parent: 1 + - uid: 2173 + components: + - type: Transform + pos: 16.5,50.5 + parent: 1 + - uid: 2179 + components: + - type: Transform + pos: 44.5,49.5 + parent: 1 + - uid: 2199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,59.5 + parent: 1 + - uid: 2215 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - uid: 2225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,42.5 + parent: 1 + - uid: 2233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 1 + - uid: 2238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,13.5 + parent: 1 + - uid: 2239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,29.5 + parent: 1 + - uid: 2297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,20.5 + parent: 1 + - uid: 2298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,20.5 + parent: 1 + - uid: 3059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 1 + - uid: 3274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 1 + - uid: 3708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 1 + - uid: 3713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,24.5 + parent: 1 + - uid: 3903 + components: + - type: Transform + pos: 67.5,49.5 + parent: 1 + - uid: 4330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,83.5 + parent: 1 + - uid: 4331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,83.5 + parent: 1 + - uid: 5945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,73.5 + parent: 1 +- proto: Rack + entities: + - uid: 1364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,69.5 + parent: 1 + - uid: 1874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,74.5 + parent: 1 + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,75.5 + parent: 1 + - uid: 1958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,41.5 + parent: 1 + - uid: 2542 + components: + - type: Transform + pos: 36.5,23.5 + parent: 1 + - uid: 2590 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1 + - uid: 2591 + components: + - type: Transform + pos: 23.5,45.5 + parent: 1 + - uid: 2665 + components: + - type: Transform + pos: 55.5,44.5 + parent: 1 + - uid: 2723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,64.5 + parent: 1 + - uid: 2725 + components: + - type: Transform + pos: 84.5,32.5 + parent: 1 + - uid: 2964 + components: + - type: Transform + pos: 23.5,40.5 + parent: 1 + - uid: 2968 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1 + - uid: 3004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,74.5 + parent: 1 + - uid: 3790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,20.5 + parent: 1 + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 1 + - uid: 4614 + components: + - type: Transform + pos: 40.5,23.5 + parent: 1 + - uid: 4729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 1 + - uid: 4731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,69.5 + parent: 1 + - uid: 4732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,71.5 + parent: 1 + - uid: 4733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,81.5 + parent: 1 + - uid: 4734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,81.5 + parent: 1 + - uid: 5301 + components: + - type: Transform + pos: 60.5,27.5 + parent: 1 + - uid: 5311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,79.5 + parent: 1 + - uid: 5312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,78.5 + parent: 1 + - uid: 5313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,77.5 + parent: 1 + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,81.5 + parent: 1 + - uid: 5337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,81.5 + parent: 1 +- proto: RagItem + entities: + - uid: 2060 + components: + - type: Transform + pos: 59.601036,42.66191 + parent: 1 + - uid: 4706 + components: + - type: Transform + pos: 52.65145,44.68033 + parent: 1 +- proto: Railing + entities: + - uid: 1764 + components: + - type: Transform + pos: 64.5,45.5 + parent: 1 + - uid: 1767 + components: + - type: Transform + pos: 63.5,45.5 + parent: 1 + - uid: 1771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,51.5 + parent: 1 + - uid: 1773 + components: + - type: Transform + pos: 65.5,45.5 + parent: 1 + - uid: 1776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,51.5 + parent: 1 + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,51.5 + parent: 1 + - uid: 1780 + components: + - type: Transform + pos: 64.5,53.5 + parent: 1 + - uid: 1781 + components: + - type: Transform + pos: 65.5,53.5 + parent: 1 + - uid: 1782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,43.5 + parent: 1 + - uid: 1783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,43.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,49.5 + parent: 1 + - uid: 1805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,46.5 + parent: 1 + - uid: 1808 + components: + - type: Transform + pos: 60.5,50.5 + parent: 1 + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,47.5 + parent: 1 + - uid: 2074 + components: + - type: Transform + pos: 63.5,53.5 + parent: 1 + - uid: 2075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,43.5 + parent: 1 + - uid: 2566 + components: + - type: Transform + pos: 36.5,24.5 + parent: 1 + - uid: 2747 + components: + - type: Transform + pos: 40.5,24.5 + parent: 1 + - uid: 2796 + components: + - type: Transform + pos: 39.5,24.5 + parent: 1 + - uid: 3226 + components: + - type: Transform + pos: 37.5,24.5 + parent: 1 + - uid: 4005 + components: + - type: Transform + pos: 39.5,27.5 + parent: 1 + - uid: 4006 + components: + - type: Transform + pos: 36.5,27.5 + parent: 1 + - uid: 4007 + components: + - type: Transform + pos: 37.5,27.5 + parent: 1 + - uid: 4011 + components: + - type: Transform + pos: 40.5,27.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 1802 + components: + - type: Transform + pos: 61.5,46.5 + parent: 1 + - uid: 1809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,50.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 2582 + components: + - type: Transform + pos: 59.5,43.5 + parent: 1 + - uid: 2583 + components: + - type: Transform + pos: 59.5,44.5 + parent: 1 + - uid: 2584 + components: + - type: Transform + pos: 64.5,42.5 + parent: 1 + - uid: 2585 + components: + - type: Transform + pos: 64.5,54.5 + parent: 1 + - uid: 2586 + components: + - type: Transform + pos: 64.5,45.5 + parent: 1 +- proto: RandomFoodBakedSingle + entities: + - uid: 2578 + components: + - type: Transform + pos: 63.5,54.5 + parent: 1 + - uid: 2579 + components: + - type: Transform + pos: 59.5,53.5 + parent: 1 +- proto: RandomFoodBakedWhole + entities: + - uid: 2580 + components: + - type: Transform + pos: 59.5,51.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 2573 + components: + - type: Transform + pos: 63.5,42.5 + parent: 1 + - uid: 2574 + components: + - type: Transform + pos: 64.5,46.5 + parent: 1 + - uid: 2575 + components: + - type: Transform + pos: 64.5,51.5 + parent: 1 + - uid: 2581 + components: + - type: Transform + pos: 59.5,52.5 + parent: 1 +- proto: RandomFoodSingle + entities: + - uid: 2576 + components: + - type: Transform + pos: 64.5,50.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 2306 + components: + - type: Transform + pos: 59.5,36.5 + parent: 1 + - uid: 2307 + components: + - type: Transform + pos: 59.5,60.5 + parent: 1 + - uid: 4766 + components: + - type: Transform + pos: 20.5,52.5 + parent: 1 +- proto: RandomVendingDrinks + entities: + - uid: 2739 + components: + - type: Transform + pos: 81.5,50.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 2738 + components: + - type: Transform + pos: 81.5,46.5 + parent: 1 +- proto: ReagentContainerFlour + entities: + - uid: 4703 + components: + - type: Transform + pos: 54.65109,54.26669 + parent: 1 +- proto: ReagentContainerSugar + entities: + - uid: 4704 + components: + - type: Transform + pos: 54.474007,54.016518 + parent: 1 +- proto: Recycler + entities: + - uid: 3016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,15.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 90 + components: + - type: Transform + pos: 41.5,30.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 68.5,74.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 68.5,75.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 68.5,77.5 + parent: 1 + - uid: 2308 + components: + - type: Transform + pos: 30.5,36.5 + parent: 1 + - uid: 2309 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1 + - uid: 2310 + components: + - type: Transform + pos: 37.5,31.5 + parent: 1 + - uid: 2311 + components: + - type: Transform + pos: 39.5,31.5 + parent: 1 + - uid: 2945 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1 + - uid: 2955 + components: + - type: Transform + pos: 24.5,37.5 + parent: 1 + - uid: 2965 + components: + - type: Transform + pos: 24.5,36.5 + parent: 1 + - uid: 3720 + components: + - type: Transform + pos: 42.5,26.5 + parent: 1 + - uid: 3721 + components: + - type: Transform + pos: 44.5,26.5 + parent: 1 + - uid: 3722 + components: + - type: Transform + pos: 46.5,26.5 + parent: 1 + - uid: 3983 + components: + - type: Transform + pos: 41.5,28.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 3 + components: + - type: Transform + pos: 15.5,55.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 15.5,54.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 15.5,53.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 15.5,52.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 15.5,50.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 15.5,48.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 15.5,46.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 16.5,56.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 16.5,48.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 17.5,56.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 17.5,50.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 17.5,48.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 17.5,46.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 19.5,56.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 21.5,48.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 23.5,48.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 24.5,58.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 24.5,57.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 25.5,58.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 26.5,58.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 26.5,50.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 26.5,46.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 27.5,50.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 27.5,46.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 28.5,63.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 28.5,62.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 28.5,60.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 28.5,59.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 28.5,50.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 28.5,46.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 71.5,35.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 31.5,44.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 32.5,50.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 33.5,44.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 62.5,85.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 36.5,75.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 36.5,50.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 36.5,46.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 37.5,78.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 37.5,75.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 37.5,72.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 37.5,50.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 37.5,46.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 38.5,78.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 38.5,75.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 38.5,72.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 38.5,50.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 38.5,46.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 39.5,80.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 39.5,79.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 39.5,78.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 39.5,75.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 39.5,72.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 39.5,71.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 39.5,70.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 39.5,63.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 39.5,62.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 39.5,61.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 39.5,40.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 56.5,85.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 40.5,61.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 40.5,50.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 40.5,46.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 40.5,40.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 41.5,61.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 41.5,50.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 41.5,46.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 41.5,34.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 41.5,32.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 42.5,82.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 42.5,68.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 42.5,50.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 42.5,46.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 43.5,82.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 43.5,48.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 44.5,82.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 44.5,68.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 45.5,82.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 45.5,48.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 45.5,34.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 45.5,32.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 46.5,82.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 46.5,61.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 46.5,56.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 46.5,55.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 46.5,54.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 46.5,53.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 46.5,52.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 46.5,44.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 46.5,43.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 46.5,42.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 46.5,41.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 46.5,40.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 46.5,35.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 54.5,85.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 49.5,61.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 49.5,35.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 50.5,55.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 50.5,54.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 50.5,42.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 50.5,41.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 51.5,56.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 51.5,40.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 52.5,60.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 52.5,56.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 52.5,40.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 53.5,62.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 53.5,60.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 53.5,55.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 53.5,54.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 53.5,36.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 54.5,62.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 50.5,85.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 48.5,85.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 55.5,62.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 55.5,60.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 56.5,60.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 56.5,36.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 57.5,80.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 61.5,56.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 61.5,40.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 62.5,14.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 62.5,12.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 63.5,68.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 57.5,79.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 63.5,60.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 63.5,56.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 63.5,40.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 64.5,60.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 64.5,36.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 64.5,32.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 64.5,14.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 64.5,13.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 64.5,12.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 57.5,81.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 65.5,36.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 65.5,32.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 65.5,21.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 65.5,18.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 66.5,60.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 66.5,54.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 66.5,53.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 66.5,52.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: 66.5,44.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 66.5,43.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 66.5,42.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 66.5,36.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 66.5,32.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: 66.5,22.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 66.5,14.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: 66.5,12.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 67.5,68.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 67.5,60.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 67.5,22.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 67.5,26.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 69.5,73.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 69.5,54.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 69.5,53.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 69.5,52.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 69.5,44.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 69.5,43.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 69.5,42.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: 69.5,17.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: 70.5,17.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 71.5,62.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 71.5,34.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 72.5,73.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: 73.5,68.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 73.5,67.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 73.5,66.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 73.5,30.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 73.5,29.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 73.5,28.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 74.5,60.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 74.5,36.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 75.5,52.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 75.5,44.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 85.5,50.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 76.5,54.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 76.5,52.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 76.5,44.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 76.5,42.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 77.5,66.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: 77.5,62.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: 77.5,54.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: 77.5,42.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: 77.5,34.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: 77.5,30.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: 78.5,66.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: 78.5,62.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: 78.5,54.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: 78.5,52.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: 78.5,44.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 78.5,42.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 78.5,34.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 78.5,30.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 79.5,66.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: 79.5,62.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 54.5,42.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 79.5,52.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 79.5,44.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: 54.5,41.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: 79.5,34.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 79.5,30.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 80.5,49.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 80.5,48.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 80.5,47.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: 85.5,68.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: 85.5,67.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: 85.5,66.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: 85.5,62.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: 85.5,61.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: 85.5,60.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: 85.5,52.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: 85.5,44.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: 85.5,36.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: 85.5,35.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: 85.5,34.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: 85.5,30.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: 85.5,29.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: 85.5,28.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: 86.5,52.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: 86.5,50.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: 86.5,46.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: 86.5,44.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 87.5,52.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: 87.5,44.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: 88.5,52.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 88.5,44.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + pos: 85.5,46.5 + parent: 1 + - uid: 1745 + components: + - type: Transform + pos: 58.5,85.5 + parent: 1 + - uid: 1871 + components: + - type: Transform + pos: 71.5,61.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + pos: 71.5,63.5 + parent: 1 + - uid: 1916 + components: + - type: Transform + pos: 66.5,26.5 + parent: 1 + - uid: 1917 + components: + - type: Transform + pos: 65.5,64.5 + parent: 1 + - uid: 2147 + components: + - type: Transform + pos: 68.5,26.5 + parent: 1 + - uid: 2277 + components: + - type: Transform + pos: 71.5,33.5 + parent: 1 + - uid: 2302 + components: + - type: Transform + pos: 52.5,85.5 + parent: 1 + - uid: 2392 + components: + - type: Transform + pos: 69.5,26.5 + parent: 1 + - uid: 2556 + components: + - type: Transform + pos: 67.5,64.5 + parent: 1 + - uid: 2562 + components: + - type: Transform + pos: 63.5,64.5 + parent: 1 + - uid: 2718 + components: + - type: Transform + pos: 88.5,47.5 + parent: 1 + - uid: 2719 + components: + - type: Transform + pos: 88.5,49.5 + parent: 1 + - uid: 2872 + components: + - type: Transform + pos: 18.5,51.5 + parent: 1 + - uid: 3039 + components: + - type: Transform + pos: 54.5,17.5 + parent: 1 + - uid: 3040 + components: + - type: Transform + pos: 54.5,18.5 + parent: 1 + - uid: 3236 + components: + - type: Transform + pos: 60.5,85.5 + parent: 1 + - uid: 3371 + components: + - type: Transform + pos: 50.5,81.5 + parent: 1 + - uid: 3386 + components: + - type: Transform + pos: 50.5,80.5 + parent: 1 + - uid: 3490 + components: + - type: Transform + pos: 50.5,79.5 + parent: 1 + - uid: 3681 + components: + - type: Transform + pos: 20.5,51.5 + parent: 1 + - uid: 4359 + components: + - type: Transform + pos: 53.5,79.5 + parent: 1 + - uid: 4681 + components: + - type: Transform + pos: 54.5,76.5 + parent: 1 + - uid: 4683 + components: + - type: Transform + pos: 56.5,76.5 + parent: 1 + - uid: 4728 + components: + - type: Transform + pos: 44.5,61.5 + parent: 1 + - uid: 5973 + components: + - type: Transform + pos: 53.5,80.5 + parent: 1 + - uid: 5974 + components: + - type: Transform + pos: 53.5,81.5 + parent: 1 + - uid: 6736 + components: + - type: Transform + pos: 66.5,48.5 + parent: 1 + - uid: 6827 + components: + - type: Transform + pos: 69.5,48.5 + parent: 1 +- proto: RollingPin + entities: + - uid: 4702 + components: + - type: Transform + pos: 54.546925,54.50644 + parent: 1 +- proto: RubberStampApproved + entities: + - uid: 2348 + components: + - type: Transform + pos: 79.69321,47.686382 + parent: 1 + - uid: 4588 + components: + - type: Transform + pos: 49.65547,64.711945 + parent: 1 + - uid: 6346 + components: + - type: Transform + pos: 27.42305,56.152065 + parent: 1 +- proto: RubberStampCentcom + entities: + - uid: 2346 + components: + - type: Transform + pos: 79.705666,49.046703 + parent: 1 +- proto: RubberStampDenied + entities: + - uid: 2349 + components: + - type: Transform + pos: 79.38765,47.512653 + parent: 1 + - uid: 4589 + components: + - type: Transform + pos: 49.356857,64.538216 + parent: 1 + - uid: 6347 + components: + - type: Transform + pos: 27.693882,56.05825 + parent: 1 +- proto: Screen + entities: + - uid: 2445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,52.5 + parent: 1 + - uid: 2446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,44.5 + parent: 1 + - uid: 4626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,55.5 + parent: 1 + - uid: 4627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,41.5 + parent: 1 + - uid: 4631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,39.5 + parent: 1 + - uid: 4632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,57.5 + parent: 1 + - uid: 4785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,68.5 + parent: 1 + - uid: 6823 + components: + - type: Transform + pos: 39.5,46.5 + parent: 1 + - uid: 6824 + components: + - type: Transform + pos: 67.5,32.5 + parent: 1 + - uid: 6826 + components: + - type: Transform + pos: 54.5,62.5 + parent: 1 +- proto: SecurityTechFab + entities: + - uid: 5315 + components: + - type: Transform + pos: 65.5,77.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 5323 + components: + - type: Transform + pos: 64.54074,77.61821 + parent: 1 + - uid: 5324 + components: + - type: Transform + pos: 64.54074,77.61821 + parent: 1 + - uid: 5325 + components: + - type: Transform + pos: 64.54074,77.61821 + parent: 1 +- proto: SheetPlasma + entities: + - uid: 5302 + components: + - type: Transform + pos: 60.5,27.5 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 5958 + components: + - type: Transform + pos: 49.47698,32.99633 + parent: 1 +- proto: SheetPlastic + entities: + - uid: 5317 + components: + - type: Transform + pos: 64.35324,77.60779 + parent: 1 + - uid: 5318 + components: + - type: Transform + pos: 64.35324,77.60779 + parent: 1 + - uid: 5319 + components: + - type: Transform + pos: 64.35324,77.60779 + parent: 1 +- proto: SheetSteel + entities: + - uid: 5320 + components: + - type: Transform + pos: 64.44699,77.60779 + parent: 1 + - uid: 5321 + components: + - type: Transform + pos: 64.44699,77.60779 + parent: 1 + - uid: 5322 + components: + - type: Transform + pos: 64.44699,77.60779 + parent: 1 +- proto: ShelfBar + entities: + - uid: 2670 + components: + - type: Transform + pos: 55.5,47.5 + parent: 1 +- proto: ShelfKitchen + entities: + - uid: 2645 + components: + - type: Transform + pos: 55.5,56.5 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 1822 + components: + - type: Transform + pos: 76.5,52.5 + parent: 1 + - uid: 1823 + components: + - type: Transform + pos: 75.5,44.5 + parent: 1 + - uid: 1824 + components: + - type: Transform + pos: 75.5,52.5 + parent: 1 + - uid: 1825 + components: + - type: Transform + pos: 78.5,52.5 + parent: 1 + - uid: 1826 + components: + - type: Transform + pos: 79.5,52.5 + parent: 1 + - uid: 1827 + components: + - type: Transform + pos: 76.5,44.5 + parent: 1 + - uid: 1828 + components: + - type: Transform + pos: 78.5,44.5 + parent: 1 + - uid: 1829 + components: + - type: Transform + pos: 79.5,44.5 + parent: 1 + - uid: 1830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,49.5 + parent: 1 + - uid: 1831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,48.5 + parent: 1 + - uid: 1832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,47.5 + parent: 1 + - uid: 2677 + components: + - type: Transform + pos: 63.5,60.5 + parent: 1 + - uid: 2678 + components: + - type: Transform + pos: 64.5,60.5 + parent: 1 + - uid: 2679 + components: + - type: Transform + pos: 66.5,60.5 + parent: 1 + - uid: 2680 + components: + - type: Transform + pos: 67.5,60.5 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 2529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 890: + - Pressed: DoorBolt + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,24.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 841: + - Pressed: DoorBolt +- proto: SignArcade + entities: + - uid: 658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,31.5 + parent: 1 +- proto: SignArmory + entities: + - uid: 2388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,78.5 + parent: 1 +- proto: SignAtmos + entities: + - uid: 4650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,31.5 + parent: 1 +- proto: SignBar + entities: + - uid: 1872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,46.5 + parent: 1 + - uid: 2271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,40.5 + parent: 1 +- proto: SignBath + entities: + - uid: 2500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,31.5 + parent: 1 +- proto: SignCargo + entities: + - uid: 4647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,61.5 + parent: 1 +- proto: SignCargoDock + entities: + - uid: 4648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,75.5 + parent: 1 +- proto: SignChem + entities: + - uid: 2111 + components: + - type: Transform + pos: 65.5,22.5 + parent: 1 +- proto: SignCloning + entities: + - uid: 1747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,26.5 + parent: 1 +- proto: SignCryo + entities: + - uid: 2464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,58.5 + parent: 1 + - uid: 4649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,38.5 + parent: 1 +- proto: SignDirectionalBar + entities: + - uid: 2281 + components: + - type: Transform + pos: 69.5,56.5 + parent: 1 + - uid: 2282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.49906,40.315025 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 2389 + components: + - type: Transform + pos: 57.5,36.5 + parent: 1 +- proto: SignDirectionalEng + entities: + - uid: 2265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,40.5 + parent: 1 + - uid: 2286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,42.5 + parent: 1 + - uid: 2291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.49887,54.30968 + parent: 1 +- proto: SignDirectionalFood + entities: + - uid: 2280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,40.5 + parent: 1 + - uid: 2283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.50131,56.686077 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 2267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.499508,56.310932 + parent: 1 + - uid: 2268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.499508,40.309963 + parent: 1 + - uid: 2284 + components: + - type: Transform + pos: 69.50131,56.309273 + parent: 1 + - uid: 2288 + components: + - type: Transform + pos: 73.49882,42.31161 + parent: 1 +- proto: SignDirectionalSec + entities: + - uid: 2269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.499508,40.689857 + parent: 1 + - uid: 2270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.499508,56.690666 + parent: 1 + - uid: 2285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.50131,40.691902 + parent: 1 + - uid: 2290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.49887,54.689575 + parent: 1 +- proto: SignDirectionalSupply + entities: + - uid: 2266 + components: + - type: Transform + pos: 50.5,56.5 + parent: 1 + - uid: 2287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.49882,42.682735 + parent: 1 + - uid: 2289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,54.5 + parent: 1 +- proto: SignDoors + entities: + - uid: 2438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,48.5 + parent: 1 + - uid: 2439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,48.5 + parent: 1 + - uid: 2440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,48.5 + parent: 1 + - uid: 2441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,48.5 + parent: 1 + - uid: 2544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,75.5 + parent: 1 + - uid: 2741 + components: + - type: Transform + pos: 81.5,30.5 + parent: 1 + - uid: 2742 + components: + - type: Transform + pos: 81.5,34.5 + parent: 1 + - uid: 2743 + components: + - type: Transform + pos: 81.5,62.5 + parent: 1 + - uid: 2744 + components: + - type: Transform + pos: 81.5,66.5 + parent: 1 + - uid: 6731 + components: + - type: Transform + pos: 69.5,48.5 + parent: 1 + - uid: 6732 + components: + - type: Transform + pos: 66.5,48.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 3221 + components: + - type: Transform + pos: 38.5,22.5 + parent: 1 + - uid: 4040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,31.5 + parent: 1 + - uid: 5796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,35.5 + parent: 1 + - uid: 5797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,41.5 + parent: 1 +- proto: SignEngine + entities: + - uid: 2553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,31.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 4646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,35.5 + parent: 1 +- proto: SignEscapePods + entities: + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,38.5 + parent: 1 + - uid: 2403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,58.5 + parent: 1 + - uid: 4680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,61.5 + parent: 1 + - uid: 4682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,76.5 + parent: 1 +- proto: SignGravity + entities: + - uid: 4645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,35.5 + parent: 1 +- proto: SignHead + entities: + - uid: 2442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,50.5 + parent: 1 + - uid: 6898 + components: + - type: Transform + pos: 73.5,49.5 + parent: 1 + - uid: 6899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,46.5 + parent: 1 +- proto: SignKitchen + entities: + - uid: 2272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,56.5 + parent: 1 + - uid: 2279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,50.5 + parent: 1 +- proto: SignMagneticsMed + entities: + - uid: 6308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 1 + - uid: 6309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + - uid: 6310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,39.5 + parent: 1 + - uid: 6769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,46.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 2276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,36.5 + parent: 1 +- proto: SignMorgue + entities: + - uid: 2264 + components: + - type: Transform + pos: 71.5,22.5 + parent: 1 +- proto: SignNanotrasen1 + entities: + - uid: 1042 + components: + - type: Transform + pos: 76.5,38.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: 76.5,58.5 + parent: 1 +- proto: SignNanotrasen2 + entities: + - uid: 1508 + components: + - type: Transform + pos: 77.5,38.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + pos: 77.5,58.5 + parent: 1 +- proto: SignNanotrasen3 + entities: + - uid: 1186 + components: + - type: Transform + pos: 78.5,58.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: 78.5,38.5 + parent: 1 +- proto: SignNanotrasen4 + entities: + - uid: 1507 + components: + - type: Transform + pos: 79.5,58.5 + parent: 1 + - uid: 2588 + components: + - type: Transform + pos: 79.5,38.5 + parent: 1 +- proto: SignNanotrasen5 + entities: + - uid: 1104 + components: + - type: Transform + pos: 80.5,58.5 + parent: 1 + - uid: 2589 + components: + - type: Transform + pos: 80.5,38.5 + parent: 1 +- proto: SignPrison + entities: + - uid: 2052 + components: + - type: Transform + pos: 68.5,64.5 + parent: 1 +- proto: SignRedOne + entities: + - uid: 2554 + components: + - type: Transform + pos: 67.5,68.5 + parent: 1 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,26.5 + parent: 1 +- proto: SignRedTwo + entities: + - uid: 2569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,26.5 + parent: 1 + - uid: 2607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,68.5 + parent: 1 +- proto: SignSecureMed + entities: + - uid: 2710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,73.5 + parent: 1 + - uid: 2711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,73.5 + parent: 1 + - uid: 2712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,60.5 + parent: 1 + - uid: 2713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,60.5 + parent: 1 + - uid: 2714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,51.5 + parent: 1 + - uid: 2715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,45.5 + parent: 1 + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,51.5 + parent: 1 + - uid: 2717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,45.5 + parent: 1 + - uid: 4676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,50.5 + parent: 1 + - uid: 4677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,50.5 + parent: 1 + - uid: 4678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,82.5 + parent: 1 + - uid: 4679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,82.5 + parent: 1 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,41.5 + parent: 1 + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,35.5 + parent: 1 +- proto: SignSecureMedRed + entities: + - uid: 5339 + components: + - type: Transform + pos: 63.5,81.5 + parent: 1 + - uid: 5340 + components: + - type: Transform + pos: 65.5,75.5 + parent: 1 +- proto: SignSecurity + entities: + - uid: 2273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,60.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 6740 + components: + - type: Transform + pos: 17.5,48.5 + parent: 1 +- proto: SignTelecomms + entities: + - uid: 4644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,35.5 + parent: 1 +- proto: Sink + entities: + - uid: 3801 + components: + - type: Transform + pos: 52.5,30.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 196 + components: + - type: Transform + pos: 68.5,21.5 + parent: 1 + - uid: 2643 + components: + - type: Transform + pos: 56.5,55.5 + parent: 1 + - uid: 2647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,43.5 + parent: 1 +- proto: SmallLight + entities: + - uid: 2221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,28.5 + parent: 1 + - uid: 2222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,36.5 + parent: 1 + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,32.5 + parent: 1 + - uid: 2240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,64.5 + parent: 1 + - uid: 2241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,60.5 + parent: 1 + - uid: 6136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,68.5 + parent: 1 +- proto: SMESAdvanced + entities: + - uid: 751 + components: + - type: Transform + pos: 38.5,28.5 + parent: 1 + - uid: 3905 + components: + - type: Transform + pos: 37.5,28.5 + parent: 1 + - uid: 3907 + components: + - type: Transform + pos: 39.5,28.5 + parent: 1 + - uid: 4033 + components: + - type: Transform + pos: 27.5,34.5 + parent: 1 +- proto: SoapNT + entities: + - uid: 2533 + components: + - type: Transform + pos: 51.5,30.5 + parent: 1 +- proto: SodaDispenser + entities: + - uid: 2051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,41.5 + parent: 1 + - uid: 2058 + components: + - type: Transform + pos: 57.5,46.5 + parent: 1 + - uid: 6163 + components: + - type: Transform + pos: 35.5,63.5 + parent: 1 +- proto: SpaceCash10 + entities: + - uid: 6362 + components: + - type: Transform + pos: 49.460968,75.82937 + parent: 1 +- proto: SpaceCash100 + entities: + - uid: 6361 + components: + - type: Transform + pos: 48.447357,61.583843 + parent: 1 +- proto: SpaceCash1000 + entities: + - uid: 6360 + components: + - type: Transform + pos: 49.565132,75.98573 + parent: 1 +- proto: SpaceVillainArcade + entities: + - uid: 641 + components: + - type: Transform + pos: 56.5,30.5 + parent: 1 + - uid: 2364 + components: + - type: Transform + pos: 58.5,30.5 + parent: 1 + - uid: 2517 + components: + - type: Transform + pos: 57.5,30.5 + parent: 1 +- proto: SpawnMechRipley + entities: + - uid: 2629 + components: + - type: Transform + pos: 41.5,81.5 + parent: 1 +- proto: SpoonPlastic + entities: + - uid: 2659 + components: + - type: Transform + pos: 61.701374,55.596893 + parent: 1 + - uid: 2660 + components: + - type: Transform + pos: 61.701374,55.596893 + parent: 1 + - uid: 2661 + components: + - type: Transform + pos: 61.701374,55.596893 + parent: 1 +- proto: StasisBed + entities: + - uid: 6724 + components: + - type: Transform + pos: 68.5,31.5 + parent: 1 +- proto: StationAnchorIndestructible + entities: + - uid: 186 + components: + - type: Transform + pos: 26.5,42.5 + parent: 1 +- proto: SteelBench + entities: + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,62.5 + parent: 1 + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,63.5 + parent: 1 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,62.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,63.5 + parent: 1 + - uid: 2443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,49.5 + parent: 1 + - uid: 2444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,48.5 + parent: 1 + - uid: 2453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,47.5 + parent: 1 + - uid: 2465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,67.5 + parent: 1 + - uid: 2466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,65.5 + parent: 1 + - uid: 4698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,84.5 + parent: 1 + - uid: 4699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,83.5 + parent: 1 + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,84.5 + parent: 1 + - uid: 4701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,83.5 + parent: 1 +- proto: Stool + entities: + - uid: 1814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,48.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,51.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,52.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,53.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,54.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,45.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,44.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,43.5 + parent: 1 + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,42.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 2242 + components: + - type: Transform + pos: 59.5,34.5 + parent: 1 + - uid: 2243 + components: + - type: Transform + pos: 79.5,22.5 + parent: 1 + - uid: 2244 + components: + - type: Transform + pos: 80.5,74.5 + parent: 1 + - uid: 2250 + components: + - type: Transform + pos: 59.5,62.5 + parent: 1 + - uid: 2251 + components: + - type: Transform + pos: 59.5,77.5 + parent: 1 + - uid: 2252 + components: + - type: Transform + pos: 51.5,77.5 + parent: 1 + - uid: 2254 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1 + - uid: 3792 + components: + - type: Transform + pos: 45.5,22.5 + parent: 1 + - uid: 4037 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 4758 + components: + - type: Transform + pos: 22.5,55.5 + parent: 1 +- proto: SurveillanceCameraCommand + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,37.5 + parent: 1 + - uid: 6900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,43.5 + parent: 1 + - uid: 6901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,57.5 + parent: 1 + - uid: 6902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,57.5 + parent: 1 + - uid: 6903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,57.5 + parent: 1 + - uid: 6904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,62.5 + parent: 1 + - uid: 6905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,46.5 + parent: 1 +- proto: SurveillanceCameraEngineering + entities: + - uid: 6959 + components: + - type: Transform + pos: 47.5,32.5 + parent: 1 + - uid: 6960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,34.5 + parent: 1 + - uid: 6961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,39.5 + parent: 1 + - uid: 6962 + components: + - type: Transform + pos: 31.5,41.5 + parent: 1 + - uid: 6963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 1 + - uid: 6964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,36.5 + parent: 1 + - uid: 6965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 1 + - uid: 6966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,30.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 6906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,41.5 + parent: 1 + - uid: 6907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,44.5 + parent: 1 + - uid: 6908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,54.5 + parent: 1 + - uid: 6909 + components: + - type: Transform + pos: 59.5,57.5 + parent: 1 + - uid: 6910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,58.5 + parent: 1 + - uid: 6911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,49.5 + parent: 1 + - uid: 6912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,38.5 + parent: 1 + - uid: 6913 + components: + - type: Transform + pos: 62.5,37.5 + parent: 1 + - uid: 6914 + components: + - type: Transform + pos: 31.5,47.5 + parent: 1 + - uid: 6915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,35.5 + parent: 1 + - uid: 6916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,26.5 + parent: 1 + - uid: 6917 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1 + - uid: 6918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,54.5 + parent: 1 + - uid: 6919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,49.5 + parent: 1 + - uid: 6932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,16.5 + parent: 1 + - uid: 6933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,31.5 + parent: 1 + - uid: 6934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,36.5 + parent: 1 + - uid: 6935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,27.5 + parent: 1 + - uid: 6936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,60.5 + parent: 1 + - uid: 6937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,68.5 + parent: 1 + - uid: 6938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,65.5 + parent: 1 + - uid: 6939 + components: + - type: Transform + pos: 81.5,55.5 + parent: 1 + - uid: 6940 + components: + - type: Transform + pos: 81.5,39.5 + parent: 1 + - uid: 6951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,77.5 + parent: 1 + - uid: 6952 + components: + - type: Transform + pos: 49.5,83.5 + parent: 1 + - uid: 6953 + components: + - type: Transform + pos: 61.5,83.5 + parent: 1 + - uid: 6968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,71.5 + parent: 1 + - uid: 6969 + components: + - type: Transform + pos: 56.5,63.5 + parent: 1 +- proto: SurveillanceCameraMedical + entities: + - uid: 6927 + components: + - type: Transform + pos: 74.5,33.5 + parent: 1 + - uid: 6928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,31.5 + parent: 1 + - uid: 6929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,25.5 + parent: 1 + - uid: 6930 + components: + - type: Transform + pos: 68.5,18.5 + parent: 1 + - uid: 6931 + components: + - type: Transform + pos: 74.5,19.5 + parent: 1 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 2474 + components: + - type: Transform + pos: 43.5,43.5 + parent: 1 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 2481 + components: + - type: Transform + pos: 41.5,43.5 + parent: 1 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 2480 + components: + - type: Transform + pos: 41.5,42.5 + parent: 1 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 2479 + components: + - type: Transform + pos: 39.5,42.5 + parent: 1 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 2478 + components: + - type: Transform + pos: 39.5,43.5 + parent: 1 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 2475 + components: + - type: Transform + pos: 43.5,42.5 + parent: 1 +- proto: SurveillanceCameraRouterService + entities: + - uid: 2477 + components: + - type: Transform + pos: 37.5,42.5 + parent: 1 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 2476 + components: + - type: Transform + pos: 37.5,43.5 + parent: 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 6941 + components: + - type: Transform + pos: 87.5,47.5 + parent: 1 + - uid: 6942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,63.5 + parent: 1 + - uid: 6943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,62.5 + parent: 1 + - uid: 6944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,70.5 + parent: 1 + - uid: 6945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,70.5 + parent: 1 + - uid: 6946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,69.5 + parent: 1 + - uid: 6947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,76.5 + parent: 1 + - uid: 6948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,79.5 + parent: 1 + - uid: 6949 + components: + - type: Transform + pos: 64.5,74.5 + parent: 1 + - uid: 6950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,80.5 + parent: 1 +- proto: SurveillanceCameraService + entities: + - uid: 6920 + components: + - type: Transform + pos: 52.5,44.5 + parent: 1 + - uid: 6921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,51.5 + parent: 1 + - uid: 6922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,48.5 + parent: 1 + - uid: 6923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,53.5 + parent: 1 + - uid: 6924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,46.5 + parent: 1 + - uid: 6925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,46.5 + parent: 1 + - uid: 6926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,55.5 + parent: 1 + - uid: 6967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,17.5 + parent: 1 +- proto: SurveillanceCameraSupply + entities: + - uid: 6954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,77.5 + parent: 1 + - uid: 6955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,77.5 + parent: 1 + - uid: 6956 + components: + - type: Transform + pos: 41.5,69.5 + parent: 1 + - uid: 6957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,66.5 + parent: 1 + - uid: 6958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,62.5 + parent: 1 +- proto: Syringe + entities: + - uid: 2340 + components: + - type: Transform + pos: 70.60338,19.817862 + parent: 1 + - uid: 4629 + components: + - type: Transform + pos: 72.53132,29.647219 + parent: 1 +- proto: Table + entities: + - uid: 1821 + components: + - type: Transform + pos: 53.5,33.5 + parent: 1 + - uid: 1839 + components: + - type: Transform + pos: 53.5,34.5 + parent: 1 + - uid: 1888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,61.5 + parent: 1 + - uid: 1889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,61.5 + parent: 1 + - uid: 1890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,71.5 + parent: 1 + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,71.5 + parent: 1 + - uid: 2491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,35.5 + parent: 1 + - uid: 2492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,32.5 + parent: 1 + - uid: 2493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,32.5 + parent: 1 + - uid: 2495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 1 + - uid: 2496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,34.5 + parent: 1 + - uid: 2616 + components: + - type: Transform + pos: 42.5,64.5 + parent: 1 + - uid: 2617 + components: + - type: Transform + pos: 42.5,65.5 + parent: 1 + - uid: 2737 + components: + - type: Transform + pos: 84.5,67.5 + parent: 1 + - uid: 2740 + components: + - type: Transform + pos: 84.5,29.5 + parent: 1 + - uid: 5295 + components: + - type: Transform + pos: 60.5,30.5 + parent: 1 + - uid: 5744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,61.5 + parent: 1 + - uid: 5745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,61.5 + parent: 1 +- proto: TableCounterWood + entities: + - uid: 2049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,46.5 + parent: 1 + - uid: 2050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,46.5 + parent: 1 + - uid: 2054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,41.5 + parent: 1 + - uid: 2055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,41.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 114 + components: + - type: Transform + pos: 67.5,21.5 + parent: 1 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,48.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,47.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,70.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 74.5,33.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: 67.5,27.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 79.5,49.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,52.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 66.5,21.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 70.5,20.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: 73.5,60.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 68.5,27.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,44.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,52.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,60.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: 73.5,36.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: 65.5,19.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,43.5 + parent: 1 + - uid: 1756 + components: + - type: Transform + pos: 65.5,54.5 + parent: 1 + - uid: 1757 + components: + - type: Transform + pos: 64.5,54.5 + parent: 1 + - uid: 1760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,45.5 + parent: 1 + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,51.5 + parent: 1 + - uid: 1774 + components: + - type: Transform + pos: 64.5,42.5 + parent: 1 + - uid: 1775 + components: + - type: Transform + pos: 65.5,42.5 + parent: 1 + - uid: 1785 + components: + - type: Transform + pos: 59.5,45.5 + parent: 1 + - uid: 1786 + components: + - type: Transform + pos: 59.5,43.5 + parent: 1 + - uid: 1787 + components: + - type: Transform + pos: 59.5,42.5 + parent: 1 + - uid: 1788 + components: + - type: Transform + pos: 59.5,44.5 + parent: 1 + - uid: 1789 + components: + - type: Transform + pos: 59.5,54.5 + parent: 1 + - uid: 1790 + components: + - type: Transform + pos: 59.5,53.5 + parent: 1 + - uid: 1791 + components: + - type: Transform + pos: 59.5,52.5 + parent: 1 + - uid: 1792 + components: + - type: Transform + pos: 59.5,51.5 + parent: 1 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,50.5 + parent: 1 + - uid: 1840 + components: + - type: Transform + pos: 79.5,47.5 + parent: 1 + - uid: 1841 + components: + - type: Transform + pos: 79.5,48.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + pos: 74.5,46.5 + parent: 1 + - uid: 1843 + components: + - type: Transform + pos: 74.5,45.5 + parent: 1 + - uid: 1844 + components: + - type: Transform + pos: 75.5,45.5 + parent: 1 + - uid: 1845 + components: + - type: Transform + pos: 74.5,50.5 + parent: 1 + - uid: 1846 + components: + - type: Transform + pos: 74.5,51.5 + parent: 1 + - uid: 1847 + components: + - type: Transform + pos: 75.5,51.5 + parent: 1 + - uid: 1850 + components: + - type: Transform + pos: 73.5,63.5 + parent: 1 + - uid: 1852 + components: + - type: Transform + pos: 74.5,63.5 + parent: 1 + - uid: 1861 + components: + - type: Transform + pos: 69.5,78.5 + parent: 1 + - uid: 1863 + components: + - type: Transform + pos: 70.5,78.5 + parent: 1 + - uid: 1966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,47.5 + parent: 1 + - uid: 2004 + components: + - type: Transform + pos: 58.5,66.5 + parent: 1 + - uid: 2008 + components: + - type: Transform + pos: 58.5,68.5 + parent: 1 + - uid: 2068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,42.5 + parent: 1 + - uid: 2069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,54.5 + parent: 1 + - uid: 2076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,46.5 + parent: 1 + - uid: 2139 + components: + - type: Transform + pos: 70.5,18.5 + parent: 1 + - uid: 2146 + components: + - type: Transform + pos: 70.5,19.5 + parent: 1 + - uid: 2294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,21.5 + parent: 1 + - uid: 2313 + components: + - type: Transform + pos: 47.5,35.5 + parent: 1 + - uid: 2317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,25.5 + parent: 1 + - uid: 2318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,24.5 + parent: 1 + - uid: 2325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,36.5 + parent: 1 + - uid: 2329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,18.5 + parent: 1 + - uid: 2404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,52.5 + parent: 1 + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,53.5 + parent: 1 + - uid: 2406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,54.5 + parent: 1 + - uid: 2408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,79.5 + parent: 1 + - uid: 2409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,53.5 + parent: 1 + - uid: 2410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,54.5 + parent: 1 + - uid: 2543 + components: + - type: Transform + pos: 23.5,41.5 + parent: 1 + - uid: 2555 + components: + - type: Transform + pos: 47.5,61.5 + parent: 1 + - uid: 2571 + components: + - type: Transform + pos: 59.5,19.5 + parent: 1 + - uid: 2592 + components: + - type: Transform + pos: 23.5,42.5 + parent: 1 + - uid: 2593 + components: + - type: Transform + pos: 23.5,43.5 + parent: 1 + - uid: 2594 + components: + - type: Transform + pos: 23.5,44.5 + parent: 1 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,66.5 + parent: 1 + - uid: 2605 + components: + - type: Transform + pos: 46.5,68.5 + parent: 1 + - uid: 2606 + components: + - type: Transform + pos: 46.5,67.5 + parent: 1 + - uid: 2609 + components: + - type: Transform + pos: 48.5,61.5 + parent: 1 + - uid: 2624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,71.5 + parent: 1 + - uid: 2625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,76.5 + parent: 1 + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,75.5 + parent: 1 + - uid: 2627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,78.5 + parent: 1 + - uid: 2628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,79.5 + parent: 1 + - uid: 2640 + components: + - type: Transform + pos: 43.5,38.5 + parent: 1 + - uid: 2641 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1 + - uid: 2650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,55.5 + parent: 1 + - uid: 2651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,55.5 + parent: 1 + - uid: 2684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,69.5 + parent: 1 + - uid: 2685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,70.5 + parent: 1 + - uid: 2702 + components: + - type: Transform + pos: 71.5,80.5 + parent: 1 + - uid: 3005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,75.5 + parent: 1 + - uid: 3006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,75.5 + parent: 1 + - uid: 3007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,75.5 + parent: 1 + - uid: 3777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,33.5 + parent: 1 + - uid: 3778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,34.5 + parent: 1 + - uid: 3789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,32.5 + parent: 1 + - uid: 3913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,63.5 + parent: 1 + - uid: 3914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,64.5 + parent: 1 + - uid: 4380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,64.5 + parent: 1 + - uid: 4593 + components: + - type: Transform + pos: 42.5,67.5 + parent: 1 + - uid: 4594 + components: + - type: Transform + pos: 40.5,67.5 + parent: 1 + - uid: 4596 + components: + - type: Transform + pos: 40.5,66.5 + parent: 1 + - uid: 4597 + components: + - type: Transform + pos: 40.5,65.5 + parent: 1 + - uid: 4598 + components: + - type: Transform + pos: 40.5,63.5 + parent: 1 + - uid: 4599 + components: + - type: Transform + pos: 40.5,62.5 + parent: 1 + - uid: 4600 + components: + - type: Transform + pos: 41.5,62.5 + parent: 1 + - uid: 4619 + components: + - type: Transform + pos: 78.5,47.5 + parent: 1 + - uid: 4620 + components: + - type: Transform + pos: 78.5,49.5 + parent: 1 + - uid: 4730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,69.5 + parent: 1 + - uid: 5309 + components: + - type: Transform + pos: 65.5,79.5 + parent: 1 + - uid: 5316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,77.5 + parent: 1 + - uid: 5747 + components: + - type: Transform + pos: 17.5,43.5 + parent: 1 + - uid: 6598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,31.5 + parent: 1 + - uid: 6741 + components: + - type: Transform + pos: 73.5,33.5 + parent: 1 + - uid: 6779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,31.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 4630 + components: + - type: Transform + pos: 72.5,29.5 + parent: 1 + - uid: 6729 + components: + - type: Transform + pos: 72.5,28.5 + parent: 1 +- proto: TableWood + entities: + - uid: 878 + components: + - type: Transform + pos: 29.5,60.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 29.5,59.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 29.5,63.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 29.5,62.5 + parent: 1 + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,49.5 + parent: 1 + - uid: 1879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,55.5 + parent: 1 + - uid: 2449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,44.5 + parent: 1 + - uid: 2450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,44.5 + parent: 1 + - uid: 2452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,45.5 + parent: 1 + - uid: 2990 + components: + - type: Transform + pos: 31.5,61.5 + parent: 1 + - uid: 2991 + components: + - type: Transform + pos: 32.5,61.5 + parent: 1 + - uid: 2992 + components: + - type: Transform + pos: 33.5,61.5 + parent: 1 + - uid: 6160 + components: + - type: Transform + pos: 35.5,61.5 + parent: 1 + - uid: 6162 + components: + - type: Transform + pos: 35.5,62.5 + parent: 1 + - uid: 6165 + components: + - type: Transform + pos: 34.5,63.5 + parent: 1 + - uid: 6166 + components: + - type: Transform + pos: 35.5,63.5 + parent: 1 + - uid: 6193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,55.5 + parent: 1 + - uid: 6194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,55.5 + parent: 1 + - uid: 6195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,55.5 + parent: 1 + - uid: 6196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,56.5 + parent: 1 + - uid: 6199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,55.5 + parent: 1 + - uid: 6200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,55.5 + parent: 1 + - uid: 6201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,56.5 + parent: 1 + - uid: 6205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,53.5 + parent: 1 + - uid: 6207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,53.5 + parent: 1 + - uid: 6208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,57.5 + parent: 1 + - uid: 6209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,56.5 + parent: 1 + - uid: 6210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,57.5 + parent: 1 + - uid: 6211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,54.5 + parent: 1 + - uid: 6215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,54.5 + parent: 1 + - uid: 6216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,56.5 + parent: 1 + - uid: 6257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,53.5 + parent: 1 + - uid: 6258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,53.5 + parent: 1 + - uid: 6259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,53.5 + parent: 1 + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,53.5 + parent: 1 + - uid: 6324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,53.5 + parent: 1 + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,53.5 + parent: 1 +- proto: TelecomServerFilledCargo + entities: + - uid: 2486 + components: + - type: Transform + pos: 44.5,36.5 + parent: 1 +- proto: TelecomServerFilledCommand + entities: + - uid: 2482 + components: + - type: Transform + pos: 39.5,36.5 + parent: 1 +- proto: TelecomServerFilledCommon + entities: + - uid: 2484 + components: + - type: Transform + pos: 39.5,38.5 + parent: 1 +- proto: TelecomServerFilledEngineering + entities: + - uid: 2485 + components: + - type: Transform + pos: 44.5,37.5 + parent: 1 +- proto: TelecomServerFilledMedical + entities: + - uid: 2471 + components: + - type: Transform + pos: 41.5,38.5 + parent: 1 +- proto: TelecomServerFilledScience + entities: + - uid: 2472 + components: + - type: Transform + pos: 41.5,37.5 + parent: 1 +- proto: TelecomServerFilledSecurity + entities: + - uid: 2483 + components: + - type: Transform + pos: 39.5,37.5 + parent: 1 +- proto: TelecomServerFilledService + entities: + - uid: 2473 + components: + - type: Transform + pos: 41.5,36.5 + parent: 1 +- proto: TintedWindow + entities: + - uid: 34 + components: + - type: Transform + pos: 30.5,54.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 53.5,30.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: 38.5,56.5 + parent: 1 + - uid: 2181 + components: + - type: Transform + pos: 38.5,54.5 + parent: 1 + - uid: 2182 + components: + - type: Transform + pos: 33.5,58.5 + parent: 1 + - uid: 2195 + components: + - type: Transform + pos: 31.5,58.5 + parent: 1 + - uid: 2196 + components: + - type: Transform + pos: 30.5,56.5 + parent: 1 + - uid: 2497 + components: + - type: Transform + pos: 53.5,28.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,28.5 + parent: 1 +- proto: ToolboxElectricalFilled + entities: + - uid: 5960 + components: + - type: Transform + pos: 43.477055,39.59022 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 5962 + components: + - type: Transform + pos: 44.504143,60.663826 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 5959 + components: + - type: Transform + pos: 49.456146,33.840668 + parent: 1 +- proto: TowelColorCentcom + entities: + - uid: 6333 + components: + - type: Transform + pos: 25.588533,53.628414 + parent: 1 + - uid: 6334 + components: + - type: Transform + pos: 41.56413,53.607567 + parent: 1 +- proto: ToyFigurineBartender + entities: + - uid: 2061 + components: + - type: Transform + pos: 59.496872,45.54933 + parent: 1 +- proto: ToyFigurineCargoTech + entities: + - uid: 4605 + components: + - type: Transform + pos: 49.515938,71.80762 + parent: 1 +- proto: ToyFigurineChef + entities: + - uid: 2062 + components: + - type: Transform + pos: 59.496872,54.652943 + parent: 1 +- proto: ToyFigurineChemist + entities: + - uid: 842 + components: + - type: Transform + pos: 67.08632,21.679964 + parent: 1 + - uid: 2338 + components: + - type: Transform + pos: 67.52004,18.744198 + parent: 1 +- proto: ToyFigurineClown + entities: + - uid: 2943 + components: + - type: Transform + pos: 65.51801,54.62642 + parent: 1 +- proto: ToyFigurineDetective + entities: + - uid: 2698 + components: + - type: Transform + pos: 72.63443,70.72435 + parent: 1 +- proto: ToyFigurineEngineer + entities: + - uid: 3906 + components: + - type: Transform + pos: 49.5,34.5 + parent: 1 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 2700 + components: + - type: Transform + pos: 69.54068,78.60886 + parent: 1 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 6742 + components: + - type: Transform + pos: 73.5163,33.680695 + parent: 1 +- proto: ToyFigurineMime + entities: + - uid: 5294 + components: + - type: Transform + pos: 65.49718,42.661396 + parent: 1 +- proto: ToyFigurineMusician + entities: + - uid: 2980 + components: + - type: Transform + pos: 59.507595,49.697533 + parent: 1 +- proto: ToyFigurinePassenger + entities: + - uid: 5297 + components: + - type: Transform + pos: 60.504017,30.645796 + parent: 1 +- proto: ToyFigurineQuartermaster + entities: + - uid: 4607 + components: + - type: Transform + pos: 42.513916,67.707596 + parent: 1 +- proto: ToyFigurineResearchDirector + entities: + - uid: 4769 + components: + - type: Transform + pos: 17.5,55.5 + parent: 1 +- proto: ToyFigurineSalvage + entities: + - uid: 4606 + components: + - type: Transform + pos: 49.49829,79.664604 + parent: 1 +- proto: ToyFigurineSecurity + entities: + - uid: 2063 + components: + - type: Transform + pos: 73.54612,63.67045 + parent: 1 +- proto: ToyFigurineWarden + entities: + - uid: 2699 + components: + - type: Transform + pos: 70.499016,78.598434 + parent: 1 +- proto: TrumpetInstrument + entities: + - uid: 2731 + components: + - type: Transform + pos: 52.59799,34.536003 + parent: 1 +- proto: TurboItemRecharger + entities: + - uid: 2981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,79.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 2032 + components: + - type: Transform + pos: 40.5,78.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2022: + - Left: Forward + - Right: Reverse + - Middle: Off + 2023: + - Left: Forward + - Right: Reverse + - Middle: Off + 2024: + - Left: Forward + - Right: Reverse + - Middle: Off + 2025: + - Left: Forward + - Right: Reverse + - Middle: Off + 2026: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 2033 + components: + - type: Transform + pos: 40.5,72.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2031: + - Left: Forward + - Right: Reverse + - Middle: Off + 2030: + - Left: Forward + - Right: Reverse + - Middle: Off + 2029: + - Left: Forward + - Right: Reverse + - Middle: Off + 2028: + - Left: Forward + - Right: Reverse + - Middle: Off + 2027: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 3056 + components: + - type: Transform + pos: 55.5,16.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3034: + - Left: Forward + - Right: Reverse + - Middle: Off + 3023: + - Left: Forward + - Right: Reverse + - Middle: Off + 3024: + - Left: Forward + - Right: Reverse + - Middle: Off + 3025: + - Left: Forward + - Right: Reverse + - Middle: Off + 3026: + - Left: Forward + - Right: Reverse + - Middle: Off + 3027: + - Left: Forward + - Right: Reverse + - Middle: Off + 3028: + - Left: Forward + - Right: Reverse + - Middle: Off + 3029: + - Left: Forward + - Right: Reverse + - Middle: Off + 3030: + - Left: Forward + - Right: Reverse + - Middle: Off + 3031: + - Left: Forward + - Right: Reverse + - Middle: Off + 3032: + - Left: Forward + - Right: Reverse + - Middle: Off + 3016: + - Left: Forward + - Right: Reverse + - Middle: Off + 3033: + - Left: Forward + - Right: Reverse + - Middle: Off + 3057: + - Left: Forward + - Right: Reverse + - Middle: Off + 3058: + - Left: Open + - Right: Open + - Middle: Close +- proto: VendingBarDrobe + entities: + - uid: 2448 + components: + - type: Transform + pos: 53.5,44.5 + parent: 1 +- proto: VendingMachineAmmo + entities: + - uid: 2701 + components: + - type: Transform + pos: 72.5,80.5 + parent: 1 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 5798 + components: + - type: Transform + pos: 42.5,30.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 2053 + components: + - type: Transform + pos: 58.5,41.5 + parent: 1 + - uid: 6164 + components: + - type: Transform + pos: 35.5,60.5 + parent: 1 +- proto: VendingMachineCargoDrobe + entities: + - uid: 4584 + components: + - type: Transform + pos: 49.5,81.5 + parent: 1 +- proto: VendingMachineCentDrobe + entities: + - uid: 1892 + components: + - type: Transform + pos: 29.5,57.5 + parent: 1 + - uid: 6256 + components: + - type: Transform + pos: 39.5,57.5 + parent: 1 +- proto: VendingMachineChefvend + entities: + - uid: 2646 + components: + - type: Transform + pos: 54.5,50.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 1435 + components: + - type: Transform + pos: 70.5,21.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 2369 + components: + - type: Transform + pos: 85.5,39.5 + parent: 1 + - uid: 2370 + components: + - type: Transform + pos: 85.5,57.5 + parent: 1 +- proto: VendingMachineCondiments + entities: + - uid: 2652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,55.5 + parent: 1 +- proto: VendingMachineDinnerware + entities: + - uid: 2642 + components: + - type: Transform + pos: 55.5,50.5 + parent: 1 +- proto: VendingMachineEngiDrobe + entities: + - uid: 5800 + components: + - type: Transform + pos: 40.5,32.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 6748 + components: + - type: Transform + pos: 66.5,27.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 2683 + components: + - type: Transform + pos: 72.5,68.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 1723 + components: + - type: Transform + pos: 71.5,32.5 + parent: 1 +- proto: WallRiveted + entities: + - uid: 2 + components: + - type: Transform + pos: 15.5,56.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 15.5,51.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 15.5,45.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 15.5,44.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 15.5,43.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 15.5,42.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 15.5,41.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 15.5,40.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 16.5,51.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 16.5,45.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 17.5,51.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 18.5,56.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 59.5,55.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 58.5,50.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 20.5,56.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 21.5,56.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 21.5,55.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 21.5,54.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 59.5,46.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 21.5,52.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 21.5,51.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 21.5,50.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 59.5,41.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 21.5,46.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 21.5,44.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 21.5,42.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 21.5,41.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 21.5,40.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 22.5,56.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 22.5,50.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 23.5,56.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 23.5,50.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 23.5,46.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 24.5,56.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 24.5,55.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 24.5,54.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 24.5,53.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 24.5,52.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 24.5,51.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 24.5,50.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 24.5,46.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 24.5,45.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 24.5,44.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 24.5,43.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 24.5,42.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 24.5,41.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 24.5,34.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 25.5,52.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 25.5,50.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 25.5,46.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 25.5,44.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 26.5,52.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 26.5,44.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 26.5,33.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 27.5,58.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 27.5,52.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 27.5,44.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 27.5,29.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 28.5,64.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 28.5,61.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 28.5,58.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 28.5,52.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 28.5,44.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 28.5,28.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 29.5,64.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 29.5,58.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 29.5,52.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 29.5,50.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 29.5,46.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 29.5,44.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 29.5,43.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 71.5,60.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 29.5,41.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 30.5,64.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 30.5,58.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 30.5,57.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 74.5,71.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 30.5,53.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 30.5,52.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 30.5,51.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 30.5,50.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 30.5,46.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 30.5,45.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 30.5,40.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 63.5,83.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 30.5,34.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 30.5,33.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 30.5,28.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 31.5,64.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 31.5,46.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 32.5,64.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 33.5,64.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 33.5,46.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 33.5,40.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 33.5,31.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 33.5,28.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 34.5,64.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 34.5,58.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 34.5,52.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 34.5,51.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 34.5,50.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 34.5,46.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 34.5,45.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 34.5,44.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 34.5,40.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 34.5,38.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 34.5,36.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 34.5,35.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 34.5,31.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 34.5,28.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 59.5,82.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 65.5,24.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 59.5,85.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 35.5,64.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 35.5,58.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 35.5,52.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 35.5,50.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 35.5,46.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 35.5,44.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 35.5,43.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 35.5,41.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 35.5,35.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 35.5,31.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 35.5,23.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 36.5,78.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 36.5,72.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 36.5,64.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 36.5,63.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 36.5,62.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 36.5,61.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 36.5,60.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 36.5,59.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 36.5,58.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 36.5,52.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 36.5,44.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 36.5,40.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 36.5,35.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 36.5,31.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 37.5,58.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 37.5,52.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 37.5,44.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 37.5,38.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 37.5,37.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 37.5,36.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 37.5,35.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 38.5,58.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 38.5,57.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 38.5,53.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 38.5,52.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 38.5,44.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 38.5,40.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 38.5,35.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 39.5,82.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 39.5,81.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 39.5,69.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 39.5,68.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 39.5,67.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 39.5,66.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 39.5,65.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 39.5,64.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 39.5,58.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 39.5,52.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 39.5,51.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 39.5,50.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 39.5,46.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 39.5,45.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 39.5,44.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 39.5,35.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 40.5,82.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 40.5,68.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 40.5,58.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 40.5,52.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 40.5,44.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 40.5,35.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 40.5,31.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 41.5,82.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 41.5,68.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 41.5,58.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 41.5,52.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 41.5,44.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 41.5,35.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 41.5,31.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 41.5,27.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 41.5,26.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 41.5,25.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 41.5,24.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 41.5,23.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 42.5,61.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 42.5,60.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 42.5,59.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 42.5,58.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 42.5,52.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 42.5,44.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 42.5,35.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 42.5,31.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 42.5,23.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 43.5,58.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 43.5,52.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 43.5,50.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 43.5,46.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 43.5,44.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 43.5,23.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 44.5,58.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 44.5,57.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 44.5,56.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 44.5,55.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 44.5,54.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 44.5,53.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 44.5,52.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 44.5,51.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 44.5,50.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 44.5,46.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 44.5,45.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 44.5,44.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 44.5,43.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 44.5,42.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 44.5,41.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 44.5,40.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 44.5,39.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 44.5,38.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 44.5,35.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 44.5,31.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 44.5,23.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 44.5,22.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 44.5,21.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 44.5,20.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 44.5,19.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 45.5,68.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 45.5,67.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 45.5,66.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 45.5,63.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 45.5,62.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 45.5,61.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 45.5,60.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 45.5,58.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 45.5,50.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 45.5,46.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 45.5,38.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 45.5,37.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 45.5,36.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 45.5,35.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 45.5,31.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 45.5,23.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 45.5,19.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 46.5,66.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 46.5,58.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 46.5,57.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 46.5,51.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 46.5,50.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 46.5,46.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 46.5,45.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 46.5,39.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 46.5,38.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 46.5,31.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 46.5,23.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 46.5,19.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 47.5,31.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 47.5,25.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 47.5,24.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 47.5,23.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 47.5,21.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 47.5,20.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 47.5,19.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 48.5,82.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 48.5,66.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 48.5,31.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 48.5,19.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 49.5,82.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 49.5,66.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 49.5,31.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 49.5,25.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 49.5,19.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 50.5,82.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 50.5,78.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 50.5,77.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 50.5,76.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 50.5,75.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 50.5,74.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 50.5,72.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 50.5,71.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 50.5,70.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 50.5,69.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 50.5,68.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 50.5,67.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 50.5,66.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 50.5,65.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 50.5,64.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 50.5,63.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 50.5,62.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 50.5,61.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 50.5,60.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 50.5,56.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 50.5,53.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 50.5,52.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 50.5,51.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 50.5,50.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 50.5,49.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 50.5,47.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: 50.5,46.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 50.5,45.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 50.5,44.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 50.5,43.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 50.5,40.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 50.5,36.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 50.5,35.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 50.5,34.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 50.5,33.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 50.5,32.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 50.5,31.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 50.5,30.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 50.5,29.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 50.5,28.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 50.5,27.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 50.5,26.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 50.5,25.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 50.5,24.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 50.5,23.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 50.5,22.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 50.5,19.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 51.5,78.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 51.5,75.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 51.5,72.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 51.5,60.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 51.5,53.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 51.5,49.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 51.5,47.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 51.5,43.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 51.5,36.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 51.5,31.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 51.5,27.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 51.5,22.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 51.5,19.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 52.5,78.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 52.5,72.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 52.5,62.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 52.5,53.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 52.5,43.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 52.5,36.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 52.5,31.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 52.5,27.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 52.5,22.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 52.5,19.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 53.5,82.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 53.5,78.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 53.5,76.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 53.5,75.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 53.5,72.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 53.5,56.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 53.5,53.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 53.5,52.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 53.5,50.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 53.5,49.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 53.5,47.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 53.5,43.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 53.5,40.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 53.5,31.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 53.5,27.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 53.5,26.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 53.5,24.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 53.5,23.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 53.5,22.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 53.5,19.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 54.5,72.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 54.5,56.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 54.5,49.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 54.5,47.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 54.5,45.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 54.5,44.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 54.5,43.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 54.5,40.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 54.5,19.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 55.5,72.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 55.5,56.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 55.5,49.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 55.5,47.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 55.5,40.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 55.5,22.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 55.5,19.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 56.5,72.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 56.5,62.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 56.5,56.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 56.5,47.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 56.5,40.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 56.5,31.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 56.5,27.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 56.5,26.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 56.5,24.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 56.5,23.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 56.5,22.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 28.5,33.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 57.5,82.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 57.5,78.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 57.5,77.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 57.5,76.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 57.5,75.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 57.5,72.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 57.5,60.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 57.5,56.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 57.5,49.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 57.5,47.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 57.5,40.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 57.5,36.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 57.5,31.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 57.5,27.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 57.5,22.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 57.5,19.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 58.5,78.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 58.5,72.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 58.5,71.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 58.5,70.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 58.5,69.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 58.5,65.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 58.5,64.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 58.5,63.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 58.5,62.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 58.5,61.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 58.5,60.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 58.5,56.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 58.5,49.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 58.5,47.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 58.5,40.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 58.5,36.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 58.5,35.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 58.5,34.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 58.5,33.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 58.5,32.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 58.5,31.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 58.5,27.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 58.5,22.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 58.5,19.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 58.5,18.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 58.5,17.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 59.5,78.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 59.5,75.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 59.5,69.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 59.5,68.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 59.5,66.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 59.5,65.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 59.5,61.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 59.5,56.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 59.5,40.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 59.5,35.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 59.5,31.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 59.5,30.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 59.5,29.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 59.5,28.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 59.5,27.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 59.5,26.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 59.5,25.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 59.5,24.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 59.5,23.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 59.5,22.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 59.5,17.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 60.5,82.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 60.5,81.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 60.5,80.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 60.5,79.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 60.5,78.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 60.5,77.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 60.5,76.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 60.5,75.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 60.5,74.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 60.5,73.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 60.5,65.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 60.5,64.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 60.5,62.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 60.5,61.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 60.5,56.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 60.5,40.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 60.5,35.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 60.5,34.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 60.5,32.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 60.5,31.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 60.5,17.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 61.5,82.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 61.5,81.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 61.5,80.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 61.5,79.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 61.5,78.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 61.5,77.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 61.5,76.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 61.5,75.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 61.5,74.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 61.5,73.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 61.5,72.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: 61.5,17.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: 61.5,16.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 61.5,15.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 61.5,14.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 61.5,13.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 61.5,12.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: 62.5,82.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 62.5,81.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: 62.5,76.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: 62.5,73.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: 62.5,72.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: 62.5,71.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 62.5,70.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 62.5,69.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 62.5,68.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 62.5,67.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 62.5,65.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 62.5,64.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 62.5,63.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 62.5,62.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 62.5,61.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 62.5,60.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 62.5,36.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 62.5,35.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 62.5,34.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 62.5,33.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 62.5,32.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 62.5,31.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 62.5,29.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 62.5,28.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 62.5,27.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 62.5,26.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 62.5,25.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 62.5,24.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 62.5,23.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 62.5,22.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 62.5,20.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 62.5,18.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 62.5,17.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 63.5,82.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 63.5,81.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 63.5,76.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 63.5,73.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 63.5,72.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 63.5,36.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 63.5,32.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 64.5,76.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 64.5,73.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 64.5,72.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 64.5,56.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 64.5,40.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 65.5,76.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 65.5,73.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 65.5,72.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 65.5,71.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 65.5,70.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 65.5,69.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 65.5,68.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 65.5,60.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 65.5,56.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 65.5,40.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 65.5,26.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 65.5,25.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 65.5,23.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 65.5,22.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 65.5,17.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 66.5,73.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 66.5,72.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 66.5,56.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 66.5,55.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 66.5,51.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 66.5,50.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 66.5,46.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 66.5,45.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 66.5,41.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 66.5,40.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 66.5,17.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: 67.5,76.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 67.5,73.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 67.5,72.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 67.5,56.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 67.5,50.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 67.5,46.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 67.5,40.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 67.5,36.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 67.5,32.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 67.5,17.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: 67.5,16.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 67.5,15.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 67.5,14.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 67.5,13.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 67.5,12.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 68.5,82.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 68.5,81.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 68.5,78.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 68.5,76.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 68.5,73.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 68.5,72.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 68.5,71.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 68.5,70.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 68.5,69.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 68.5,68.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 68.5,64.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 68.5,63.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 68.5,62.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 68.5,61.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 68.5,60.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 68.5,56.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 68.5,50.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 68.5,46.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 68.5,40.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 68.5,36.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 68.5,35.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 68.5,34.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 68.5,33.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 68.5,32.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 68.5,22.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 68.5,17.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 69.5,82.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 69.5,81.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 69.5,56.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: 69.5,55.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 69.5,51.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 69.5,50.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: 69.5,46.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 69.5,45.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 69.5,41.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 69.5,40.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 70.5,82.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: 70.5,81.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 65.5,75.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 70.5,22.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 71.5,82.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 71.5,81.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 71.5,78.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: 71.5,64.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 68.5,79.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 71.5,36.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 71.5,32.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: 71.5,22.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 71.5,21.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 71.5,20.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: 71.5,19.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 71.5,18.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 71.5,17.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 72.5,82.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 72.5,81.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 72.5,18.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 73.5,82.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: 73.5,81.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: 73.5,80.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: 73.5,79.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 73.5,78.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: 73.5,77.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 73.5,76.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: 73.5,75.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 73.5,74.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 73.5,73.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 73.5,70.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 73.5,69.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 73.5,65.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 73.5,64.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 73.5,54.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 73.5,53.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 73.5,52.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 73.5,51.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 73.5,50.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 73.5,46.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 73.5,45.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 73.5,44.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 73.5,43.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 73.5,42.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 73.5,32.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 73.5,31.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 73.5,27.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 73.5,26.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 73.5,25.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 73.5,24.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 73.5,23.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 73.5,22.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 73.5,18.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 74.5,82.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 74.5,81.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 74.5,80.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 74.5,79.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 74.5,78.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 74.5,77.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 74.5,76.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 74.5,75.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 74.5,74.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 74.5,73.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: 74.5,70.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 74.5,64.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 74.5,52.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 74.5,49.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 73.5,49.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 74.5,44.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 74.5,32.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 74.5,26.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 74.5,18.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 75.5,73.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 75.5,70.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: 75.5,69.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 75.5,68.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: 75.5,67.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 75.5,66.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: 75.5,65.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: 75.5,64.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 75.5,63.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 75.5,62.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 75.5,61.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 75.5,60.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 75.5,59.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 75.5,58.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 75.5,54.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 75.5,42.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 75.5,38.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 75.5,37.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 75.5,36.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 75.5,35.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 75.5,34.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 75.5,33.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 75.5,32.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 75.5,31.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 75.5,30.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 75.5,29.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 75.5,28.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: 75.5,27.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 75.5,26.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 75.5,22.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 75.5,18.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 76.5,73.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: 76.5,70.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: 76.5,66.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: 76.5,62.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: 76.5,58.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 76.5,38.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 76.5,34.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 76.5,30.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 76.5,26.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 76.5,23.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 76.5,22.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 76.5,21.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 76.5,20.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 76.5,19.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 76.5,18.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 77.5,75.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 77.5,74.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 77.5,73.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 77.5,70.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 87.5,50.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: 77.5,26.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 77.5,23.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 77.5,21.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 78.5,75.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: 78.5,73.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: 78.5,70.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: 77.5,38.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 79.5,38.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 78.5,26.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: 78.5,21.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: 79.5,75.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: 79.5,70.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 79.5,54.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 79.5,42.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 79.5,26.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: 79.5,23.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: 79.5,21.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: 80.5,75.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: 80.5,73.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: 80.5,70.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: 80.5,66.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: 80.5,62.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: 80.5,58.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: 80.5,52.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 80.5,50.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 80.5,46.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 80.5,44.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 80.5,38.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: 80.5,34.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 80.5,30.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 80.5,26.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 80.5,23.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 80.5,22.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 80.5,21.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: 81.5,75.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 81.5,74.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 81.5,73.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 81.5,70.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 81.5,69.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 81.5,67.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 81.5,66.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 81.5,65.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 81.5,63.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 81.5,62.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 81.5,61.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: 81.5,59.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: 81.5,58.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: 81.5,54.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: 81.5,53.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: 81.5,52.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: 81.5,44.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: 81.5,43.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 81.5,42.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: 81.5,38.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 81.5,37.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 81.5,35.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 81.5,34.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 81.5,33.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: 81.5,31.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: 81.5,30.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: 81.5,29.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: 81.5,27.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: 81.5,26.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: 81.5,23.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: 82.5,73.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: 82.5,70.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 82.5,26.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: 82.5,23.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 83.5,73.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: 83.5,23.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: 84.5,73.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: 84.5,70.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: 84.5,26.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: 84.5,23.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: 85.5,73.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: 85.5,72.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + pos: 85.5,71.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: 85.5,70.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: 85.5,69.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: 85.5,65.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: 85.5,64.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: 85.5,63.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: 85.5,59.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: 85.5,58.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: 85.5,54.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: 77.5,58.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: 85.5,42.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: 85.5,38.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: 85.5,37.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: 85.5,33.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: 85.5,32.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: 85.5,31.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: 85.5,27.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: 85.5,26.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: 85.5,25.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + pos: 85.5,24.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + pos: 85.5,23.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: 86.5,58.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: 86.5,57.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: 86.5,56.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: 86.5,55.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: 86.5,54.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: 86.5,42.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: 86.5,41.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: 86.5,40.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 86.5,39.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 86.5,38.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: 87.5,54.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 87.5,42.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: 88.5,54.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 88.5,50.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 88.5,48.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 88.5,46.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 88.5,42.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 78.5,58.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: 79.5,58.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 81.5,72.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: 74.5,47.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 73.5,47.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: 15.5,39.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: 32.5,52.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: 59.5,50.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: 58.5,20.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: 80.5,24.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + pos: 78.5,38.5 + parent: 1 + - uid: 1746 + components: + - type: Transform + pos: 47.5,82.5 + parent: 1 + - uid: 1748 + components: + - type: Transform + pos: 47.5,84.5 + parent: 1 + - uid: 1751 + components: + - type: Transform + pos: 53.5,77.5 + parent: 1 + - uid: 1806 + components: + - type: Transform + pos: 58.5,46.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + pos: 80.5,51.5 + parent: 1 + - uid: 1849 + components: + - type: Transform + pos: 80.5,45.5 + parent: 1 + - uid: 1867 + components: + - type: Transform + pos: 87.5,46.5 + parent: 1 + - uid: 2118 + components: + - type: Transform + pos: 70.5,26.5 + parent: 1 + - uid: 2301 + components: + - type: Transform + pos: 55.5,85.5 + parent: 1 + - uid: 2312 + components: + - type: Transform + pos: 47.5,85.5 + parent: 1 + - uid: 2314 + components: + - type: Transform + pos: 51.5,85.5 + parent: 1 + - uid: 2324 + components: + - type: Transform + pos: 65.5,27.5 + parent: 1 + - uid: 2394 + components: + - type: Transform + pos: 72.5,26.5 + parent: 1 + - uid: 2402 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 2430 + components: + - type: Transform + pos: 25.5,33.5 + parent: 1 + - uid: 2595 + components: + - type: Transform + pos: 86.5,26.5 + parent: 1 + - uid: 2596 + components: + - type: Transform + pos: 86.5,70.5 + parent: 1 + - uid: 2638 + components: + - type: Transform + pos: 30.5,30.5 + parent: 1 + - uid: 3009 + components: + - type: Transform + pos: 60.5,14.5 + parent: 1 + - uid: 3010 + components: + - type: Transform + pos: 59.5,14.5 + parent: 1 + - uid: 3011 + components: + - type: Transform + pos: 58.5,14.5 + parent: 1 + - uid: 3012 + components: + - type: Transform + pos: 57.5,14.5 + parent: 1 + - uid: 3013 + components: + - type: Transform + pos: 56.5,14.5 + parent: 1 + - uid: 3014 + components: + - type: Transform + pos: 55.5,14.5 + parent: 1 + - uid: 3015 + components: + - type: Transform + pos: 54.5,14.5 + parent: 1 + - uid: 3036 + components: + - type: Transform + pos: 54.5,16.5 + parent: 1 + - uid: 3234 + components: + - type: Transform + pos: 52.5,82.5 + parent: 1 + - uid: 3709 + components: + - type: Transform + pos: 45.5,24.5 + parent: 1 + - uid: 3710 + components: + - type: Transform + pos: 45.5,25.5 + parent: 1 + - uid: 3711 + components: + - type: Transform + pos: 43.5,24.5 + parent: 1 + - uid: 3712 + components: + - type: Transform + pos: 43.5,25.5 + parent: 1 + - uid: 3714 + components: + - type: Transform + pos: 47.5,26.5 + parent: 1 + - uid: 3715 + components: + - type: Transform + pos: 45.5,26.5 + parent: 1 + - uid: 3716 + components: + - type: Transform + pos: 43.5,26.5 + parent: 1 + - uid: 3839 + components: + - type: Transform + pos: 50.5,20.5 + parent: 1 + - uid: 3918 + components: + - type: Transform + pos: 35.5,24.5 + parent: 1 + - uid: 3919 + components: + - type: Transform + pos: 35.5,25.5 + parent: 1 + - uid: 3920 + components: + - type: Transform + pos: 35.5,26.5 + parent: 1 + - uid: 3921 + components: + - type: Transform + pos: 35.5,27.5 + parent: 1 + - uid: 3922 + components: + - type: Transform + pos: 35.5,28.5 + parent: 1 + - uid: 3923 + components: + - type: Transform + pos: 35.5,30.5 + parent: 1 + - uid: 4215 + components: + - type: Transform + pos: 47.5,83.5 + parent: 1 + - uid: 4301 + components: + - type: Transform + pos: 66.5,82.5 + parent: 1 + - uid: 4302 + components: + - type: Transform + pos: 67.5,83.5 + parent: 1 + - uid: 4303 + components: + - type: Transform + pos: 67.5,82.5 + parent: 1 + - uid: 4311 + components: + - type: Transform + pos: 63.5,84.5 + parent: 1 + - uid: 4313 + components: + - type: Transform + pos: 41.5,22.5 + parent: 1 + - uid: 4333 + components: + - type: Transform + pos: 63.5,85.5 + parent: 1 + - uid: 4334 + components: + - type: Transform + pos: 58.5,82.5 + parent: 1 + - uid: 4342 + components: + - type: Transform + pos: 51.5,82.5 + parent: 1 + - uid: 4458 + components: + - type: Transform + pos: 60.5,72.5 + parent: 1 + - uid: 4608 + components: + - type: Transform + pos: 40.5,22.5 + parent: 1 + - uid: 4609 + components: + - type: Transform + pos: 39.5,22.5 + parent: 1 + - uid: 4610 + components: + - type: Transform + pos: 38.5,22.5 + parent: 1 + - uid: 4611 + components: + - type: Transform + pos: 37.5,22.5 + parent: 1 + - uid: 4612 + components: + - type: Transform + pos: 36.5,22.5 + parent: 1 + - uid: 4613 + components: + - type: Transform + pos: 35.5,22.5 + parent: 1 + - uid: 4753 + components: + - type: Transform + pos: 66.5,83.5 + parent: 1 + - uid: 4754 + components: + - type: Transform + pos: 64.5,82.5 + parent: 1 + - uid: 4755 + components: + - type: Transform + pos: 64.5,83.5 + parent: 1 + - uid: 4756 + components: + - type: Transform + pos: 65.5,82.5 + parent: 1 + - uid: 4757 + components: + - type: Transform + pos: 65.5,83.5 + parent: 1 + - uid: 5204 + components: + - type: Transform + pos: 68.5,83.5 + parent: 1 + - uid: 5642 + components: + - type: Transform + pos: 31.5,40.5 + parent: 1 + - uid: 5754 + components: + - type: Transform + pos: 16.5,39.5 + parent: 1 + - uid: 5963 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1 + - uid: 5964 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1 + - uid: 5965 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1 + - uid: 5966 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1 + - uid: 5967 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1 + - uid: 5968 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1 + - uid: 5969 + components: + - type: Transform + pos: 23.5,39.5 + parent: 1 + - uid: 6286 + components: + - type: Transform + pos: 64.5,34.5 + parent: 1 + - uid: 6287 + components: + - type: Transform + pos: 63.5,34.5 + parent: 1 + - uid: 6289 + components: + - type: Transform + pos: 65.5,34.5 + parent: 1 + - uid: 6290 + components: + - type: Transform + pos: 66.5,34.5 + parent: 1 + - uid: 6291 + components: + - type: Transform + pos: 67.5,34.5 + parent: 1 + - uid: 6572 + components: + - type: Transform + pos: 62.5,21.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 2692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,69.5 + parent: 1 + - uid: 5310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,77.5 + parent: 1 +- proto: WardrobeCargoFilled + entities: + - uid: 3979 + components: + - type: Transform + pos: 49.5,67.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 465 + components: + - type: Transform + pos: 67.5,69.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 65.5,61.5 + parent: 1 + - uid: 5428 + components: + - type: Transform + pos: 63.5,69.5 + parent: 1 +- proto: WardrobeSalvageFilled + entities: + - uid: 2987 + components: + - type: Transform + pos: 49.5,68.5 + parent: 1 +- proto: WarningN2 + entities: + - uid: 3736 + components: + - type: Transform + pos: 43.5,26.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 3735 + components: + - type: Transform + pos: 45.5,26.5 + parent: 1 +- proto: WarningWaste + entities: + - uid: 3734 + components: + - type: Transform + pos: 47.5,26.5 + parent: 1 +- proto: WarpPoint + entities: + - uid: 2447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,48.5 + parent: 1 + - type: WarpPoint + location: Central Command +- proto: WaterCooler + entities: + - uid: 2371 + components: + - type: Transform + pos: 85.5,41.5 + parent: 1 + - uid: 2372 + components: + - type: Transform + pos: 85.5,55.5 + parent: 1 + - uid: 4603 + components: + - type: Transform + pos: 44.5,62.5 + parent: 1 + - uid: 4604 + components: + - type: Transform + pos: 49.5,74.5 + parent: 1 + - uid: 6321 + components: + - type: Transform + pos: 25.5,54.5 + parent: 1 + - uid: 6322 + components: + - type: Transform + pos: 43.5,54.5 + parent: 1 +- proto: WaterTankFull + entities: + - uid: 2753 + components: + - type: Transform + pos: 76.5,71.5 + parent: 1 + - uid: 3055 + components: + - type: Transform + pos: 57.5,20.5 + parent: 1 + - uid: 4771 + components: + - type: Transform + pos: 22.5,51.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 2761 + components: + - type: Transform + pos: 36.5,36.5 + parent: 1 +- proto: WaterVaporCanister + entities: + - uid: 5780 + components: + - type: Transform + pos: 47.5,29.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,47.5 + parent: 1 + - uid: 2691 + components: + - type: Transform + pos: 72.5,66.5 + parent: 1 + - uid: 6189 + components: + - type: Transform + pos: 29.5,59.5 + parent: 1 +- proto: WeaponMeleeNeedle + entities: + - uid: 4748 + components: + - type: Transform + pos: 74.52404,63.548775 + parent: 1 +- proto: WeaponPulseCarbine + entities: + - uid: 5326 + components: + - type: Transform + pos: 67.426155,75.73149 + parent: 1 + - uid: 5327 + components: + - type: Transform + pos: 67.49907,75.6064 + parent: 1 + - uid: 5328 + components: + - type: Transform + pos: 67.582405,75.481316 + parent: 1 +- proto: WeaponPulsePistol + entities: + - uid: 5329 + components: + - type: Transform + pos: 67.41574,74.72037 + parent: 1 + - uid: 5330 + components: + - type: Transform + pos: 67.53032,74.61613 + parent: 1 + - uid: 5331 + components: + - type: Transform + pos: 67.63449,74.49104 + parent: 1 +- proto: WeaponRevolverMateba + entities: + - uid: 5358 + components: + - type: Transform + pos: 63.73708,75.587654 + parent: 1 +- proto: WeaponSniperHristov + entities: + - uid: 5363 + components: + - type: Transform + pos: 65.12653,79.61418 + parent: 1 +- proto: WeaponSubMachineGunAtreides + entities: + - uid: 2703 + components: + - type: Transform + pos: 71.51693,80.54625 + parent: 1 +- proto: WeldingFuelTankFull + entities: + - uid: 2752 + components: + - type: Transform + pos: 75.5,71.5 + parent: 1 + - uid: 2759 + components: + - type: Transform + pos: 59.5,74.5 + parent: 1 + - uid: 4770 + components: + - type: Transform + pos: 23.5,55.5 + parent: 1 + - uid: 5956 + components: + - type: Transform + pos: 49.5,23.5 + parent: 1 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 2760 + components: + - type: Transform + pos: 35.5,36.5 + parent: 1 +- proto: Windoor + entities: + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,36.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,52.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1601: + - DoorStatus: Close + - uid: 1599 + components: + - type: Transform + pos: 77.5,44.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1600: + - DoorStatus: Close + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,48.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,47.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: 72.5,60.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,36.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: 73.5,60.5 + parent: 1 + - uid: 1920 + components: + - type: Transform + pos: 48.5,61.5 + parent: 1 + - uid: 2557 + components: + - type: Transform + pos: 64.5,64.5 + parent: 1 + - uid: 3780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + - uid: 6154 + components: + - type: Transform + pos: 47.5,61.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 1749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,24.5 + parent: 1 +- proto: WindoorSecureCargoLocked + entities: + - uid: 1919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,61.5 + parent: 1 + - uid: 6158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,61.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 1600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,44.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1601 + components: + - type: Transform + pos: 77.5,52.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,55.5 + parent: 1 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 2327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,19.5 + parent: 1 +- proto: WindoorSecureCommandLocked + entities: + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,42.5 + parent: 1 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3784 + components: + - type: Transform + pos: 47.5,35.5 + parent: 1 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,19.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 72.5,36.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: 73.5,36.5 + parent: 1 +- proto: WindoorSecurePlasma + entities: + - uid: 1869 + components: + - type: Transform + pos: 69.5,78.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + pos: 70.5,78.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,60.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,68.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,68.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,48.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,47.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,60.5 + parent: 1 + - uid: 1918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,64.5 + parent: 1 +- proto: WindowFrostedDirectional + entities: + - uid: 6262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,54.5 + parent: 1 + - uid: 6263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,54.5 + parent: 1 + - uid: 6264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,53.5 + parent: 1 + - uid: 6265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,54.5 + parent: 1 + - uid: 6267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,56.5 + parent: 1 + - uid: 6268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,57.5 + parent: 1 + - uid: 6269 + components: + - type: Transform + pos: 37.5,56.5 + parent: 1 + - uid: 6270 + components: + - type: Transform + pos: 34.5,56.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 1736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,41.5 + parent: 1 + - uid: 1738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,43.5 + parent: 1 + - uid: 2321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,25.5 + parent: 1 + - uid: 2686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,69.5 + parent: 1 + - uid: 3042 + components: + - type: Transform + pos: 56.5,16.5 + parent: 1 + - uid: 3043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,16.5 + parent: 1 + - uid: 3044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,17.5 + parent: 1 + - uid: 3045 + components: + - type: Transform + pos: 57.5,16.5 + parent: 1 + - uid: 3046 + components: + - type: Transform + pos: 58.5,16.5 + parent: 1 + - uid: 3047 + components: + - type: Transform + pos: 59.5,16.5 + parent: 1 + - uid: 3344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,23.5 + parent: 1 +... diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/CentralCommand/main.yml similarity index 95% rename from Resources/Maps/centcomm.yml rename to Resources/Maps/CentralCommand/main.yml index b64158f08b..4a95755a1e 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/CentralCommand/main.yml @@ -1,42061 +1,42061 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 7: FloorAsteroidSand - 14: FloorBar - 17: FloorBlueCircuit - 29: FloorDark - 38: FloorDarkPlastic - 47: FloorGrass - 54: FloorGreenCircuit - 60: FloorKitchen - 61: FloorLaundry - 62: FloorLino - 77: FloorReinforced - 89: FloorSteel - 104: FloorTechMaint - 108: FloorWhite - 118: FloorWood - 120: Lattice - 121: Plating -entities: -- proto: "" - entities: - - uid: 1668 - components: - - type: MetaData - name: Central Command - - type: Transform - parent: invalid - - type: MapGrid - chunks: - -1,-1: - ind: -1,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAADPgAAAAAAPgAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: WQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACbAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACbAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAADeQAAAAAAPgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAdgAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAC - version: 6 - -1,0: - ind: -1,0 - tiles: WQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADLwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADPgAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADPgAAAAAAHQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADPgAAAAAAHQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAC - version: 6 - 0,0: - ind: 0,0 - tiles: HQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAALwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAB - version: 6 - 1,0: - ind: 1,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAABwAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABdgAAAAAAHQAAAAADHQAAAAACHQAAAAAADgAAAAABDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAdgAAAAABHQAAAAABHQAAAAACHQAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABDgAAAAADHQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAADgAAAAADDgAAAAAAHQAAAAABHQAAAAAAHQAAAAAADgAAAAADHQAAAAACHQAAAAAAdgAAAAABdgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABDgAAAAAADgAAAAACHQAAAAAAHQAAAAAAHQAAAAAADgAAAAADHQAAAAADHQAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: HQAAAAADHQAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAJgAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACWQAAAAADWQAAAAAB - version: 6 - -1,-2: - ind: -1,-2 - tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAHQAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAHQAAAAABDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACDgAAAAACDgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADPAAAAAAAPAAAAAAAHQAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAABDgAAAAAADgAAAAADDgAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,1: - ind: -1,1 - tiles: HQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,1: - ind: 0,1 - tiles: WQAAAAABWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABTQAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: HQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: WQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAALwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: HQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: TQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAAAHQAAAAABWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAADWQAAAAACHQAAAAADWQAAAAACHQAAAAACWQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADWQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABWQAAAAACHQAAAAACWQAAAAADHQAAAAADWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAC - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA - version: 6 - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAC - version: 6 - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: BecomesStation - id: centcomm - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 521: 8,28 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 520: 10,28 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 786: 29,-22 - 787: 33,-27 - 799: 32,-14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 400: -11,28 - 473: 15,31 - 475: 5,31 - 910: 19,-26 - 976: 3,-43 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 780: 33,-21 - 781: 31,-21 - 785: 29,-26 - 914: 17,-31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 375: -6,15 - 399: -11,24 - 474: 3,31 - 476: 13,31 - 909: 21,-26 - 977: -5,-43 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 789: 31,-27 - - node: - angle: -3.141592653589793 rad - color: '#52B4E9C3' - id: ArrowsGreyscale - decals: - 307: 11,-15 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 301: 9,6 - 302: 13,4 - 533: 8,31 - 534: 10,31 - 535: 12,31 - 537: 6,31 - 761: 22,-11 - 762: 19,-11 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 49: 31,-6 - 50: 31,-4 - 51: 30,-6 - 52: 30,-4 - 53: 31,2 - 54: 30,2 - 55: 31,4 - 56: 30,4 - 103: 14,-3 - 104: 12,-3 - 234: -3,-13 - 235: 1,-13 - 236: -1,-12 - 276: 4,0 - 277: -6,0 - 371: -4,10 - 372: -4,15 - 376: -6,16 - 377: -6,17 - 378: -6,14 - 381: -7,28 - 382: -8,28 - 383: -9,28 - 384: -7,26 - 385: -8,26 - 386: -9,26 - 387: -7,24 - 388: -8,24 - 389: -9,24 - 390: -7,22 - 391: -8,22 - 392: -9,22 - 564: 9,15 - 566: 14,13 - 567: 14,11 - 568: 6,11 - 569: 6,13 - 574: 11,25 - 575: 8,22 - 576: -1,13 - 577: -1,11 - 579: -34,1 - 580: -34,-3 - 583: -31,-2 - 584: -30,-2 - 585: -31,0 - 586: -30,0 - 618: -22,0 - 619: -21,-2 - 620: -23,-2 - 621: -14,-1 - 673: -15,-8 - 674: -15,-7 - 675: -15,-6 - 676: -12,-8 - 677: -12,-7 - 678: -12,-6 - 713: 4,25 - 714: 4,28 - 715: 14,28 - 716: 14,25 - 717: 14,22 - 782: 29,-23 - 783: 29,-25 - 790: 32,-12 - 795: 32,-13 - 796: 31,-12 - 797: 32,-11 - 798: 33,-12 - 895: 23,-24 - 896: 23,-23 - 897: 28,-14 - 898: 27,-14 - 899: 34,-19 - 900: 34,-16 - 907: 17,-26 - 908: 23,-26 - 911: 17,-32 - 912: 16,-32 - 931: -20,-27 - 932: -19,-27 - 933: -20,-25 - 934: -19,-25 - 978: -5,-41 - 979: -5,-44 - 986: 3,-41 - 987: 3,-44 - 1222: 21,-27 - 1223: 20,-27 - 1224: 19,-27 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 573: 8,25 - 791: 33,-11 - 792: 31,-13 - 982: -6,-42 - 983: -6,-43 - 984: 4,-43 - 985: 4,-42 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 793: 33,-13 - 794: 31,-11 - 1151: 13,-15 - 1152: 13,-14 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 1295: -12,4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 1093: 19,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 1099: 17,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1097: 19,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 1098: 17,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1094: 19,14 - 1095: 19,13 - 1096: 19,12 - 1107: 33,21 - 1108: 33,22 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 1101: 18,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 1100: 18,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1102: 17,12 - 1103: 17,13 - 1104: 17,14 - 1105: 23,21 - 1106: 23,22 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNe - decals: - 1290: 7,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNw - decals: - 1118: 3,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSe - decals: - 1119: 5,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw - decals: - 1114: 3,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerNe - decals: - 1294: 7,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSe - decals: - 1141: 13,-12 - 1293: 5,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSw - decals: - 1134: 9,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineE - decals: - 1121: 5,-13 - 1138: 13,-15 - 1139: 13,-14 - 1140: 13,-13 - 1289: 7,-11 - - node: - color: '#52B4E996' - id: BrickTileSteelLineN - decals: - 1125: 15,-12 - 1126: 14,-12 - 1127: 13,-12 - 1128: 12,-12 - 1129: 11,-12 - 1130: 10,-12 - 1131: 9,-12 - 1132: 8,-12 - 1142: 16,-12 - 1291: 6,-10 - 1292: 5,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelLineS - decals: - 1120: 4,-14 - 1133: 8,-12 - 1143: 16,-12 - 1144: 15,-12 - 1145: 14,-12 - 1287: 6,-12 - 1288: 7,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineW - decals: - 1115: 3,-13 - 1116: 3,-12 - 1117: 3,-11 - 1135: 9,-13 - 1136: 9,-14 - 1137: 9,-15 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - decals: - 1157: 1,-16 - 1162: 4,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - decals: - 1158: -3,-16 - 1161: -6,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 1159: 4,-20 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 1160: -6,-20 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNe - decals: - 1164: 1,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 1163: -3,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 1165: 1,-18 - - node: - color: '#79150096' - id: BrickTileWhiteLineN - decals: - 1220: 33,-32 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 1166: 2,-19 - 1176: 0,-16 - 1177: -2,-16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 1218: 30,-32 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineN - decals: - 1221: 32,-32 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineN - decals: - 1217: 29,-32 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1219: 31,-32 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1212: 29,-29 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 1216: 33,-29 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 1167: 2,-20 - 1168: 1,-20 - 1169: 0,-20 - 1170: -2,-20 - 1171: -3,-20 - 1172: -4,-20 - 1173: -5,-20 - 1184: 3,-20 - 1214: 31,-29 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1213: 30,-29 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 1215: 32,-29 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 1174: -3,-18 - 1175: -3,-17 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 1233: -9,6 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 451: 10,8 - 725: 9.488686,-17.018105 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 722: -11.564524,-16.986855 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 150: 25.445843,7.7053776 - 179: 11.130266,-9.945588 - 316: -4,18 - 457: 10.845012,7.992337 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 149: 26.461468,7.8616276 - 180: 14.583391,-9.976838 - 181: 13.520891,-10.008088 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 151: 28.82894,6.877252 - 152: 23.178217,6.861627 - 315: 2,18 - 458: 9.048137,8.023587 - 1113: 17.154882,7.7859535 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 153: 18.801558,6.901756 - 154: 33.138065,6.979881 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 178: 9.755266,-9.992463 - 456: 10.782512,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 177: 10.411516,-10.008088 - 314: -4,18 - 455: 9.141887,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 176: 14.052141,-10.008088 - 313: 2,18 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 648: -11.486805,2.0009332 - - node: - color: '#FFFFFFFF' - id: Bushh1 - decals: - 312: -4,18 - 459: 13.141887,8.086087 - 460: 6.0012617,8.086087 - 467: 8.798137,7.961087 - 723: -10.814524,-16.955605 - 727: 8.848061,-16.97123 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 724: -12.142649,-17.03373 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 185: 10.099016,-9.945588 - 311: 2,18 - 466: 11.282512,7.929837 - 726: 10.098061,-16.97123 - 1110: 16.470638,7.9648323 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 141: 22.818914,7.5022526 - 142: 19.100164,8.142878 - 143: 27.037664,6.330377 - 144: 29.052135,7.267877 - 145: 32.06776,8.049128 - 171: 32.98406,-8.985069 - 173: 17.014437,2.9736261 - 174: 16.998812,6.958001 - 175: 17.020891,-5.0002565 - 197: -3.9782841,6.046785 - 200: -8.985234,-13.989886 - 642: -16.924305,2.0790582 - 643: -10.93993,2.0321832 - 711: -5.975403,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 172: 19.006546,-8.953819 - 195: 6.9877787,-14.02815 - 196: -8.025159,5.99991 - 201: -9.047734,-10.021136 - 712: 3.9464722,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 644: -12.93993,1.9853082 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 170: 30.968433,-8.891319 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 169: 20.959995,-9.000694 - 461: 13.579387,8.023587 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 463: 6.5325117,8.164212 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 310: 4,16 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 148: 20.972792,7.5335026 - 646: -16.03368,2.0478082 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 190: 7.116846,-5.379048 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 645: -15.03368,2.0165582 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 647: -12.00243,1.9853082 - 710: -6.022278,-23.574533 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 147: 31.989635,7.5335026 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 222: 3.9493294,6.054844 - 707: 4.008972,-23.668283 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 146: 30.208385,7.5960026 - 223: -9.056177,3.4392257 - 708: 4.008972,-22.558908 - - node: - color: '#FFFFFFFF' - id: Bushm4 - decals: - 709: -6.022278,-22.512033 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 199: 34.054134,-1.0223641 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Caution - decals: - 1286: 23,-27 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 68: 12,-5 - 69: 13,-5 - 70: 14,-5 - 71: 15,-5 - 72: 15,-6 - 73: 15,-7 - 74: 15,-8 - 75: 11,-5 - 76: 10,-5 - 77: 9,-5 - 78: 9,-6 - 79: 9,-7 - 80: 9,-8 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 27: 31,-3 - 28: 30,-2 - 29: 29,-1 - 30: 21,1 - 31: 22,0 - 32: 23,-1 - 1185: -1,-19 - 1186: -1,-18 - 1187: -1,-17 - 1188: 0,-18 - 1189: -2,-18 - 1190: 0,-17 - 1191: -2,-17 - 1192: -2,-19 - 1193: 0,-19 - - node: - color: '#DE3A3A96' - id: Delivery - decals: - 524: 13,32 - 525: 12,32 - 526: 6,32 - 527: 5,32 - 528: 3,32 - 529: 3,30 - 530: 15,30 - 532: 15,32 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 45: 32,4 - 46: 32,2 - 47: 32,-4 - 48: 32,-6 - 99: 12,1 - 100: 14,1 - 379: -8,17 - 380: -8,16 - 393: -10,22 - 394: -10,24 - 395: -10,26 - 396: -10,28 - 401: -14,30 - 402: -14,31 - 405: -14,22 - 406: -14,21 - 407: -14,20 - 581: -32,-2 - 582: -32,0 - 718: 6,-16 - 719: 7,-16 - 720: -9,-16 - 721: -8,-16 - 784: 29,-24 - 904: 32,-15 - 905: 16,-24 - 913: 15,-32 - 929: -21,-27 - 930: -21,-25 - 980: -6,-41 - 981: -6,-44 - 988: 4,-44 - 989: 4,-41 - 1231: 22,-26 - 1232: 18,-26 - 1242: -4,-35 - 1243: -5,-35 - 1244: -6,-35 - 1245: 2,-35 - 1246: 3,-35 - 1247: 4,-35 - 1248: 12,-30 - 1249: 13,-30 - 1250: 12,-21 - 1251: 13,-21 - 1252: -15,-21 - 1253: -14,-21 - 1254: -14,-30 - 1255: -15,-30 - 1256: -5,-6 - 1257: -5,-5 - 1258: -6,-4 - 1259: -7,-4 - 1260: -7,2 - 1261: -6,2 - 1262: -5,3 - 1263: -5,4 - 1264: 3,3 - 1265: 3,4 - 1266: 4,2 - 1267: 5,2 - 1268: 5,-4 - 1269: 4,-4 - 1270: 3,-5 - 1271: 3,-6 - 1272: -9,-12 - 1273: -14,-17 - 1279: -10,33 - - node: - color: '#52B4E996' - id: DeliveryGreyscale - decals: - 1122: 4,-7 - 1123: 17,-7 - 1124: 17,-12 - 1146: 16,-12 - 1147: 8,-12 - 1148: 16,-7 - 1149: 12,-4 - 1150: 14,-4 - - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 1274: 4,-8 - 1275: -6,-8 - 1276: -6,6 - 1277: 7,3 - 1278: 17,5 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 57: 32,2 - 58: 32,-5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 59: 31,-6 - 60: 32,3 - 61: 31,4 - 62: 29,4 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 189: 7.054346,-5.972798 - 217: -8.98181,3.039219 - 218: 4.0382257,5.992344 - 640: -12.455555,2.0009332 - 704: -5.959778,-23.277658 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 140: 25.64704,7.7835026 - 163: 21.006866,-8.969444 - 164: 21.928741,-8.985069 - 165: 32.30374,-9.031944 - 639: -17.09618,2.0009332 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 137: 31.017263,7.330377 - 138: 20.33454,7.330377 - 139: 26.99079,6.721002 - 188: 6.991846,-5.004048 - 209: -4.0670047,-7.975866 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 166: 31.131866,-9.000694 - 167: 20.241241,-8.953819 - 168: 32.80374,-9.000694 - 219: 7.0694757,4.992344 - 220: 3.9757257,7.992344 - 1156: 7,-8 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 194: 5.962157,-7.9708443 - 206: -7.8673525,-7.959863 - 641: -14.90868,2.0634332 - 705: 4.102722,-23.308908 - 706: -5.991028,-22.152658 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 134: 21.940147,6.877252 - 135: 26.987022,7.6116276 - 136: 32.829765,6.955377 - 207: -8.9611025,-5.006738 - 309: 4,16 - 1155: -9,-8 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 193: 2.0246568,-7.9552193 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 216: -8.91931,3.929844 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 221: 1.9913507,6.023594 - 703: -5.975403,-23.949533 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 129: 25.080772,6.455377 - 130: 29.596397,7.017877 - 131: 32.737022,7.9397526 - 132: 21.674522,8.017878 - 133: 19.190147,7.174127 - 161: 30.038116,-9.047569 - 162: 18.959991,-8.985069 - 182: 15.052141,-10.039338 - 183: 9.052141,-9.976838 - 184: 13.005266,-9.992463 - 208: -9.0236025,-5.991113 - 462: 6.6731367,7.961087 - 638: -13.12743,2.0009332 - 702: 4.024597,-22.012033 - 1111: 6.9923015,5.882874 - 1112: 6.0391765,5.945374 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 9: 27,-1 - 10: 26,-1 - 11: 25,-1 - 12: 27,-2 - 39: 25,0 - 679: -24,-5 - 680: -22,-5 - 681: -20,-5 - 682: -18,-5 - 683: -19,-6 - 684: -18,-7 - 685: -19,-8 - 686: -18,-9 - 687: -20,-9 - 688: -22,-9 - 689: -21,-8 - 690: -21,-6 - 691: -20,-7 - 692: -23,-8 - 693: -23,-6 - 694: -24,-7 - 695: -24,-9 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 63: 10,-7 - 64: 11,-6 - 65: 12,-7 - 66: 13,-6 - 67: 14,-7 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 479: 14,28 - 480: 14,25 - 481: 14,22 - 482: 4,25 - 483: 4,28 - 499: 9,27 - 500: 9,28 - 501: 9,29 - 502: 9,30 - 503: 9,31 - 504: 9,32 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 823: 19,-23 - 824: 20,-23 - 825: 21,-23 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 454: 14,8 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 452: 9,8 - 464: 11.391887,8.179837 - 465: 7.2825117,8.054837 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 453: 13,8 - 1109: 16.017513,8.027332 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 123: 30.685312,7.0542355 - 124: 33.18531,8.16361 - 125: 22.82111,7.9761105 - 126: 26.85236,8.13236 - 127: 24.842615,8.147985 - 128: 19.093754,6.9448605 - 160: 32.92874,-8.891319 - 635: -12.75243,1.9384332 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 192: 2.0715318,-7.9395943 - 634: -14.955555,2.0165582 - 701: 3.9620972,-23.215158 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 117: 31.288973,7.8974113 - 118: 22.757723,7.1474113 - 119: 20.210848,7.8817863 - 120: 25.163973,7.1167355 - 121: 26.195223,6.1636105 - 122: 29.242098,7.9917355 - 156: 20.2297,-9.031944 - 157: 30.694366,-8.953819 - 203: -8.907109,-5.8244467 - 212: 1.9943819,6.0206404 - 213: 3.947507,8.005015 - 636: -11.986805,1.9696832 - 700: -6.084778,-23.808908 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 113: 31.617165,7.1005363 - 114: 26.992098,6.2724113 - 115: 21.070223,7.2411613 - 116: 20.007723,6.9442863 - 187: 7.054346,-5.004048 - 204: -8.985234,-5.0900717 - 205: -3.9383593,-7.9338217 - 210: -8.996265,3.0206404 - 211: -8.965015,3.9112654 - 215: 6.954139,4.9425154 - 633: -15.861805,1.9071832 - 637: -11.049305,1.8915582 - 698: 3.9464722,-22.418283 - 699: -5.928528,-22.652658 - 1153: 7,-8 - 1154: -9,-8 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 105: 25.217262,6.1942863 - 106: 26.967262,7.3974113 - 107: 25.389137,7.8036613 - 108: 21.686012,7.6161613 - 109: 19.107887,7.5067863 - 110: 29.420387,7.0224113 - 111: 30.092262,7.5849113 - 112: 32.41404,7.2099113 - 155: 19.2922,-8.953819 - 158: 31.506866,-8.985069 - 159: 21.444366,-8.953819 - 186: 7.023096,-5.941548 - 191: 5.962157,-8.002094 - 198: 34.00726,-1.0379891 - 202: -7.9071093,-7.9963217 - 214: 4.041257,6.0675154 - 308: 4,16 - 632: -16.674305,2.0478082 - 696: 4,-24 - 697: -6,-22 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 288: -1,1 - 655: -11,-5 - 656: -12,-5 - 657: -13,-5 - 658: -14,-5 - 659: -15,-5 - 660: -16,-5 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 88: 10,1 - 361: 1,16 - 362: 0,16 - 363: -1,16 - 364: -2,16 - 365: -3,16 - 562: 7,15 - 731: 8,-20 - 734: 10,-20 - 735: 12,-20 - 740: -10,-20 - 741: -12,-20 - 742: -14,-20 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 321: -8,11 - 322: -9,11 - 323: -10,11 - 324: -11,11 - 333: -12,16 - 334: -13,16 - 335: -14,16 - 423: -7,31 - 424: -8,31 - 425: -9,31 - 426: -11,31 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 86: 13,1 - 87: 11,1 - 556: 13,15 - 557: 10,15 - 558: 8,15 - 752: 28,-9 - 753: 27,-9 - 754: 26,-9 - 755: 25,-9 - 756: 24,-9 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 617: -22,-2 - 649: -16,-9 - 650: -15,-9 - 651: -14,-9 - 652: -13,-9 - 653: -12,-9 - 654: -11,-9 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 84: 13,-3 - 85: 11,-3 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 353: 1,8 - 354: 0,8 - 355: -1,8 - 356: -2,8 - 357: -3,8 - 547: 13,10 - 548: 12,10 - 549: 11,10 - 550: 10,10 - 551: 9,10 - 552: 8,10 - 553: 7,10 - 578: 10,-3 - 732: 9,-19 - 733: 11,-19 - 743: -11,-19 - 744: -13,-19 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 327: -8,9 - 328: -10,9 - 329: -11,9 - 330: -9,9 - 331: -13,15 - 332: -14,15 - 340: -12,15 - 440: -8,19 - 441: -9,19 - 442: -10,19 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 291: 13,3 - 292: 15,3 - 293: 11,3 - 518: 10,21 - 519: 9,21 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 817: 15,-22 - 818: 16,-22 - 819: 17,-22 - 820: 18,-22 - 821: 19,-22 - 822: 20,-22 - 826: 21,-22 - 842: 26,-27 - 843: 25,-27 - 844: 24,-27 - 865: 28,-19 - 866: 27,-19 - 867: 23,-19 - 868: 22,-19 - 869: 30,-19 - 870: 34,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 0: 28,-1 - 3: 28,1 - 4: 28,0 - 5: 28,-2 - 17: 23,1 - 18: 29,-3 - 19: 29,-2 - 33: 25,-3 - 44: 25,-2 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 96: 9,-2 - 97: 9,-1 - 98: 9,0 - 563: 6,14 - 601: -26,-1 - 738: -8,-18 - 917: -14,-24 - 919: -14,-26 - 920: -14,-28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 326: -12,10 - 341: -4,11 - 342: -4,12 - 343: -4,13 - 428: -12,30 - 429: -12,29 - 430: -12,28 - 431: -12,27 - 432: -12,26 - 433: -12,25 - 434: -12,24 - 435: -12,23 - 436: -12,22 - 437: -12,21 - 438: -12,20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 484: 5,24 - 485: 5,25 - 486: 5,26 - 487: 5,27 - 488: 5,28 - 489: 5,29 - 505: 11,16 - 506: 11,17 - 507: 11,18 - 508: 11,19 - 509: 11,20 - 554: 6,12 - 571: 8,22 - 572: 8,23 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 827: 23,-21 - 828: 23,-22 - 829: 23,-23 - 830: 23,-24 - 831: 23,-25 - 832: 23,-27 - 891: 19,-19 - 892: 19,-17 - 893: 19,-16 - 894: 19,-14 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1: 24,-1 - 2: 27,1 - 6: 24,-2 - 7: 24,-3 - 8: 24,0 - 13: 23,1 - 14: 23,0 - 22: 29,-3 - 38: 27,0 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 93: 15,-2 - 94: 15,-1 - 95: 15,0 - 351: 2,9 - 359: 2,15 - 560: 14,14 - 587: -11,-1 - 729: 6,-18 - 916: -15,-23 - 918: -15,-25 - 921: -15,-27 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 325: -7,10 - 412: -6,20 - 413: -6,22 - 414: -6,23 - 415: -6,24 - 416: -6,25 - 417: -6,26 - 418: -6,27 - 419: -6,28 - 420: -6,29 - 421: -6,30 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 239: -5,-14 - 240: -5,-13 - 241: -5,-12 - 242: -5,-11 - 243: -5,-10 - 366: 2,10 - 367: 2,11 - 368: 2,12 - 369: 2,13 - 370: 2,14 - 490: 13,21 - 491: 13,22 - 492: 13,23 - 493: 13,24 - 494: 13,25 - 495: 13,27 - 496: 13,26 - 497: 13,28 - 498: 13,29 - 510: 12,16 - 511: 12,17 - 512: 12,18 - 513: 12,19 - 514: 12,20 - 555: 14,12 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 833: 27,-27 - 834: 27,-26 - 835: 27,-22 - 836: 27,-21 - 837: 27,-24 - 838: 27,-23 - 839: 27,-25 - 846: 21,-21 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 373: -4,9 - 374: -4,14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 397: -14,25 - 398: -14,27 - 403: -13,30 - 404: -13,31 - 408: -13,20 - 409: -13,21 - 410: -13,22 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 101: 14,0 - 102: 12,0 - 237: 1,-12 - 238: -3,-12 - 565: 9,14 - 906: 16,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 15: 23,0 - 35: 28,-3 - 278: -4,1 - 279: -4,-1 - 280: -4,-2 - 285: -3,1 - 286: -2,1 - 290: -4,-3 - 615: -23,0 - 972: -3,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 306: 10,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 231: -2,-10 - 256: -7,1 - 257: -7,0 - 258: -4,4 - 259: -3,4 - 260: -2,4 - 598: -26,0 - 599: -25,0 - 600: -24,0 - 624: -33,5 - 625: -32,5 - 924: -21,-23 - 939: 8,-31 - 940: 9,-31 - 941: 10,-31 - 942: 11,-31 - 943: 12,-22 - 955: 2,-32 - 956: 3,-32 - 957: 4,-32 - 958: 6,-32 - 959: 7,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 253: -7,3 - 254: -7,4 - 255: -6,4 - 346: -8,17 - 349: -8,16 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 1197: 0,-20 - 1198: -1,-20 - 1199: -2,-20 - 1200: -3,-20 - 1201: -4,-20 - 1202: -5,-20 - 1203: 1,-20 - 1204: 2,-20 - 1205: 3,-20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 232: -3,-11 - 544: 11,15 - 758: 19,-11 - 759: 20,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 871: 30,-16 - 872: 31,-16 - 876: 19,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: 29,-2 - 34: 24,1 - 960: 1,-38 - 961: 2,-38 - 962: 3,-38 - 963: 4,-38 - 970: 4,-37 - 971: 4,-36 - 973: 1,-44 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 244: 4,-6 - 245: 5,-6 - 246: 5,-5 - 303: 12,-15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 229: 0,-14 - 271: 0,-6 - 272: 1,-6 - 273: 2,-6 - 274: 5,-3 - 275: 5,-2 - 605: -20,-2 - 606: -19,-2 - 607: -18,-2 - 608: -17,-2 - 609: -16,-2 - 610: -15,-2 - 611: -14,-2 - 612: -13,-2 - 613: -12,-2 - 614: -11,-2 - 628: -30,4 - 629: -31,4 - 737: -9,-17 - 745: -15,-19 - 746: 0,-24 - 747: 0,-23 - 748: 0,-22 - 927: -19,-29 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 344: -6,14 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1194: -2,-16 - 1195: -1,-16 - 1196: 0,-16 - 1206: 1,-19 - 1207: 2,-19 - 1208: 3,-19 - 1209: -3,-19 - 1210: -4,-19 - 1211: -5,-19 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 294: 10,3 - 515: 12,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 807: 13,-29 - 808: 17,-28 - 809: 16,-28 - 810: 15,-28 - 811: 14,-28 - 812: 17,-27 - 840: 23,-27 - 877: 21,-27 - 928: -19,-30 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 40: 28,-3 - 964: -3,-38 - 965: -4,-38 - 966: -6,-38 - 967: -5,-38 - 968: -6,-37 - 969: -6,-36 - 974: -3,-44 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 304: 10,-15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 228: -2,-14 - 266: -7,-2 - 267: -7,-3 - 268: -4,-6 - 269: -3,-6 - 270: -2,-6 - 602: -26,-2 - 603: -25,-2 - 604: -24,-2 - 630: -32,4 - 631: -33,4 - 728: 7,-17 - 736: 13,-19 - 749: -2,-24 - 750: -2,-23 - 751: -2,-22 - 915: -14,-22 - 925: -21,-30 - 926: -21,-29 - 944: 12,-29 - 945: 12,-28 - 946: 12,-24 - 947: 12,-25 - 948: 12,-26 - 949: 12,-27 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 345: -8,14 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 247: -6,-6 - 248: -7,-6 - 249: -7,-5 - 516: 13,21 - 517: 11,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 841: 27,-27 - 878: 19,-27 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 41: 24,1 - 281: 2,-2 - 282: 2,-1 - 283: 2,1 - 284: 1,1 - 287: 0,1 - 289: 2,-3 - 616: -21,0 - 975: 1,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 233: 1,-11 - 305: 12,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 230: 0,-10 - 261: 0,4 - 262: 1,4 - 263: 2,4 - 264: 5,1 - 265: 5,0 - 588: -11,0 - 589: -12,0 - 590: -13,0 - 591: -14,0 - 592: -15,0 - 593: -16,0 - 594: -17,0 - 595: -18,0 - 596: -20,0 - 597: -19,0 - 626: -31,5 - 627: -30,5 - 922: -15,-29 - 923: -19,-23 - 935: -10,-31 - 936: -12,-31 - 937: -11,-31 - 938: -13,-31 - 950: -4,-32 - 951: -5,-32 - 952: -6,-32 - 953: -8,-32 - 954: -9,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 347: -6,17 - 348: -6,16 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 250: 5,3 - 251: 5,4 - 252: 4,4 - 295: 15,6 - 296: 14,6 - 297: 13,6 - 298: 12,6 - 299: 11,6 - 300: 10,6 - 543: 12,15 - 757: 22,-11 - 760: 21,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 805: 13,-22 - 806: 13,-23 - 813: 17,-25 - 814: 17,-24 - 815: 15,-24 - 816: 14,-24 - 845: 21,-22 - 873: 34,-16 - 874: 33,-16 - 875: 21,-25 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 779: 32,-21 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 91: 9,1 - 225: -3,-10 - 358: -4,16 - 561: 6,15 - 622: -34,5 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 318: -12,11 - 337: -15,16 - 427: -12,31 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 92: 15,-3 - 227: 1,-14 - 352: 2,8 - 546: 14,10 - 739: -9,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 319: -7,9 - 339: -11,15 - 411: -6,19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 21: 30,-3 - 36: 25,1 - 37: 26,0 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 90: 9,-3 - 226: -3,-14 - 350: -4,8 - 545: 6,10 - 623: -34,4 - 730: 7,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 320: -12,9 - 336: -15,15 - 439: -12,19 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 570: 8,21 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 16: 22,1 - 42: 27,-3 - 43: 26,-2 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 89: 15,1 - 224: 1,-10 - 360: 2,16 - 559: 14,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 317: -7,11 - 338: -11,16 - 422: -6,31 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 23: 34,-6 - 24: 34,-4 - 25: 34,2 - 26: 34,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1281: 20,-30 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1280: 24,-30 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1241: 28,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW - decals: - 1240: 34,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE - decals: - 1239: 28,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSW - decals: - 1238: 34,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 890: 21,-19 - 903: 31,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 889: 23,-19 - 902: 33,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 773: 29,-21 - 887: 21,-15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 767: 29,-27 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 888: 23,-15 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 468: 3,30 - 469: 3,31 - 472: 3,32 - 477: 10,28 - 774: 29,-26 - 775: 29,-25 - 776: 29,-24 - 777: 29,-23 - 778: 29,-22 - 859: 29,-19 - 860: 29,-18 - 861: 29,-17 - 884: 21,-18 - 885: 21,-17 - 886: 21,-16 - 1284: 20,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1181: 1,-17 - 1236: 28,-31 - 1237: 28,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1179: 3,-19 - 1180: -1,-16 - 1182: -4,-19 - 1183: -5,-19 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 1178: -1,-20 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1234: 34,-31 - 1235: 34,-30 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 522: 13,31 - 523: 5,31 - 536: 12,31 - 538: 12,31 - 539: 13,31 - 540: 5,31 - 541: 6,31 - 542: 6,31 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 667: -11,-9 - 668: -12,-9 - 669: -13,-9 - 670: -14,-9 - 671: -15,-9 - 672: -16,-9 - 768: 34,-21 - 769: 33,-21 - 770: 32,-21 - 771: 31,-21 - 772: 30,-21 - 800: 34,-14 - 801: 33,-14 - 802: 32,-14 - 803: 31,-14 - 804: 30,-14 - 853: 26,-20 - 854: 25,-20 - 855: 24,-20 - 856: 21,-20 - 857: 20,-20 - 858: 19,-20 - 882: 22,-15 - 1225: 19,-26 - 1226: 20,-26 - 1227: 21,-26 - 1282: 19,-30 - 1283: 25,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 443: -14,25 - 444: -14,27 - 445: -14,26 - 446: -14,24 - 447: -14,28 - 448: -14,29 - 449: -14,23 - 470: 15,30 - 471: 15,31 - 478: 8,28 - 531: 15,32 - 862: 29,-19 - 863: 29,-18 - 864: 29,-17 - 879: 23,-18 - 880: 23,-17 - 881: 23,-16 - 1285: 24,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 81: 11,-8 - 82: 12,-8 - 83: 13,-8 - 450: -10,31 - 661: -11,-5 - 662: -12,-5 - 663: -13,-5 - 664: -14,-5 - 665: -15,-5 - 666: -16,-5 - 763: 34,-27 - 764: 33,-27 - 765: 32,-27 - 766: 30,-27 - 788: 31,-27 - 847: 26,-20 - 848: 24,-20 - 849: 25,-20 - 850: 21,-20 - 851: 20,-20 - 852: 19,-20 - 883: 22,-19 - 901: 32,-16 - 1228: 21,-26 - 1229: 20,-26 - 1230: 19,-26 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 1030: 24,21 - 1063: -24,2 - 1091: 22,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1031: 32,21 - 1089: 34,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1082: -3,-28 - 1090: 22,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 1081: 1,-28 - 1092: 34,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 990: 20,19 - 991: 20,20 - 992: 20,21 - 993: 20,22 - 994: 20,18 - 1000: 18,18 - 1001: 18,19 - 1002: 18,20 - 1003: 18,21 - 1004: 18,22 - 1013: 30,18 - 1014: 30,17 - 1015: 30,16 - 1021: 24,22 - 1059: -24,3 - 1060: -24,4 - 1061: -24,5 - 1062: -24,6 - 1064: -23,10 - 1065: -23,11 - 1085: 22,11 - 1086: 22,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1008: 26,18 - 1009: 27,18 - 1010: 28,18 - 1011: 29,18 - 1012: 30,18 - 1023: 31,21 - 1024: 30,21 - 1025: 29,21 - 1026: 28,21 - 1027: 27,21 - 1028: 26,21 - 1029: 25,21 - 1043: 23,10 - 1044: 24,10 - 1045: 25,10 - 1046: 26,10 - 1047: 27,10 - 1048: 28,10 - 1049: 29,10 - 1050: 30,10 - 1051: 31,10 - 1052: 32,10 - 1053: 33,10 - 1054: -19,2 - 1055: -20,2 - 1056: -21,2 - 1057: -22,2 - 1058: -23,2 - 1073: -22,8 - 1074: -23,8 - 1075: -24,8 - 1076: -25,8 - 1077: -26,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1016: 30,16 - 1017: 29,16 - 1018: 28,16 - 1019: 27,16 - 1020: 26,16 - 1032: 33,13 - 1033: 32,13 - 1034: 31,13 - 1035: 30,13 - 1036: 29,13 - 1037: 28,13 - 1038: 27,13 - 1039: 26,13 - 1040: 23,13 - 1041: 24,13 - 1042: 25,13 - 1068: -22,12 - 1069: -23,12 - 1070: -24,12 - 1071: -25,12 - 1072: -26,12 - 1078: 0,-28 - 1079: -1,-28 - 1080: -2,-28 - 1083: 1,0 - 1084: -3,0 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 995: 19,18 - 996: 19,19 - 997: 19,20 - 998: 19,21 - 999: 19,22 - 1005: 26,16 - 1006: 26,17 - 1007: 26,18 - 1022: 32,22 - 1066: -25,10 - 1067: -25,11 - 1087: 34,11 - 1088: 34,12 - - type: GridAtmosphere - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - -4,-4: - 0: 52431 - -4,-3: - 0: 65532 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 64719 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - -4,4: - 0: 61439 - -4,5: - 0: 65262 - -4,6: - 0: 65535 - -4,7: - 0: 61183 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 12287 - -1,7: - 0: 12079 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 30719 - 4,7: - 0: 30583 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 255 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 255 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 255 - -6,4: - 0: 14 - -5,4: - 0: 2185 - -5,5: - 0: 32768 - -5,6: - 0: 34952 - -5,7: - 0: 136 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 255 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -4,8: - 0: 14 - -3,8: - 0: 4095 - -2,8: - 0: 287 - -1,8: - 0: 15 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 255 - 0,8: - 0: 4095 - 1,8: - 0: 4095 - 2,8: - 0: 4095 - 3,8: - 0: 4095 - 4,8: - 0: 1911 - -8,-1: - 0: 65535 - -8,-3: - 0: 34944 - -8,-2: - 0: 34952 - -7,-3: - 0: 65520 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65520 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-3: - 0: 65520 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -9,-1: - 0: 61166 - -9,0: - 0: 61166 - -9,1: - 0: 61166 - -4,-9: - 0: 65520 - -3,-9: - 0: 65520 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-8: - 0: 30719 - 1: 34816 - 4,-7: - 0: 65535 - 5,-8: - 0: 61183 - 1: 4352 - 5,-7: - 0: 65535 - 6,-8: - 0: 52479 - 2: 13056 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 4,-9: - 0: 65280 - 5,-9: - 0: 65280 - 6,-9: - 0: 65280 - 7,-9: - 0: 61440 - 8,-9: - 0: 61440 - -5,-4: - 0: 8 - -2,-12: - 0: 61440 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -1,-12: - 0: 65520 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 0,-12: - 0: 63344 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-12: - 0: 28672 - 1,-11: - 0: 30583 - 1,-10: - 0: 30583 - -6,-9: - 0: 52352 - -5,-9: - 0: 65520 - -6,-8: - 0: 65484 - -6,-7: - 0: 65535 - -6,-6: - 0: 4095 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 36863 - -5,-5: - 0: 34952 - 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: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - type: GravityShake - shakeTimes: 10 - - type: GasTileOverlay - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 1455 - components: - - type: Transform - pos: 15.537778,1.6263883 - parent: 1668 - - uid: 2742 - components: - - type: Transform - pos: 4.5448904,18.624214 - parent: 1668 -- proto: AirCanister - entities: - - uid: 3695 - components: - - type: Transform - pos: -16.5,4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: Airlock - entities: - - uid: 5314 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 1668 -- proto: AirlockArmoryLocked - entities: - - uid: 2555 - components: - - type: Transform - pos: 7.5,19.5 - parent: 1668 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 4746 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 1668 - - uid: 5403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - - uid: 5404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 1668 -- proto: AirlockBarLocked - entities: - - uid: 4343 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 1668 -- proto: AirlockBrigGlassLocked - entities: - - uid: 2299 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1668 - - uid: 2316 - components: - - type: Transform - pos: 23.5,20.5 - parent: 1668 - - uid: 2340 - components: - - type: Transform - pos: 24.5,18.5 - parent: 1668 - - uid: 2342 - components: - - type: Transform - pos: 22.5,14.5 - parent: 1668 -- proto: AirlockBrigLocked - entities: - - uid: 2300 - components: - - type: Transform - pos: 21.5,22.5 - parent: 1668 - - uid: 2317 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1668 - - uid: 2343 - components: - - type: Transform - pos: 33.5,20.5 - parent: 1668 - - uid: 2344 - components: - - type: Transform - pos: 21.5,18.5 - parent: 1668 -- proto: AirlockCargoGlassLocked - entities: - - uid: 1191 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1668 - - uid: 1629 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1668 - - uid: 1630 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1668 - - uid: 1631 - components: - - type: Transform - pos: -8.5,15.5 - parent: 1668 -- proto: AirlockCargoLocked - entities: - - uid: 1192 - components: - - type: Transform - pos: -5.5,5.5 - parent: 1668 - - uid: 1632 - components: - - type: Transform - pos: -10.5,18.5 - parent: 1668 - - uid: 1633 - components: - - type: Transform - pos: -6.5,18.5 - parent: 1668 -- proto: AirlockCentralCommandGlass - entities: - - uid: 48 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 1668 - - uid: 49 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 1668 - - uid: 566 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 567 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1668 - - uid: 568 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 1668 - - uid: 569 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - uid: 570 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 1668 - - uid: 571 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1668 - - uid: 572 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1668 - - uid: 573 - components: - - type: Transform - pos: -26.5,0.5 - parent: 1668 - - uid: 3861 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 1668 - - uid: 3862 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 1668 - - uid: 4287 - components: - - type: Transform - pos: 8.5,0.5 - parent: 1668 - - uid: 4339 - components: - - type: Transform - pos: 6.5,0.5 - parent: 1668 - - uid: 4575 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 1668 - - uid: 4639 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 1668 - - uid: 4640 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 1668 - - uid: 5253 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1668 - - uid: 5414 - components: - - type: Transform - pos: 16.5,0.5 - parent: 1668 - - uid: 5420 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 1668 - - uid: 5853 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 5945 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 5946 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 1668 - - uid: 6276 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 1668 - - uid: 6278 - components: - - type: Transform - pos: -9.5,0.5 - parent: 1668 - - uid: 6279 - components: - - type: Transform - pos: -7.5,0.5 - parent: 1668 - - uid: 6313 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - uid: 6395 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - uid: 6396 - components: - - type: Transform - pos: 15.5,13.5 - parent: 1668 - - uid: 6475 - components: - - type: Transform - pos: 15.5,11.5 - parent: 1668 - - uid: 6476 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1668 - - uid: 6477 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1668 - - uid: 6478 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1668 - - uid: 6479 - components: - - type: Transform - pos: 3.5,11.5 - parent: 1668 - - uid: 6480 - components: - - type: Transform - pos: -28.5,0.5 - parent: 1668 - - uid: 6481 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 1668 - - uid: 6482 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 1668 - - uid: 6484 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 1668 - - uid: 6485 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 1668 - - uid: 6486 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 1668 - - uid: 6487 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 1668 -- proto: AirlockCentralCommandGlassLocked - entities: - - uid: 3572 - components: - - type: Transform - pos: -23.5,7.5 - parent: 1668 -- proto: AirlockCentralCommandLocked - entities: - - uid: 3781 - components: - - type: Transform - pos: -17.5,11.5 - parent: 1668 - - uid: 3782 - components: - - type: Transform - pos: -17.5,5.5 - parent: 1668 - - uid: 3792 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1668 - - uid: 3793 - components: - - type: Transform - pos: -19.5,7.5 - parent: 1668 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 5175 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 1668 -- proto: AirlockEngineeringLocked - entities: - - uid: 1131 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 1668 - - uid: 1177 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1668 - - uid: 1534 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1668 - - uid: 2522 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 3948 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 4258 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 1668 - - uid: 4755 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 4756 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1668 - - uid: 4763 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 6005 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1668 -- proto: AirlockExternalGlass - entities: - - uid: 481 - components: - - type: Transform - pos: 33.5,4.5 - parent: 1668 - - uid: 482 - components: - - type: Transform - pos: 33.5,2.5 - parent: 1668 - - uid: 483 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 1668 - - uid: 484 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 1668 - - uid: 1615 - components: - - type: Transform - pos: -14.5,25.5 - parent: 1668 - - uid: 1616 - components: - - type: Transform - pos: -14.5,27.5 - parent: 1668 - - uid: 3970 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 1668 - - uid: 3971 - components: - - type: Transform - pos: -32.5,0.5 - parent: 1668 - - uid: 6284 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 1668 - - uid: 6285 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 1668 -- proto: AirlockExternalGlassLocked - entities: - - uid: 1673 - components: - - type: Transform - pos: -9.5,32.5 - parent: 1668 - - uid: 2010 - components: - - type: Transform - pos: -0.5,22.5 - parent: 1668 - - uid: 4243 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 1668 - - uid: 5961 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1668 - - uid: 5962 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 1668 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1668 - - uid: 435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1668 - - uid: 436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1668 - - uid: 437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 1668 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1668 - - uid: 1614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1668 - - uid: 1672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 1668 - - uid: 3968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1668 - - uid: 3969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1668 - - uid: 5959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 1668 - - uid: 5960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 1668 - - uid: 6282 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 1668 - - uid: 6283 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 1668 -- proto: AirlockExternalLocked - entities: - - uid: 777 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 1668 - - uid: 2011 - components: - - type: Transform - pos: -2.5,25.5 - parent: 1668 - - uid: 4242 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 1668 -- proto: AirlockFreezer - entities: - - uid: 3419 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1668 -- proto: AirlockGlass - entities: - - uid: 3947 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1668 - - uid: 4259 - components: - - type: Transform - pos: 21.5,12.5 - parent: 1668 - - uid: 4260 - components: - - type: Transform - pos: 21.5,11.5 - parent: 1668 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 4342 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 1668 -- proto: AirlockKitchenLocked - entities: - - uid: 4341 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 1668 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 557 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 1668 - - uid: 558 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1668 - - uid: 730 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1668 -- proto: AirlockMedicalLocked - entities: - - uid: 574 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 729 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 1668 - - uid: 731 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1668 - - uid: 852 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1668 - - uid: 854 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 1668 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 130 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1668 - - uid: 774 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 1668 - - uid: 974 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 1668 - - uid: 2497 - components: - - type: Transform - pos: 12.5,16.5 - parent: 1668 - - uid: 2498 - components: - - type: Transform - pos: 11.5,16.5 - parent: 1668 - - uid: 2499 - components: - - type: Transform - pos: 12.5,19.5 - parent: 1668 - - uid: 2500 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1668 -- proto: AirlockSecurityLocked - entities: - - uid: 509 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1668 - - uid: 549 - components: - - type: Transform - pos: 18.5,5.5 - parent: 1668 - - uid: 550 - components: - - type: Transform - pos: 16.5,5.5 - parent: 1668 - - uid: 551 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1668 - - uid: 552 - components: - - type: Transform - pos: 6.5,3.5 - parent: 1668 - - uid: 775 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 1668 - - uid: 2825 - components: - - type: Transform - pos: 5.5,23.5 - parent: 1668 -- proto: APCBasic - entities: - - uid: 688 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1668 - - uid: 856 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 1668 - - uid: 963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1668 - - uid: 977 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 978 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 979 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 1088 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 1201 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 1235 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 1341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - - uid: 1674 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1668 - - uid: 1676 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1668 - - uid: 1955 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 2013 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 2562 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 2563 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2564 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1668 - - uid: 2566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,21.5 - parent: 1668 - - uid: 2944 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 2945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1668 - - uid: 2946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1668 - - uid: 3463 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3464 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 3465 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1668 - - uid: 3986 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 3987 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 3988 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 3989 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 3990 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 4361 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 4475 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1668 - - uid: 4477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 1668 - - uid: 4478 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4479 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 4480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 1668 - - uid: 4977 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 4992 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 5133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1668 - - uid: 5146 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5257 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5321 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 - - uid: 5423 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 5934 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 1668 - - uid: 6004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1668 - - uid: 6103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1668 - - uid: 6180 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 6181 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 6277 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1668 - - uid: 6397 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 -- proto: Ash - entities: - - uid: 3828 - components: - - type: Transform - pos: -10.652057,6.7775984 - parent: 1668 -- proto: AtmosDeviceFanTiny - entities: - - uid: 438 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 1668 - - uid: 439 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 1668 - - uid: 440 - components: - - type: Transform - pos: 35.5,2.5 - parent: 1668 - - uid: 441 - components: - - type: Transform - pos: 35.5,4.5 - parent: 1668 - - uid: 553 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1668 - - uid: 554 - components: - - type: Transform - pos: 17.5,5.5 - parent: 1668 - - uid: 555 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 556 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1668 - - uid: 763 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 1668 - - uid: 1473 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1668 - - uid: 1474 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1668 - - uid: 1634 - components: - - type: Transform - pos: -16.5,25.5 - parent: 1668 - - uid: 1635 - components: - - type: Transform - pos: -16.5,27.5 - parent: 1668 - - uid: 1671 - components: - - type: Transform - pos: -9.5,33.5 - parent: 1668 - - uid: 2012 - components: - - type: Transform - pos: -2.5,25.5 - parent: 1668 - - uid: 2921 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1668 - - uid: 4144 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 1668 - - uid: 4145 - components: - - type: Transform - pos: -34.5,0.5 - parent: 1668 - - uid: 4241 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 1668 - - uid: 5996 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1668 - - uid: 5997 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 1668 - - uid: 6286 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 1668 - - uid: 6287 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 1668 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 6789 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 1668 - - uid: 6963 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 6964 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 6965 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 1668 - - uid: 6966 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 1668 -- proto: AtmosFixOxygenMarker - entities: - - uid: 5051 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 1668 - - uid: 6967 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 1668 - - uid: 6968 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1668 - - uid: 6969 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 1668 - - uid: 6970 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1668 -- proto: Autolathe - entities: - - uid: 5310 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 1668 -- proto: BarSignTheLooseGoose - entities: - - uid: 4345 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 1668 - - uid: 4346 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 1668 -- proto: BaseGasCondenser - entities: - - uid: 640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: Bed - entities: - - uid: 2718 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1668 - - uid: 2763 - components: - - type: Transform - pos: 16.5,21.5 - parent: 1668 - - uid: 2774 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1668 - - uid: 2864 - components: - - type: Transform - pos: 3.5,24.5 - parent: 1668 - - uid: 2865 - components: - - type: Transform - pos: 3.5,27.5 - parent: 1668 - - uid: 2866 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1668 - - uid: 3624 - components: - - type: Transform - pos: -15.5,8.5 - parent: 1668 -- proto: BedsheetCentcom - entities: - - uid: 3625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1668 - - uid: 6643 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 1668 -- proto: BedsheetHOS - entities: - - uid: 2719 - components: - - type: MetaData - name: Warden's - - type: Transform - pos: 5.5,18.5 - parent: 1668 -- proto: BedsheetMedical - entities: - - uid: 1199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 - parent: 1668 - - uid: 1200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 1668 -- proto: BedsheetOrange - entities: - - uid: 2764 - components: - - type: Transform - pos: 16.5,21.5 - parent: 1668 - - uid: 2775 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1668 - - uid: 2867 - components: - - type: Transform - pos: 3.5,24.5 - parent: 1668 - - uid: 2868 - components: - - type: Transform - pos: 3.5,27.5 - parent: 1668 - - uid: 2869 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1668 -- proto: BiomassReclaimer - entities: - - uid: 6604 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 1668 -- proto: BlastDoor - entities: - - uid: 1552 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1804 - - uid: 1607 - components: - - type: Transform - pos: -16.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1611 - - uid: 1608 - components: - - type: Transform - pos: -16.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1612 - - uid: 1609 - components: - - type: Transform - pos: -14.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1612 - - uid: 1610 - components: - - type: Transform - pos: -14.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1611 - - uid: 2790 - components: - - type: Transform - pos: 11.5,31.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2928 - - uid: 2886 - components: - - type: Transform - pos: 14.5,31.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2928 - - uid: 2925 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2927 - - uid: 2926 - components: - - type: Transform - pos: 4.5,31.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2927 - - uid: 3787 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2920 - - uid: 3788 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2920 - - uid: 3789 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2920 - - uid: 4762 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 1668 -- proto: BlastDoorExterior1Open - entities: - - uid: 710 - components: - - type: Transform - pos: 17.5,1.5 - parent: 1668 - - uid: 711 - components: - - type: Transform - pos: 17.5,0.5 - parent: 1668 - - uid: 712 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 1668 - - uid: 713 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 1668 - - uid: 714 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 1668 -- proto: BlastDoorExterior2Open - entities: - - uid: 716 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 1668 - - uid: 717 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 1668 - - uid: 718 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 1668 - - uid: 719 - components: - - type: Transform - pos: 7.5,0.5 - parent: 1668 - - uid: 720 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1668 -- proto: BlastDoorOpen - entities: - - uid: 786 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 789 - - uid: 787 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 789 - - uid: 788 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 789 - - uid: 1430 - components: - - type: Transform - pos: -1.5,6.5 - parent: 1668 - - uid: 1431 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - uid: 1432 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1668 - - uid: 1437 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 1668 - - uid: 1438 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 1668 - - uid: 1439 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 1668 - - uid: 1440 - components: - - type: Transform - pos: -8.5,0.5 - parent: 1668 - - uid: 1441 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1668 - - uid: 2146 - components: - - type: Transform - pos: 4.5,10.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - - uid: 2147 - components: - - type: Transform - pos: 4.5,11.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - - uid: 2148 - components: - - type: Transform - pos: 4.5,12.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - - uid: 2149 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - - uid: 2150 - components: - - type: Transform - pos: 4.5,14.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - - uid: 3865 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1668 - - uid: 3866 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1668 - - uid: 5234 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5235 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5236 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5237 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5238 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5239 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5240 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5241 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - - uid: 5951 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 1668 - - uid: 5952 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 1668 - - uid: 5953 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 1668 - - uid: 5954 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 1668 - - uid: 5955 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1668 - - uid: 6483 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 1668 - - uid: 6521 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - - uid: 6522 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - - uid: 6523 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - - uid: 6524 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - - uid: 6525 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6442 -- proto: Bookshelf - entities: - - uid: 2370 - components: - - type: Transform - pos: 23.5,23.5 - parent: 1668 - - uid: 2371 - components: - - type: Transform - pos: 24.5,23.5 - parent: 1668 - - uid: 2372 - components: - - type: Transform - pos: 25.5,23.5 - parent: 1668 - - uid: 2373 - components: - - type: Transform - pos: 32.5,23.5 - parent: 1668 - - uid: 2374 - components: - - type: Transform - pos: 33.5,23.5 - parent: 1668 - - uid: 2375 - components: - - type: Transform - pos: 31.5,23.5 - parent: 1668 - - uid: 2376 - components: - - type: Transform - pos: 26.5,10.5 - parent: 1668 - - uid: 2377 - components: - - type: Transform - pos: 25.5,10.5 - parent: 1668 - - uid: 2378 - components: - - type: Transform - pos: 24.5,10.5 - parent: 1668 - - uid: 2379 - components: - - type: Transform - pos: 30.5,10.5 - parent: 1668 - - uid: 2380 - components: - - type: Transform - pos: 31.5,10.5 - parent: 1668 - - uid: 2382 - components: - - type: Transform - pos: 32.5,10.5 - parent: 1668 - - uid: 3433 - components: - - type: Transform - pos: -24.5,2.5 - parent: 1668 - - uid: 3434 - components: - - type: Transform - pos: -26.5,10.5 - parent: 1668 - - uid: 3821 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 1668 - - uid: 4185 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 1668 - - uid: 4186 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 1668 - - uid: 4187 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 1668 -- proto: BookshelfFilled - entities: - - uid: 3631 - components: - - type: Transform - pos: 20.5,10.5 - parent: 1668 - - uid: 3716 - components: - - type: Transform - pos: 16.5,16.5 - parent: 1668 - - uid: 3717 - components: - - type: Transform - pos: 16.5,15.5 - parent: 1668 - - uid: 6607 - components: - - type: Transform - pos: 19.5,10.5 - parent: 1668 - - uid: 6650 - components: - - type: Transform - pos: 17.5,10.5 - parent: 1668 - - uid: 6933 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1668 - - uid: 6934 - components: - - type: Transform - pos: 20.5,15.5 - parent: 1668 - - uid: 6935 - components: - - type: Transform - pos: 20.5,16.5 - parent: 1668 -- proto: BoozeDispenser - entities: - - uid: 4426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - - uid: 4428 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 1668 -- proto: BoxFlashbang - entities: - - uid: 1450 - components: - - type: Transform - pos: 13.475631,6.6059804 - parent: 1668 -- proto: BoxFolderBlack - entities: - - uid: 2236 - components: - - type: Transform - pos: -8.478459,8.547297 - parent: 1668 - - uid: 3750 - components: - - type: Transform - pos: -20.479141,11.485098 - parent: 1668 -- proto: BoxFolderBlue - entities: - - uid: 1443 - components: - - type: Transform - pos: -0.35287756,1.4752237 - parent: 1668 - - uid: 2462 - components: - - type: Transform - pos: 30.518238,17.551378 - parent: 1668 - - uid: 2463 - components: - - type: Transform - pos: 29.486988,21.410753 - parent: 1668 - - uid: 3839 - components: - - type: Transform - pos: -24.426022,-5.7340455 - parent: 1668 -- proto: BoxFolderCentCom - entities: - - uid: 6501 - components: - - type: Transform - pos: -20.339329,11.399686 - parent: 1668 - - uid: 6987 - components: - - type: Transform - pos: 0.751516,0.4821344 - parent: 1668 - - uid: 6990 - components: - - type: Transform - pos: -20.40427,4.6069345 - parent: 1668 -- proto: BoxFolderCentComClipboard - entities: - - uid: 2198 - components: - - type: Transform - pos: -1.5118587,0.6696344 - parent: 1668 - - uid: 6991 - components: - - type: Transform - pos: -20.46677,5.55778 - parent: 1668 -- proto: BoxFolderRed - entities: - - uid: 1398 - components: - - type: Transform - pos: -3.4754791,-12.432284 - parent: 1668 - - uid: 1444 - components: - - type: Transform - pos: -0.22787756,1.6627237 - parent: 1668 - - uid: 2461 - components: - - type: Transform - pos: 27.393238,17.582628 - parent: 1668 - - uid: 3838 - components: - - type: Transform - pos: -24.551022,-5.5465455 - parent: 1668 - - uid: 6504 - components: - - type: Transform - pos: 27.483435,-7.4993086 - parent: 1668 -- proto: BoxFolderWhite - entities: - - uid: 1397 - components: - - type: Transform - pos: 2.5401459,-12.541659 - parent: 1668 -- proto: BoxFolderYellow - entities: - - uid: 2230 - components: - - type: Transform - pos: -15.424221,14.516905 - parent: 1668 - - uid: 2231 - components: - - type: Transform - pos: -8.454054,12.663795 - parent: 1668 - - uid: 2232 - components: - - type: Transform - pos: -12.532179,10.67942 - parent: 1668 - - uid: 6612 - components: - - type: Transform - pos: 2.170168,-2.5148773 - parent: 1668 - - uid: 6618 - components: - - type: Transform - pos: 2.060793,-2.4055023 - parent: 1668 -- proto: BoxHandcuff - entities: - - uid: 516 - components: - - type: Transform - pos: 21.459097,-10.359755 - parent: 1668 - - uid: 1453 - components: - - type: Transform - pos: 15.460006,6.6372304 - parent: 1668 - - uid: 3150 - components: - - type: Transform - pos: 10.465678,25.678463 - parent: 1668 - - uid: 3898 - components: - - type: Transform - pos: -12.656932,-5.6960163 - parent: 1668 -- proto: BoxLatexGloves - entities: - - uid: 4391 - components: - - type: Transform - pos: 10.34866,-7.2899737 - parent: 1668 -- proto: BoxPDA - entities: - - uid: 1457 - components: - - type: Transform - pos: 1.5702643,-2.4016738 - parent: 1668 -- proto: BoxSterileMask - entities: - - uid: 627 - components: - - type: Transform - pos: 10.430174,-7.5213776 - parent: 1668 -- proto: BoxZiptie - entities: - - uid: 4696 - components: - - type: Transform - pos: 28.527084,-11.476642 - parent: 1668 -- proto: BriefcaseBrownFilled - entities: - - uid: 2468 - components: - - type: Transform - pos: 34.408863,23.770128 - parent: 1668 - - uid: 2469 - components: - - type: Transform - pos: 34.533863,23.582628 - parent: 1668 - - uid: 2470 - components: - - type: Transform - pos: 32.486988,19.707628 - parent: 1668 -- proto: BrigTimer - entities: - - uid: 3723 - components: - - type: Transform - pos: 4.5,26.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2832: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 3870 - components: - - type: Transform - pos: 14.5,29.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2863: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 3906 - components: - - type: Transform - pos: 14.5,26.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2776: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 6602 - components: - - type: Transform - pos: 4.5,29.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2862: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 6649 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2558: - - Start: Close - - Timer: AutoClose - - Timer: Open -- proto: CableApcExtension - entities: - - uid: 857 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 858 - components: - - type: Transform - pos: 20.5,5.5 - parent: 1668 - - uid: 859 - components: - - type: Transform - pos: 20.5,4.5 - parent: 1668 - - uid: 860 - components: - - type: Transform - pos: 20.5,3.5 - parent: 1668 - - uid: 861 - components: - - type: Transform - pos: 20.5,2.5 - parent: 1668 - - uid: 862 - components: - - type: Transform - pos: 21.5,2.5 - parent: 1668 - - uid: 863 - components: - - type: Transform - pos: 22.5,2.5 - parent: 1668 - - uid: 864 - components: - - type: Transform - pos: 23.5,2.5 - parent: 1668 - - uid: 865 - components: - - type: Transform - pos: 24.5,2.5 - parent: 1668 - - uid: 866 - components: - - type: Transform - pos: 25.5,2.5 - parent: 1668 - - uid: 867 - components: - - type: Transform - pos: 26.5,2.5 - parent: 1668 - - uid: 868 - components: - - type: Transform - pos: 27.5,2.5 - parent: 1668 - - uid: 869 - components: - - type: Transform - pos: 28.5,2.5 - parent: 1668 - - uid: 870 - components: - - type: Transform - pos: 29.5,2.5 - parent: 1668 - - uid: 871 - components: - - type: Transform - pos: 30.5,2.5 - parent: 1668 - - uid: 872 - components: - - type: Transform - pos: 31.5,2.5 - parent: 1668 - - uid: 873 - components: - - type: Transform - pos: 32.5,2.5 - parent: 1668 - - uid: 874 - components: - - type: Transform - pos: 33.5,2.5 - parent: 1668 - - uid: 875 - components: - - type: Transform - pos: 34.5,2.5 - parent: 1668 - - uid: 876 - components: - - type: Transform - pos: 21.5,4.5 - parent: 1668 - - uid: 877 - components: - - type: Transform - pos: 22.5,4.5 - parent: 1668 - - uid: 878 - components: - - type: Transform - pos: 23.5,4.5 - parent: 1668 - - uid: 879 - components: - - type: Transform - pos: 24.5,4.5 - parent: 1668 - - uid: 880 - components: - - type: Transform - pos: 25.5,4.5 - parent: 1668 - - uid: 881 - components: - - type: Transform - pos: 26.5,4.5 - parent: 1668 - - uid: 882 - components: - - type: Transform - pos: 27.5,4.5 - parent: 1668 - - uid: 883 - components: - - type: Transform - pos: 28.5,4.5 - parent: 1668 - - uid: 884 - components: - - type: Transform - pos: 29.5,4.5 - parent: 1668 - - uid: 885 - components: - - type: Transform - pos: 30.5,4.5 - parent: 1668 - - uid: 886 - components: - - type: Transform - pos: 31.5,4.5 - parent: 1668 - - uid: 887 - components: - - type: Transform - pos: 32.5,4.5 - parent: 1668 - - uid: 888 - components: - - type: Transform - pos: 33.5,4.5 - parent: 1668 - - uid: 889 - components: - - type: Transform - pos: 26.5,5.5 - parent: 1668 - - uid: 890 - components: - - type: Transform - pos: 30.5,6.5 - parent: 1668 - - uid: 891 - components: - - type: Transform - pos: 28.5,6.5 - parent: 1668 - - uid: 892 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 1668 - - uid: 893 - components: - - type: Transform - pos: 24.5,7.5 - parent: 1668 - - uid: 894 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 1668 - - uid: 895 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 1668 - - uid: 896 - components: - - type: Transform - pos: 32.5,1.5 - parent: 1668 - - uid: 897 - components: - - type: Transform - pos: 32.5,0.5 - parent: 1668 - - uid: 899 - components: - - type: Transform - pos: 29.5,6.5 - parent: 1668 - - uid: 900 - components: - - type: Transform - pos: 28.5,7.5 - parent: 1668 - - uid: 901 - components: - - type: Transform - pos: 31.5,5.5 - parent: 1668 - - uid: 902 - components: - - type: Transform - pos: 24.5,6.5 - parent: 1668 - - uid: 903 - components: - - type: Transform - pos: 23.5,6.5 - parent: 1668 - - uid: 904 - components: - - type: Transform - pos: 22.5,6.5 - parent: 1668 - - uid: 906 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1668 - - uid: 907 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 1668 - - uid: 908 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 1668 - - uid: 909 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 1668 - - uid: 910 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 1668 - - uid: 911 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 1668 - - uid: 912 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 1668 - - uid: 913 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 1668 - - uid: 914 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 1668 - - uid: 915 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 1668 - - uid: 916 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 1668 - - uid: 917 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 1668 - - uid: 918 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 1668 - - uid: 919 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 1668 - - uid: 920 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 1668 - - uid: 921 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 1668 - - uid: 922 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 1668 - - uid: 923 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 1668 - - uid: 924 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 1668 - - uid: 925 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 1668 - - uid: 926 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 1668 - - uid: 927 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 1668 - - uid: 928 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 1668 - - uid: 929 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 1668 - - uid: 930 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 1668 - - uid: 931 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 1668 - - uid: 932 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 1668 - - uid: 933 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 1668 - - uid: 934 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 1668 - - uid: 935 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 1668 - - uid: 936 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 1668 - - uid: 937 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 1668 - - uid: 938 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 1668 - - uid: 939 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 1668 - - uid: 940 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 1668 - - uid: 941 - components: - - type: Transform - pos: 21.5,6.5 - parent: 1668 - - uid: 942 - components: - - type: Transform - pos: 31.5,6.5 - parent: 1668 - - uid: 943 - components: - - type: Transform - pos: 33.5,3.5 - parent: 1668 - - uid: 944 - components: - - type: Transform - pos: 33.5,5.5 - parent: 1668 - - uid: 945 - components: - - type: Transform - pos: 33.5,1.5 - parent: 1668 - - uid: 946 - components: - - type: Transform - pos: 35.5,2.5 - parent: 1668 - - uid: 947 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1668 - - uid: 948 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1668 - - uid: 949 - components: - - type: Transform - pos: 35.5,4.5 - parent: 1668 - - uid: 950 - components: - - type: Transform - pos: 35.5,5.5 - parent: 1668 - - uid: 951 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 1668 - - uid: 952 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 1668 - - uid: 953 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 1668 - - uid: 954 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 1668 - - uid: 955 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1668 - - uid: 956 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 1668 - - uid: 957 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1668 - - uid: 958 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 1668 - - uid: 959 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 1668 - - uid: 960 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 1668 - - uid: 961 - components: - - type: Transform - pos: 34.5,0.5 - parent: 1668 - - uid: 962 - components: - - type: Transform - pos: 34.5,1.5 - parent: 1668 - - uid: 964 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 1668 - - uid: 965 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 1668 - - uid: 966 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 1668 - - uid: 967 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 1668 - - uid: 968 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 1668 - - uid: 969 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 1668 - - uid: 970 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1668 - - uid: 971 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 1668 - - uid: 972 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1668 - - uid: 973 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1668 - - uid: 975 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - uid: 976 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 1668 - - uid: 980 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 981 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - uid: 982 - components: - - type: Transform - pos: 9.5,0.5 - parent: 1668 - - uid: 983 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1668 - - uid: 984 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 1668 - - uid: 985 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1668 - - uid: 986 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 987 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 1668 - - uid: 988 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1668 - - uid: 989 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 1668 - - uid: 990 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 1668 - - uid: 991 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 1668 - - uid: 992 - components: - - type: Transform - pos: 15.5,0.5 - parent: 1668 - - uid: 993 - components: - - type: Transform - pos: 16.5,0.5 - parent: 1668 - - uid: 994 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 995 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 1668 - - uid: 996 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 997 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 998 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1668 - - uid: 999 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 1000 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 1001 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1668 - - uid: 1002 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1668 - - uid: 1003 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 1668 - - uid: 1004 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 1668 - - uid: 1005 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 1668 - - uid: 1006 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 1007 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1668 - - uid: 1008 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1668 - - uid: 1009 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1668 - - uid: 1010 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 1011 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 1012 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 1668 - - uid: 1013 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 1668 - - uid: 1014 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 1668 - - uid: 1015 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 1668 - - uid: 1016 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 1668 - - uid: 1017 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1668 - - uid: 1018 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1668 - - uid: 1019 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 1668 - - uid: 1020 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 1021 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 1022 - components: - - type: Transform - pos: 12.5,5.5 - parent: 1668 - - uid: 1023 - components: - - type: Transform - pos: 12.5,4.5 - parent: 1668 - - uid: 1024 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1668 - - uid: 1025 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 1026 - components: - - type: Transform - pos: 13.5,2.5 - parent: 1668 - - uid: 1027 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 1028 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1668 - - uid: 1029 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1668 - - uid: 1030 - components: - - type: Transform - pos: 13.5,5.5 - parent: 1668 - - uid: 1031 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1668 - - uid: 1032 - components: - - type: Transform - pos: 15.5,5.5 - parent: 1668 - - uid: 1033 - components: - - type: Transform - pos: 16.5,5.5 - parent: 1668 - - uid: 1034 - components: - - type: Transform - pos: 17.5,5.5 - parent: 1668 - - uid: 1035 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1668 - - uid: 1036 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1668 - - uid: 1037 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1668 - - uid: 1038 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1668 - - uid: 1039 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1668 - - uid: 1040 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1668 - - uid: 1041 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1668 - - uid: 1042 - components: - - type: Transform - pos: 11.5,5.5 - parent: 1668 - - uid: 1043 - components: - - type: Transform - pos: 10.5,5.5 - parent: 1668 - - uid: 1044 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1668 - - uid: 1045 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1668 - - uid: 1046 - components: - - type: Transform - pos: 9.5,4.5 - parent: 1668 - - uid: 1047 - components: - - type: Transform - pos: 8.5,4.5 - parent: 1668 - - uid: 1048 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1668 - - uid: 1049 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1668 - - uid: 1050 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1668 - - uid: 1051 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1668 - - uid: 1052 - components: - - type: Transform - pos: 12.5,9.5 - parent: 1668 - - uid: 1053 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1668 - - uid: 1054 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1668 - - uid: 1055 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1668 - - uid: 1056 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1668 - - uid: 1057 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1668 - - uid: 1058 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1668 - - uid: 1059 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1668 - - uid: 1060 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1668 - - uid: 1061 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1668 - - uid: 1062 - components: - - type: Transform - pos: 28.5,1.5 - parent: 1668 - - uid: 1063 - components: - - type: Transform - pos: 28.5,0.5 - parent: 1668 - - uid: 1064 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 1668 - - uid: 1068 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 1668 - - uid: 1069 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 1668 - - uid: 1070 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 1668 - - uid: 1089 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 1090 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1668 - - uid: 1091 - components: - - type: Transform - pos: -2.5,0.5 - parent: 1668 - - uid: 1092 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 1668 - - uid: 1093 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 1668 - - uid: 1094 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1668 - - uid: 1095 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1668 - - uid: 1096 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1668 - - uid: 1097 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1668 - - uid: 1098 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1668 - - uid: 1099 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1668 - - uid: 1100 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1668 - - uid: 1101 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1668 - - uid: 1102 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1668 - - uid: 1103 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 1104 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1668 - - uid: 1105 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1668 - - uid: 1106 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1668 - - uid: 1107 - components: - - type: Transform - pos: -1.5,2.5 - parent: 1668 - - uid: 1108 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1668 - - uid: 1109 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1668 - - uid: 1110 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 1668 - - uid: 1111 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1668 - - uid: 1112 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 1668 - - uid: 1113 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 1668 - - uid: 1114 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 1668 - - uid: 1115 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1668 - - uid: 1116 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1668 - - uid: 1117 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1668 - - uid: 1118 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1668 - - uid: 1119 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1668 - - uid: 1120 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1668 - - uid: 1121 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 1668 - - uid: 1122 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 1668 - - uid: 1123 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1668 - - uid: 1124 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1668 - - uid: 1125 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 1668 - - uid: 1126 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1668 - - uid: 1127 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1668 - - uid: 1128 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1668 - - uid: 1129 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1668 - - uid: 1137 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 1668 - - uid: 1202 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 1668 - - uid: 1203 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 1668 - - uid: 1204 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 1668 - - uid: 1205 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 1668 - - uid: 1206 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1668 - - uid: 1207 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 1668 - - uid: 1208 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 1668 - - uid: 1209 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 1210 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1668 - - uid: 1211 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 1668 - - uid: 1212 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 1668 - - uid: 1213 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1668 - - uid: 1214 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1668 - - uid: 1215 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 1668 - - uid: 1216 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 1668 - - uid: 1217 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 1668 - - uid: 1218 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 1668 - - uid: 1219 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - uid: 1220 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 1668 - - uid: 1221 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 1668 - - uid: 1222 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 1668 - - uid: 1223 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 1668 - - uid: 1224 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 1668 - - uid: 1225 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 1668 - - uid: 1226 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1668 - - uid: 1227 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1668 - - uid: 1228 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 1668 - - uid: 1229 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1668 - - uid: 1230 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1668 - - uid: 1231 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 1668 - - uid: 1232 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1668 - - uid: 1233 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 1668 - - uid: 1234 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 1668 - - uid: 1236 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 1237 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1668 - - uid: 1238 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1668 - - uid: 1239 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 1668 - - uid: 1240 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1668 - - uid: 1241 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 1668 - - uid: 1242 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 1668 - - uid: 1243 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1668 - - uid: 1244 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1668 - - uid: 1245 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1668 - - uid: 1246 - components: - - type: Transform - pos: 7.5,-10.5 - parent: 1668 - - uid: 1247 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1668 - - uid: 1248 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1668 - - uid: 1249 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1668 - - uid: 1250 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1668 - - uid: 1251 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1668 - - uid: 1252 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 - - uid: 1253 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 1668 - - uid: 1254 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 1668 - - uid: 1255 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1668 - - uid: 1256 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1668 - - uid: 1257 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1668 - - uid: 1258 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1668 - - uid: 1259 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 1668 - - uid: 1260 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 1261 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 1668 - - uid: 1262 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1668 - - uid: 1263 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1668 - - uid: 1264 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 1265 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 1668 - - uid: 1266 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 1668 - - uid: 1267 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1668 - - uid: 1268 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 1668 - - uid: 1269 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 1668 - - uid: 1270 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1668 - - uid: 1271 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1668 - - uid: 1272 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 1668 - - uid: 1273 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 1668 - - uid: 1274 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1668 - - uid: 1275 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 1668 - - uid: 1276 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1668 - - uid: 1277 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 1668 - - uid: 1278 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1668 - - uid: 1279 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 1668 - - uid: 1280 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 1668 - - uid: 1281 - components: - - type: Transform - pos: 5.5,1.5 - parent: 1668 - - uid: 1282 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1668 - - uid: 1283 - components: - - type: Transform - pos: 5.5,3.5 - parent: 1668 - - uid: 1284 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1668 - - uid: 1285 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1668 - - uid: 1286 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1668 - - uid: 1287 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1668 - - uid: 1288 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1668 - - uid: 1289 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1668 - - uid: 1290 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - uid: 1291 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - uid: 1292 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1668 - - uid: 1293 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1668 - - uid: 1294 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1668 - - uid: 1295 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1668 - - uid: 1296 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - uid: 1297 - components: - - type: Transform - pos: -6.5,3.5 - parent: 1668 - - uid: 1298 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1668 - - uid: 1299 - components: - - type: Transform - pos: -6.5,1.5 - parent: 1668 - - uid: 1300 - components: - - type: Transform - pos: -6.5,0.5 - parent: 1668 - - uid: 1301 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1668 - - uid: 1302 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 1668 - - uid: 1303 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 1668 - - uid: 1304 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1668 - - uid: 1305 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 1668 - - uid: 1306 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 1668 - - uid: 1307 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 1668 - - uid: 1308 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 1668 - - uid: 1309 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 1668 - - uid: 1310 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 1668 - - uid: 1311 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1668 - - uid: 1312 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 1668 - - uid: 1313 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1668 - - uid: 1314 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1668 - - uid: 1315 - components: - - type: Transform - pos: -7.5,3.5 - parent: 1668 - - uid: 1316 - components: - - type: Transform - pos: -7.5,4.5 - parent: 1668 - - uid: 1317 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1668 - - uid: 1318 - components: - - type: Transform - pos: 0.5,5.5 - parent: 1668 - - uid: 1319 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1668 - - uid: 1320 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1668 - - uid: 1342 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 1668 - - uid: 1343 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - uid: 1344 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 1668 - - uid: 1345 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 1346 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 1668 - - uid: 1347 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1668 - - uid: 1348 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 1349 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 1350 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 1351 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 1352 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 1353 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1668 - - uid: 1354 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1668 - - uid: 1355 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1668 - - uid: 1356 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 1668 - - uid: 1357 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 1668 - - uid: 1358 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 1668 - - uid: 1359 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1668 - - uid: 1360 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 1668 - - uid: 1361 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 1668 - - uid: 1362 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1668 - - uid: 1363 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1668 - - uid: 1364 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1668 - - uid: 1365 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 1668 - - uid: 1366 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 1668 - - uid: 1367 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 1668 - - uid: 1368 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1668 - - uid: 1369 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 1668 - - uid: 1370 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 1668 - - uid: 1371 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 1668 - - uid: 1372 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 1668 - - uid: 1373 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 1668 - - uid: 1374 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1668 - - uid: 1375 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 1668 - - uid: 1376 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 1668 - - uid: 1377 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 1668 - - uid: 1378 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1668 - - uid: 1379 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 1668 - - uid: 1380 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1668 - - uid: 1381 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 1668 - - uid: 1382 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 1668 - - uid: 1383 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 1668 - - uid: 1468 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 1668 - - uid: 1469 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1668 - - uid: 1470 - components: - - type: Transform - pos: 15.5,4.5 - parent: 1668 - - uid: 1471 - components: - - type: Transform - pos: 15.5,3.5 - parent: 1668 - - uid: 1472 - components: - - type: Transform - pos: 16.5,3.5 - parent: 1668 - - uid: 1678 - components: - - type: Transform - pos: -6.5,16.5 - parent: 1668 - - uid: 1679 - components: - - type: Transform - pos: -6.5,15.5 - parent: 1668 - - uid: 1680 - components: - - type: Transform - pos: -6.5,17.5 - parent: 1668 - - uid: 1681 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1668 - - uid: 1682 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1668 - - uid: 1683 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1684 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - uid: 1685 - components: - - type: Transform - pos: -8.5,11.5 - parent: 1668 - - uid: 1686 - components: - - type: Transform - pos: -8.5,10.5 - parent: 1668 - - uid: 1687 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1668 - - uid: 1688 - components: - - type: Transform - pos: -7.5,9.5 - parent: 1668 - - uid: 1689 - components: - - type: Transform - pos: -6.5,9.5 - parent: 1668 - - uid: 1690 - components: - - type: Transform - pos: -5.5,9.5 - parent: 1668 - - uid: 1691 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1668 - - uid: 1692 - components: - - type: Transform - pos: -4.5,8.5 - parent: 1668 - - uid: 1693 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1668 - - uid: 1694 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1668 - - uid: 1695 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1668 - - uid: 1696 - components: - - type: Transform - pos: -6.5,6.5 - parent: 1668 - - uid: 1697 - components: - - type: Transform - pos: -9.5,9.5 - parent: 1668 - - uid: 1698 - components: - - type: Transform - pos: -10.5,9.5 - parent: 1668 - - uid: 1699 - components: - - type: Transform - pos: -11.5,9.5 - parent: 1668 - - uid: 1700 - components: - - type: Transform - pos: -9.5,11.5 - parent: 1668 - - uid: 1701 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1668 - - uid: 1702 - components: - - type: Transform - pos: -11.5,11.5 - parent: 1668 - - uid: 1703 - components: - - type: Transform - pos: -7.5,11.5 - parent: 1668 - - uid: 1704 - components: - - type: Transform - pos: -6.5,11.5 - parent: 1668 - - uid: 1705 - components: - - type: Transform - pos: -6.5,12.5 - parent: 1668 - - uid: 1706 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1707 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1668 - - uid: 1708 - components: - - type: Transform - pos: -15.5,17.5 - parent: 1668 - - uid: 1709 - components: - - type: Transform - pos: -16.5,17.5 - parent: 1668 - - uid: 1710 - components: - - type: Transform - pos: -16.5,18.5 - parent: 1668 - - uid: 1711 - components: - - type: Transform - pos: -15.5,18.5 - parent: 1668 - - uid: 1712 - components: - - type: Transform - pos: -13.5,18.5 - parent: 1668 - - uid: 1713 - components: - - type: Transform - pos: -12.5,18.5 - parent: 1668 - - uid: 1714 - components: - - type: Transform - pos: -14.5,16.5 - parent: 1668 - - uid: 1715 - components: - - type: Transform - pos: -14.5,15.5 - parent: 1668 - - uid: 1716 - components: - - type: Transform - pos: -13.5,15.5 - parent: 1668 - - uid: 1717 - components: - - type: Transform - pos: -12.5,15.5 - parent: 1668 - - uid: 1718 - components: - - type: Transform - pos: -11.5,15.5 - parent: 1668 - - uid: 1719 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1668 - - uid: 1720 - components: - - type: Transform - pos: -9.5,15.5 - parent: 1668 - - uid: 1721 - components: - - type: Transform - pos: -10.5,14.5 - parent: 1668 - - uid: 1722 - components: - - type: Transform - pos: -10.5,16.5 - parent: 1668 - - uid: 1723 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1668 - - uid: 1724 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1668 - - uid: 1725 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1668 - - uid: 1726 - components: - - type: Transform - pos: -6.5,19.5 - parent: 1668 - - uid: 1727 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1668 - - uid: 1728 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1668 - - uid: 1729 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1668 - - uid: 1730 - components: - - type: Transform - pos: -10.5,19.5 - parent: 1668 - - uid: 1731 - components: - - type: Transform - pos: -11.5,19.5 - parent: 1668 - - uid: 1732 - components: - - type: Transform - pos: -11.5,20.5 - parent: 1668 - - uid: 1733 - components: - - type: Transform - pos: -11.5,21.5 - parent: 1668 - - uid: 1734 - components: - - type: Transform - pos: -11.5,22.5 - parent: 1668 - - uid: 1735 - components: - - type: Transform - pos: -11.5,23.5 - parent: 1668 - - uid: 1736 - components: - - type: Transform - pos: -11.5,24.5 - parent: 1668 - - uid: 1737 - components: - - type: Transform - pos: -11.5,25.5 - parent: 1668 - - uid: 1738 - components: - - type: Transform - pos: -11.5,26.5 - parent: 1668 - - uid: 1739 - components: - - type: Transform - pos: -11.5,27.5 - parent: 1668 - - uid: 1740 - components: - - type: Transform - pos: -11.5,28.5 - parent: 1668 - - uid: 1741 - components: - - type: Transform - pos: -11.5,29.5 - parent: 1668 - - uid: 1742 - components: - - type: Transform - pos: -11.5,30.5 - parent: 1668 - - uid: 1743 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1668 - - uid: 1744 - components: - - type: Transform - pos: -12.5,31.5 - parent: 1668 - - uid: 1745 - components: - - type: Transform - pos: -12.5,32.5 - parent: 1668 - - uid: 1746 - components: - - type: Transform - pos: -10.5,31.5 - parent: 1668 - - uid: 1747 - components: - - type: Transform - pos: -9.5,31.5 - parent: 1668 - - uid: 1748 - components: - - type: Transform - pos: -8.5,31.5 - parent: 1668 - - uid: 1749 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1668 - - uid: 1750 - components: - - type: Transform - pos: -6.5,31.5 - parent: 1668 - - uid: 1751 - components: - - type: Transform - pos: -6.5,32.5 - parent: 1668 - - uid: 1752 - components: - - type: Transform - pos: -9.5,32.5 - parent: 1668 - - uid: 1753 - components: - - type: Transform - pos: -9.5,33.5 - parent: 1668 - - uid: 1754 - components: - - type: Transform - pos: -12.5,30.5 - parent: 1668 - - uid: 1755 - components: - - type: Transform - pos: -13.5,30.5 - parent: 1668 - - uid: 1756 - components: - - type: Transform - pos: -14.5,30.5 - parent: 1668 - - uid: 1757 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - uid: 1758 - components: - - type: Transform - pos: -15.5,29.5 - parent: 1668 - - uid: 1759 - components: - - type: Transform - pos: -16.5,29.5 - parent: 1668 - - uid: 1760 - components: - - type: Transform - pos: -12.5,26.5 - parent: 1668 - - uid: 1761 - components: - - type: Transform - pos: -13.5,26.5 - parent: 1668 - - uid: 1762 - components: - - type: Transform - pos: -14.5,26.5 - parent: 1668 - - uid: 1763 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1668 - - uid: 1764 - components: - - type: Transform - pos: -16.5,26.5 - parent: 1668 - - uid: 1765 - components: - - type: Transform - pos: -12.5,23.5 - parent: 1668 - - uid: 1766 - components: - - type: Transform - pos: -13.5,23.5 - parent: 1668 - - uid: 1767 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - uid: 1768 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1668 - - uid: 1769 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1668 - - uid: 1770 - components: - - type: Transform - pos: -14.5,22.5 - parent: 1668 - - uid: 1771 - components: - - type: Transform - pos: -14.5,21.5 - parent: 1668 - - uid: 1772 - components: - - type: Transform - pos: -14.5,20.5 - parent: 1668 - - uid: 1773 - components: - - type: Transform - pos: -10.5,23.5 - parent: 1668 - - uid: 1774 - components: - - type: Transform - pos: -9.5,23.5 - parent: 1668 - - uid: 1775 - components: - - type: Transform - pos: -8.5,23.5 - parent: 1668 - - uid: 1776 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1668 - - uid: 1777 - components: - - type: Transform - pos: -6.5,23.5 - parent: 1668 - - uid: 1778 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1668 - - uid: 1779 - components: - - type: Transform - pos: -6.5,21.5 - parent: 1668 - - uid: 1780 - components: - - type: Transform - pos: -6.5,22.5 - parent: 1668 - - uid: 1781 - components: - - type: Transform - pos: -6.5,24.5 - parent: 1668 - - uid: 1782 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1668 - - uid: 1783 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1668 - - uid: 1784 - components: - - type: Transform - pos: -6.5,27.5 - parent: 1668 - - uid: 1785 - components: - - type: Transform - pos: -6.5,28.5 - parent: 1668 - - uid: 1786 - components: - - type: Transform - pos: -6.5,29.5 - parent: 1668 - - uid: 1787 - components: - - type: Transform - pos: -6.5,30.5 - parent: 1668 - - uid: 1788 - components: - - type: Transform - pos: -7.5,27.5 - parent: 1668 - - uid: 1789 - components: - - type: Transform - pos: -8.5,27.5 - parent: 1668 - - uid: 1790 - components: - - type: Transform - pos: -9.5,27.5 - parent: 1668 - - uid: 1791 - components: - - type: Transform - pos: -10.5,27.5 - parent: 1668 - - uid: 1956 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 1957 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1668 - - uid: 1958 - components: - - type: Transform - pos: 1.5,15.5 - parent: 1668 - - uid: 1959 - components: - - type: Transform - pos: 1.5,14.5 - parent: 1668 - - uid: 1960 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1668 - - uid: 1961 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1668 - - uid: 1962 - components: - - type: Transform - pos: 1.5,11.5 - parent: 1668 - - uid: 1963 - components: - - type: Transform - pos: 1.5,10.5 - parent: 1668 - - uid: 1964 - components: - - type: Transform - pos: 1.5,9.5 - parent: 1668 - - uid: 1965 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1668 - - uid: 1966 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1668 - - uid: 1967 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1668 - - uid: 1968 - components: - - type: Transform - pos: 2.5,10.5 - parent: 1668 - - uid: 1969 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1668 - - uid: 1970 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1668 - - uid: 1971 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 1972 - components: - - type: Transform - pos: 2.5,14.5 - parent: 1668 - - uid: 1973 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1668 - - uid: 1974 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1668 - - uid: 1975 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1668 - - uid: 1976 - components: - - type: Transform - pos: 2.5,17.5 - parent: 1668 - - uid: 1977 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1668 - - uid: 1978 - components: - - type: Transform - pos: 0.5,15.5 - parent: 1668 - - uid: 1979 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1668 - - uid: 1980 - components: - - type: Transform - pos: -1.5,15.5 - parent: 1668 - - uid: 1981 - components: - - type: Transform - pos: -2.5,15.5 - parent: 1668 - - uid: 1982 - components: - - type: Transform - pos: -2.5,14.5 - parent: 1668 - - uid: 1983 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1668 - - uid: 1984 - components: - - type: Transform - pos: -2.5,12.5 - parent: 1668 - - uid: 1985 - components: - - type: Transform - pos: -2.5,11.5 - parent: 1668 - - uid: 1986 - components: - - type: Transform - pos: -2.5,10.5 - parent: 1668 - - uid: 1987 - components: - - type: Transform - pos: -2.5,9.5 - parent: 1668 - - uid: 1988 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1668 - - uid: 1989 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1668 - - uid: 1990 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1668 - - uid: 1991 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1668 - - uid: 1992 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1668 - - uid: 1993 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 2020 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 2021 - components: - - type: Transform - pos: -1.5,23.5 - parent: 1668 - - uid: 2022 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1668 - - uid: 2023 - components: - - type: Transform - pos: -2.5,24.5 - parent: 1668 - - uid: 2024 - components: - - type: Transform - pos: -1.5,21.5 - parent: 1668 - - uid: 2025 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1668 - - uid: 2026 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 2027 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 2028 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 2029 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 2030 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 2031 - components: - - type: Transform - pos: -2.5,21.5 - parent: 1668 - - uid: 2057 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1668 - - uid: 2567 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2568 - components: - - type: Transform - pos: 17.5,16.5 - parent: 1668 - - uid: 2569 - components: - - type: Transform - pos: 17.5,15.5 - parent: 1668 - - uid: 2570 - components: - - type: Transform - pos: 17.5,14.5 - parent: 1668 - - uid: 2571 - components: - - type: Transform - pos: 17.5,13.5 - parent: 1668 - - uid: 2572 - components: - - type: Transform - pos: 17.5,12.5 - parent: 1668 - - uid: 2573 - components: - - type: Transform - pos: 17.5,11.5 - parent: 1668 - - uid: 2574 - components: - - type: Transform - pos: 16.5,12.5 - parent: 1668 - - uid: 2575 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1668 - - uid: 2576 - components: - - type: Transform - pos: 16.5,14.5 - parent: 1668 - - uid: 2577 - components: - - type: Transform - pos: 15.5,14.5 - parent: 1668 - - uid: 2578 - components: - - type: Transform - pos: 17.5,10.5 - parent: 1668 - - uid: 2579 - components: - - type: Transform - pos: 16.5,10.5 - parent: 1668 - - uid: 2580 - components: - - type: Transform - pos: 15.5,10.5 - parent: 1668 - - uid: 2581 - components: - - type: Transform - pos: 18.5,11.5 - parent: 1668 - - uid: 2582 - components: - - type: Transform - pos: 19.5,11.5 - parent: 1668 - - uid: 2583 - components: - - type: Transform - pos: 20.5,11.5 - parent: 1668 - - uid: 2584 - components: - - type: Transform - pos: 18.5,14.5 - parent: 1668 - - uid: 2585 - components: - - type: Transform - pos: 19.5,14.5 - parent: 1668 - - uid: 2586 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1668 - - uid: 2587 - components: - - type: Transform - pos: 19.5,15.5 - parent: 1668 - - uid: 2588 - components: - - type: Transform - pos: 21.5,20.5 - parent: 1668 - - uid: 2589 - components: - - type: Transform - pos: 20.5,20.5 - parent: 1668 - - uid: 2590 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1668 - - uid: 2591 - components: - - type: Transform - pos: 18.5,20.5 - parent: 1668 - - uid: 2592 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1668 - - uid: 2593 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1668 - - uid: 2594 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1668 - - uid: 2595 - components: - - type: Transform - pos: 19.5,22.5 - parent: 1668 - - uid: 2596 - components: - - type: Transform - pos: 21.5,21.5 - parent: 1668 - - uid: 2597 - components: - - type: Transform - pos: 22.5,21.5 - parent: 1668 - - uid: 2598 - components: - - type: Transform - pos: 23.5,21.5 - parent: 1668 - - uid: 2599 - components: - - type: Transform - pos: 23.5,22.5 - parent: 1668 - - uid: 2600 - components: - - type: Transform - pos: 24.5,22.5 - parent: 1668 - - uid: 2601 - components: - - type: Transform - pos: 25.5,22.5 - parent: 1668 - - uid: 2602 - components: - - type: Transform - pos: 26.5,22.5 - parent: 1668 - - uid: 2603 - components: - - type: Transform - pos: 27.5,22.5 - parent: 1668 - - uid: 2604 - components: - - type: Transform - pos: 28.5,22.5 - parent: 1668 - - uid: 2605 - components: - - type: Transform - pos: 29.5,22.5 - parent: 1668 - - uid: 2606 - components: - - type: Transform - pos: 30.5,22.5 - parent: 1668 - - uid: 2607 - components: - - type: Transform - pos: 31.5,22.5 - parent: 1668 - - uid: 2608 - components: - - type: Transform - pos: 32.5,22.5 - parent: 1668 - - uid: 2609 - components: - - type: Transform - pos: 33.5,22.5 - parent: 1668 - - uid: 2610 - components: - - type: Transform - pos: 34.5,22.5 - parent: 1668 - - uid: 2611 - components: - - type: Transform - pos: 33.5,21.5 - parent: 1668 - - uid: 2612 - components: - - type: Transform - pos: 28.5,21.5 - parent: 1668 - - uid: 2613 - components: - - type: Transform - pos: 20.5,21.5 - parent: 1668 - - uid: 2614 - components: - - type: Transform - pos: 23.5,20.5 - parent: 1668 - - uid: 2615 - components: - - type: Transform - pos: 23.5,19.5 - parent: 1668 - - uid: 2616 - components: - - type: Transform - pos: 23.5,18.5 - parent: 1668 - - uid: 2617 - components: - - type: Transform - pos: 23.5,17.5 - parent: 1668 - - uid: 2618 - components: - - type: Transform - pos: 23.5,16.5 - parent: 1668 - - uid: 2619 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1668 - - uid: 2620 - components: - - type: Transform - pos: 24.5,17.5 - parent: 1668 - - uid: 2621 - components: - - type: Transform - pos: 24.5,16.5 - parent: 1668 - - uid: 2622 - components: - - type: Transform - pos: 24.5,15.5 - parent: 1668 - - uid: 2623 - components: - - type: Transform - pos: 24.5,19.5 - parent: 1668 - - uid: 2624 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2625 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1668 - - uid: 2626 - components: - - type: Transform - pos: 25.5,13.5 - parent: 1668 - - uid: 2627 - components: - - type: Transform - pos: 26.5,13.5 - parent: 1668 - - uid: 2628 - components: - - type: Transform - pos: 27.5,13.5 - parent: 1668 - - uid: 2629 - components: - - type: Transform - pos: 28.5,13.5 - parent: 1668 - - uid: 2630 - components: - - type: Transform - pos: 29.5,13.5 - parent: 1668 - - uid: 2631 - components: - - type: Transform - pos: 30.5,13.5 - parent: 1668 - - uid: 2632 - components: - - type: Transform - pos: 31.5,13.5 - parent: 1668 - - uid: 2633 - components: - - type: Transform - pos: 32.5,13.5 - parent: 1668 - - uid: 2634 - components: - - type: Transform - pos: 33.5,13.5 - parent: 1668 - - uid: 2635 - components: - - type: Transform - pos: 33.5,14.5 - parent: 1668 - - uid: 2636 - components: - - type: Transform - pos: 31.5,14.5 - parent: 1668 - - uid: 2637 - components: - - type: Transform - pos: 30.5,14.5 - parent: 1668 - - uid: 2638 - components: - - type: Transform - pos: 29.5,14.5 - parent: 1668 - - uid: 2639 - components: - - type: Transform - pos: 27.5,14.5 - parent: 1668 - - uid: 2640 - components: - - type: Transform - pos: 26.5,14.5 - parent: 1668 - - uid: 2641 - components: - - type: Transform - pos: 25.5,14.5 - parent: 1668 - - uid: 2642 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1668 - - uid: 2643 - components: - - type: Transform - pos: 28.5,15.5 - parent: 1668 - - uid: 2644 - components: - - type: Transform - pos: 28.5,16.5 - parent: 1668 - - uid: 2645 - components: - - type: Transform - pos: 28.5,17.5 - parent: 1668 - - uid: 2646 - components: - - type: Transform - pos: 28.5,18.5 - parent: 1668 - - uid: 2647 - components: - - type: Transform - pos: 29.5,18.5 - parent: 1668 - - uid: 2648 - components: - - type: Transform - pos: 30.5,18.5 - parent: 1668 - - uid: 2649 - components: - - type: Transform - pos: 31.5,18.5 - parent: 1668 - - uid: 2650 - components: - - type: Transform - pos: 27.5,18.5 - parent: 1668 - - uid: 2651 - components: - - type: Transform - pos: 26.5,18.5 - parent: 1668 - - uid: 2652 - components: - - type: Transform - pos: 25.5,18.5 - parent: 1668 - - uid: 2653 - components: - - type: Transform - pos: 27.5,15.5 - parent: 1668 - - uid: 2654 - components: - - type: Transform - pos: 26.5,15.5 - parent: 1668 - - uid: 2655 - components: - - type: Transform - pos: 29.5,15.5 - parent: 1668 - - uid: 2656 - components: - - type: Transform - pos: 30.5,15.5 - parent: 1668 - - uid: 2657 - components: - - type: Transform - pos: 24.5,12.5 - parent: 1668 - - uid: 2658 - components: - - type: Transform - pos: 23.5,12.5 - parent: 1668 - - uid: 2659 - components: - - type: Transform - pos: 22.5,12.5 - parent: 1668 - - uid: 2660 - components: - - type: Transform - pos: 33.5,12.5 - parent: 1668 - - uid: 2661 - components: - - type: Transform - pos: 34.5,12.5 - parent: 1668 - - uid: 2662 - components: - - type: Transform - pos: 33.5,11.5 - parent: 1668 - - uid: 2663 - components: - - type: Transform - pos: 32.5,11.5 - parent: 1668 - - uid: 2664 - components: - - type: Transform - pos: 31.5,11.5 - parent: 1668 - - uid: 2665 - components: - - type: Transform - pos: 30.5,11.5 - parent: 1668 - - uid: 2666 - components: - - type: Transform - pos: 29.5,11.5 - parent: 1668 - - uid: 2667 - components: - - type: Transform - pos: 28.5,11.5 - parent: 1668 - - uid: 2668 - components: - - type: Transform - pos: 27.5,11.5 - parent: 1668 - - uid: 2669 - components: - - type: Transform - pos: 26.5,11.5 - parent: 1668 - - uid: 2670 - components: - - type: Transform - pos: 25.5,11.5 - parent: 1668 - - uid: 2671 - components: - - type: Transform - pos: 24.5,11.5 - parent: 1668 - - uid: 2672 - components: - - type: Transform - pos: 23.5,11.5 - parent: 1668 - - uid: 2673 - components: - - type: Transform - pos: 35.5,19.5 - parent: 1668 - - uid: 2674 - components: - - type: Transform - pos: 34.5,19.5 - parent: 1668 - - uid: 2675 - components: - - type: Transform - pos: 33.5,19.5 - parent: 1668 - - uid: 2676 - components: - - type: Transform - pos: 33.5,18.5 - parent: 1668 - - uid: 2677 - components: - - type: Transform - pos: 33.5,17.5 - parent: 1668 - - uid: 2678 - components: - - type: Transform - pos: 33.5,16.5 - parent: 1668 - - uid: 2679 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 2680 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - uid: 2681 - components: - - type: Transform - pos: 7.5,14.5 - parent: 1668 - - uid: 2682 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1668 - - uid: 2683 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1668 - - uid: 2684 - components: - - type: Transform - pos: 7.5,11.5 - parent: 1668 - - uid: 2685 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1668 - - uid: 2686 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2687 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1668 - - uid: 2688 - components: - - type: Transform - pos: 5.5,14.5 - parent: 1668 - - uid: 2689 - components: - - type: Transform - pos: 8.5,14.5 - parent: 1668 - - uid: 2690 - components: - - type: Transform - pos: 9.5,14.5 - parent: 1668 - - uid: 2691 - components: - - type: Transform - pos: 10.5,14.5 - parent: 1668 - - uid: 2692 - components: - - type: Transform - pos: 11.5,14.5 - parent: 1668 - - uid: 2693 - components: - - type: Transform - pos: 12.5,14.5 - parent: 1668 - - uid: 2694 - components: - - type: Transform - pos: 8.5,12.5 - parent: 1668 - - uid: 2695 - components: - - type: Transform - pos: 9.5,12.5 - parent: 1668 - - uid: 2696 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1668 - - uid: 2697 - components: - - type: Transform - pos: 11.5,12.5 - parent: 1668 - - uid: 2698 - components: - - type: Transform - pos: 12.5,12.5 - parent: 1668 - - uid: 2699 - components: - - type: Transform - pos: 13.5,14.5 - parent: 1668 - - uid: 2700 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - uid: 2701 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1668 - - uid: 2702 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 2703 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 2704 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 2705 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 2706 - components: - - type: Transform - pos: 13.5,13.5 - parent: 1668 - - uid: 2707 - components: - - type: Transform - pos: 13.5,12.5 - parent: 1668 - - uid: 2708 - components: - - type: Transform - pos: 13.5,11.5 - parent: 1668 - - uid: 2709 - components: - - type: Transform - pos: 10.5,13.5 - parent: 1668 - - uid: 2711 - components: - - type: Transform - pos: 10.5,11.5 - parent: 1668 - - uid: 2743 - components: - - type: Transform - pos: 10.5,22.5 - parent: 1668 - - uid: 3033 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1668 - - uid: 3034 - components: - - type: Transform - pos: 8.5,30.5 - parent: 1668 - - uid: 3035 - components: - - type: Transform - pos: 9.5,30.5 - parent: 1668 - - uid: 3036 - components: - - type: Transform - pos: 9.5,31.5 - parent: 1668 - - uid: 3037 - components: - - type: Transform - pos: 10.5,31.5 - parent: 1668 - - uid: 3038 - components: - - type: Transform - pos: 11.5,31.5 - parent: 1668 - - uid: 3039 - components: - - type: Transform - pos: 12.5,31.5 - parent: 1668 - - uid: 3040 - components: - - type: Transform - pos: 13.5,31.5 - parent: 1668 - - uid: 3041 - components: - - type: Transform - pos: 14.5,31.5 - parent: 1668 - - uid: 3042 - components: - - type: Transform - pos: 15.5,31.5 - parent: 1668 - - uid: 3043 - components: - - type: Transform - pos: 8.5,31.5 - parent: 1668 - - uid: 3044 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1668 - - uid: 3045 - components: - - type: Transform - pos: 6.5,31.5 - parent: 1668 - - uid: 3046 - components: - - type: Transform - pos: 5.5,31.5 - parent: 1668 - - uid: 3047 - components: - - type: Transform - pos: 4.5,31.5 - parent: 1668 - - uid: 3048 - components: - - type: Transform - pos: 3.5,31.5 - parent: 1668 - - uid: 3049 - components: - - type: Transform - pos: 9.5,29.5 - parent: 1668 - - uid: 3050 - components: - - type: Transform - pos: 9.5,28.5 - parent: 1668 - - uid: 3051 - components: - - type: Transform - pos: 8.5,29.5 - parent: 1668 - - uid: 3052 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1668 - - uid: 3053 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1668 - - uid: 3054 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1668 - - uid: 3055 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 3056 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - uid: 3057 - components: - - type: Transform - pos: 8.5,25.5 - parent: 1668 - - uid: 3058 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1668 - - uid: 3059 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1668 - - uid: 3060 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1668 - - uid: 3061 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1668 - - uid: 3062 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1668 - - uid: 3063 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1668 - - uid: 3064 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1668 - - uid: 3065 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1668 - - uid: 3066 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1668 - - uid: 3067 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1668 - - uid: 3068 - components: - - type: Transform - pos: 8.5,22.5 - parent: 1668 - - uid: 3069 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1668 - - uid: 3070 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1668 - - uid: 3071 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1668 - - uid: 3072 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1668 - - uid: 3073 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1668 - - uid: 3074 - components: - - type: Transform - pos: 8.5,18.5 - parent: 1668 - - uid: 3075 - components: - - type: Transform - pos: 9.5,18.5 - parent: 1668 - - uid: 3076 - components: - - type: Transform - pos: 10.5,18.5 - parent: 1668 - - uid: 3077 - components: - - type: Transform - pos: 10.5,17.5 - parent: 1668 - - uid: 3078 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1668 - - uid: 3080 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1668 - - uid: 3081 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1668 - - uid: 3082 - components: - - type: Transform - pos: 8.5,19.5 - parent: 1668 - - uid: 3083 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1668 - - uid: 3084 - components: - - type: Transform - pos: 12.5,22.5 - parent: 1668 - - uid: 3085 - components: - - type: Transform - pos: 13.5,22.5 - parent: 1668 - - uid: 3086 - components: - - type: Transform - pos: 14.5,22.5 - parent: 1668 - - uid: 3087 - components: - - type: Transform - pos: 15.5,22.5 - parent: 1668 - - uid: 3088 - components: - - type: Transform - pos: 11.5,25.5 - parent: 1668 - - uid: 3089 - components: - - type: Transform - pos: 12.5,25.5 - parent: 1668 - - uid: 3090 - components: - - type: Transform - pos: 13.5,25.5 - parent: 1668 - - uid: 3091 - components: - - type: Transform - pos: 14.5,25.5 - parent: 1668 - - uid: 3092 - components: - - type: Transform - pos: 15.5,25.5 - parent: 1668 - - uid: 3093 - components: - - type: Transform - pos: 13.5,26.5 - parent: 1668 - - uid: 3094 - components: - - type: Transform - pos: 13.5,27.5 - parent: 1668 - - uid: 3095 - components: - - type: Transform - pos: 13.5,28.5 - parent: 1668 - - uid: 3096 - components: - - type: Transform - pos: 14.5,28.5 - parent: 1668 - - uid: 3097 - components: - - type: Transform - pos: 15.5,28.5 - parent: 1668 - - uid: 3098 - components: - - type: Transform - pos: 7.5,25.5 - parent: 1668 - - uid: 3099 - components: - - type: Transform - pos: 6.5,25.5 - parent: 1668 - - uid: 3100 - components: - - type: Transform - pos: 5.5,25.5 - parent: 1668 - - uid: 3101 - components: - - type: Transform - pos: 4.5,25.5 - parent: 1668 - - uid: 3102 - components: - - type: Transform - pos: 3.5,25.5 - parent: 1668 - - uid: 3103 - components: - - type: Transform - pos: 5.5,26.5 - parent: 1668 - - uid: 3104 - components: - - type: Transform - pos: 5.5,27.5 - parent: 1668 - - uid: 3105 - components: - - type: Transform - pos: 5.5,28.5 - parent: 1668 - - uid: 3106 - components: - - type: Transform - pos: 4.5,28.5 - parent: 1668 - - uid: 3107 - components: - - type: Transform - pos: 3.5,28.5 - parent: 1668 - - uid: 3108 - components: - - type: Transform - pos: 4.5,24.5 - parent: 1668 - - uid: 3109 - components: - - type: Transform - pos: 4.5,27.5 - parent: 1668 - - uid: 3110 - components: - - type: Transform - pos: 14.5,27.5 - parent: 1668 - - uid: 3111 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1668 - - uid: 3112 - components: - - type: Transform - pos: 14.5,21.5 - parent: 1668 - - uid: 3113 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 3114 - components: - - type: Transform - pos: 5.5,30.5 - parent: 1668 - - uid: 3115 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1668 - - uid: 3116 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 3467 - components: - - type: Transform - pos: -22.5,12.5 - parent: 1668 - - uid: 3468 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3469 - components: - - type: Transform - pos: -21.5,12.5 - parent: 1668 - - uid: 3470 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1668 - - uid: 3471 - components: - - type: Transform - pos: -21.5,14.5 - parent: 1668 - - uid: 3472 - components: - - type: Transform - pos: -21.5,11.5 - parent: 1668 - - uid: 3473 - components: - - type: Transform - pos: -21.5,10.5 - parent: 1668 - - uid: 3474 - components: - - type: Transform - pos: -21.5,9.5 - parent: 1668 - - uid: 3475 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1668 - - uid: 3476 - components: - - type: Transform - pos: -19.5,11.5 - parent: 1668 - - uid: 3477 - components: - - type: Transform - pos: -22.5,11.5 - parent: 1668 - - uid: 3478 - components: - - type: Transform - pos: -23.5,11.5 - parent: 1668 - - uid: 3479 - components: - - type: Transform - pos: -24.5,11.5 - parent: 1668 - - uid: 3480 - components: - - type: Transform - pos: -25.5,11.5 - parent: 1668 - - uid: 3481 - components: - - type: Transform - pos: -26.5,11.5 - parent: 1668 - - uid: 3482 - components: - - type: Transform - pos: -27.5,11.5 - parent: 1668 - - uid: 3483 - components: - - type: Transform - pos: -27.5,12.5 - parent: 1668 - - uid: 3484 - components: - - type: Transform - pos: -25.5,10.5 - parent: 1668 - - uid: 3485 - components: - - type: Transform - pos: -25.5,9.5 - parent: 1668 - - uid: 3486 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1668 - - uid: 3487 - components: - - type: Transform - pos: -27.5,9.5 - parent: 1668 - - uid: 3488 - components: - - type: Transform - pos: -27.5,8.5 - parent: 1668 - - uid: 3489 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3490 - components: - - type: Transform - pos: -22.5,6.5 - parent: 1668 - - uid: 3491 - components: - - type: Transform - pos: -22.5,5.5 - parent: 1668 - - uid: 3492 - components: - - type: Transform - pos: -22.5,4.5 - parent: 1668 - - uid: 3493 - components: - - type: Transform - pos: -22.5,3.5 - parent: 1668 - - uid: 3494 - components: - - type: Transform - pos: -22.5,2.5 - parent: 1668 - - uid: 3495 - components: - - type: Transform - pos: -21.5,3.5 - parent: 1668 - - uid: 3496 - components: - - type: Transform - pos: -20.5,3.5 - parent: 1668 - - uid: 3497 - components: - - type: Transform - pos: -19.5,3.5 - parent: 1668 - - uid: 3498 - components: - - type: Transform - pos: -18.5,3.5 - parent: 1668 - - uid: 3499 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1668 - - uid: 3500 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3501 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3502 - components: - - type: Transform - pos: -23.5,5.5 - parent: 1668 - - uid: 3503 - components: - - type: Transform - pos: -23.5,3.5 - parent: 1668 - - uid: 3504 - components: - - type: Transform - pos: -13.5,6.5 - parent: 1668 - - uid: 3505 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 3506 - components: - - type: Transform - pos: -14.5,5.5 - parent: 1668 - - uid: 3507 - components: - - type: Transform - pos: -12.5,6.5 - parent: 1668 - - uid: 3508 - components: - - type: Transform - pos: -12.5,5.5 - parent: 1668 - - uid: 3509 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1668 - - uid: 3510 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1668 - - uid: 3511 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3512 - components: - - type: Transform - pos: -10.5,5.5 - parent: 1668 - - uid: 3513 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 3514 - components: - - type: Transform - pos: -16.5,12.5 - parent: 1668 - - uid: 3515 - components: - - type: Transform - pos: -15.5,12.5 - parent: 1668 - - uid: 3516 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1668 - - uid: 3517 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1668 - - uid: 3518 - components: - - type: Transform - pos: -15.5,9.5 - parent: 1668 - - uid: 3519 - components: - - type: Transform - pos: -20.5,9.5 - parent: 1668 - - uid: 3520 - components: - - type: Transform - pos: -19.5,9.5 - parent: 1668 - - uid: 3521 - components: - - type: Transform - pos: -22.5,9.5 - parent: 1668 - - uid: 3522 - components: - - type: Transform - pos: -23.5,9.5 - parent: 1668 - - uid: 3991 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 3992 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1668 - - uid: 3993 - components: - - type: Transform - pos: -31.5,0.5 - parent: 1668 - - uid: 3994 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 1668 - - uid: 3995 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 1668 - - uid: 3996 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 1668 - - uid: 3997 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 1668 - - uid: 3998 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 1668 - - uid: 3999 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 1668 - - uid: 4000 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 4001 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 1668 - - uid: 4002 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 1668 - - uid: 4003 - components: - - type: Transform - pos: -32.5,1.5 - parent: 1668 - - uid: 4004 - components: - - type: Transform - pos: -33.5,1.5 - parent: 1668 - - uid: 4005 - components: - - type: Transform - pos: -34.5,1.5 - parent: 1668 - - uid: 4006 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 1668 - - uid: 4007 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 1668 - - uid: 4008 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 - - uid: 4009 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 4010 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1668 - - uid: 4011 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 1668 - - uid: 4012 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1668 - - uid: 4013 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 1668 - - uid: 4014 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 1668 - - uid: 4015 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 1668 - - uid: 4016 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1668 - - uid: 4017 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1668 - - uid: 4018 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1668 - - uid: 4019 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1668 - - uid: 4020 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1668 - - uid: 4021 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1668 - - uid: 4022 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1668 - - uid: 4023 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1668 - - uid: 4024 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1668 - - uid: 4025 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1668 - - uid: 4026 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1668 - - uid: 4027 - components: - - type: Transform - pos: -14.5,0.5 - parent: 1668 - - uid: 4028 - components: - - type: Transform - pos: -14.5,1.5 - parent: 1668 - - uid: 4029 - components: - - type: Transform - pos: -15.5,1.5 - parent: 1668 - - uid: 4030 - components: - - type: Transform - pos: -16.5,1.5 - parent: 1668 - - uid: 4031 - components: - - type: Transform - pos: -12.5,0.5 - parent: 1668 - - uid: 4032 - components: - - type: Transform - pos: -12.5,1.5 - parent: 1668 - - uid: 4033 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1668 - - uid: 4034 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1668 - - uid: 4035 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1668 - - uid: 4036 - components: - - type: Transform - pos: -13.5,2.5 - parent: 1668 - - uid: 4037 - components: - - type: Transform - pos: -17.5,0.5 - parent: 1668 - - uid: 4038 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 4039 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 4040 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 1668 - - uid: 4041 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 1668 - - uid: 4042 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1668 - - uid: 4043 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 1668 - - uid: 4044 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 1668 - - uid: 4045 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 1668 - - uid: 4046 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1668 - - uid: 4047 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 1668 - - uid: 4048 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1668 - - uid: 4049 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1668 - - uid: 4050 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 1668 - - uid: 4051 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 1668 - - uid: 4052 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 1668 - - uid: 4053 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 1668 - - uid: 4054 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1668 - - uid: 4055 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 1668 - - uid: 4056 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1668 - - uid: 4057 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1668 - - uid: 4058 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1668 - - uid: 4059 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 1668 - - uid: 4060 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 1668 - - uid: 4061 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 1668 - - uid: 4062 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 1668 - - uid: 4063 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 1668 - - uid: 4064 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 1668 - - uid: 4065 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 1668 - - uid: 4066 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 1668 - - uid: 4067 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 1668 - - uid: 4068 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 1668 - - uid: 4069 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 1668 - - uid: 4070 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 4071 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1668 - - uid: 4072 - components: - - type: Transform - pos: -13.5,-4.5 - parent: 1668 - - uid: 4073 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 1668 - - uid: 4074 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 1668 - - uid: 4075 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 1668 - - uid: 4076 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 1668 - - uid: 4077 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 1668 - - uid: 4078 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 1668 - - uid: 4079 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 1668 - - uid: 4080 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 1668 - - uid: 4081 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 1668 - - uid: 4082 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 1668 - - uid: 4083 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 1668 - - uid: 4084 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 1668 - - uid: 4085 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 4086 - components: - - type: Transform - pos: -31.5,6.5 - parent: 1668 - - uid: 4087 - components: - - type: Transform - pos: -31.5,5.5 - parent: 1668 - - uid: 4088 - components: - - type: Transform - pos: -31.5,4.5 - parent: 1668 - - uid: 4089 - components: - - type: Transform - pos: -32.5,4.5 - parent: 1668 - - uid: 4090 - components: - - type: Transform - pos: -33.5,4.5 - parent: 1668 - - uid: 4091 - components: - - type: Transform - pos: -34.5,4.5 - parent: 1668 - - uid: 4092 - components: - - type: Transform - pos: -34.5,3.5 - parent: 1668 - - uid: 4093 - components: - - type: Transform - pos: -34.5,5.5 - parent: 1668 - - uid: 4094 - components: - - type: Transform - pos: -34.5,6.5 - parent: 1668 - - uid: 4095 - components: - - type: Transform - pos: -32.5,6.5 - parent: 1668 - - uid: 4096 - components: - - type: Transform - pos: -32.5,7.5 - parent: 1668 - - uid: 4097 - components: - - type: Transform - pos: -33.5,7.5 - parent: 1668 - - uid: 4098 - components: - - type: Transform - pos: -30.5,7.5 - parent: 1668 - - uid: 4099 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - uid: 4100 - components: - - type: Transform - pos: -29.5,4.5 - parent: 1668 - - uid: 4101 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 4102 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 4103 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1668 - - uid: 4104 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 4481 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1668 - - uid: 4482 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 1668 - - uid: 4483 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1668 - - uid: 4484 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 1668 - - uid: 4485 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 1668 - - uid: 4486 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1668 - - uid: 4487 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 1668 - - uid: 4488 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1668 - - uid: 4489 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1668 - - uid: 4490 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1668 - - uid: 4491 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 1668 - - uid: 4492 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1668 - - uid: 4493 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 1668 - - uid: 4494 - components: - - type: Transform - pos: -4.5,-16.5 - parent: 1668 - - uid: 4495 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1668 - - uid: 4496 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 1668 - - uid: 4497 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1668 - - uid: 4498 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 1668 - - uid: 4500 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 1668 - - uid: 4501 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 1668 - - uid: 4502 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1668 - - uid: 4503 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1668 - - uid: 4505 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1668 - - uid: 4506 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1668 - - uid: 4507 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 1668 - - uid: 4508 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 1668 - - uid: 4509 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1668 - - uid: 4510 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 1668 - - uid: 4511 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 1668 - - uid: 4512 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1668 - - uid: 4513 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 1668 - - uid: 4514 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 1668 - - uid: 4515 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 1668 - - uid: 4516 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 1668 - - uid: 4517 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1668 - - uid: 4518 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1668 - - uid: 4519 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 1668 - - uid: 4520 - components: - - type: Transform - pos: 9.5,-25.5 - parent: 1668 - - uid: 4521 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 1668 - - uid: 4522 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 1668 - - uid: 4523 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 1668 - - uid: 4524 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 1668 - - uid: 4525 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 1668 - - uid: 4526 - components: - - type: Transform - pos: 7.5,-22.5 - parent: 1668 - - uid: 4527 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4528 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 1668 - - uid: 4529 - components: - - type: Transform - pos: -2.5,-26.5 - parent: 1668 - - uid: 4530 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 1668 - - uid: 4531 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1668 - - uid: 4532 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 1668 - - uid: 4533 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1668 - - uid: 4534 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 1668 - - uid: 4535 - components: - - type: Transform - pos: 2.5,-27.5 - parent: 1668 - - uid: 4536 - components: - - type: Transform - pos: 3.5,-27.5 - parent: 1668 - - uid: 4537 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 1668 - - uid: 4538 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 1668 - - uid: 4539 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1668 - - uid: 4540 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1668 - - uid: 4541 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 1668 - - uid: 4542 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 1668 - - uid: 4543 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1668 - - uid: 4544 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 1668 - - uid: 4545 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 1668 - - uid: 4546 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 1668 - - uid: 4547 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 1668 - - uid: 4548 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 1668 - - uid: 4549 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1668 - - uid: 4550 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - uid: 4551 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1668 - - uid: 4552 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 1668 - - uid: 4553 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1668 - - uid: 4554 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 1668 - - uid: 4555 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 1668 - - uid: 4556 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 1668 - - uid: 4557 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 1668 - - uid: 4558 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4559 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1668 - - uid: 4560 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1668 - - uid: 4561 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1668 - - uid: 4562 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 1668 - - uid: 4563 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 1668 - - uid: 4564 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 1668 - - uid: 4565 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 1668 - - uid: 4566 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 1668 - - uid: 4567 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1668 - - uid: 4898 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 4899 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1668 - - uid: 4900 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1668 - - uid: 4901 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 1668 - - uid: 4902 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1668 - - uid: 4903 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1668 - - uid: 4904 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1668 - - uid: 4905 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 1668 - - uid: 4906 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1668 - - uid: 4907 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1668 - - uid: 4908 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 1668 - - uid: 4909 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 1668 - - uid: 4910 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4911 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1668 - - uid: 4912 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 1668 - - uid: 4913 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 1668 - - uid: 4914 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 1668 - - uid: 4915 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 1668 - - uid: 4916 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 1668 - - uid: 4917 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 1668 - - uid: 4918 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 1668 - - uid: 4919 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 1668 - - uid: 4920 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 1668 - - uid: 4921 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 1668 - - uid: 4922 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 1668 - - uid: 4993 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 4994 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - uid: 4995 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1668 - - uid: 4996 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 1668 - - uid: 4997 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 4998 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 1668 - - uid: 4999 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 5000 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 1668 - - uid: 5001 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 1668 - - uid: 5002 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1668 - - uid: 5003 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 1668 - - uid: 5004 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 1668 - - uid: 5005 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1668 - - uid: 5006 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 1668 - - uid: 5007 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 1668 - - uid: 5008 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 1668 - - uid: 5009 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 1668 - - uid: 5010 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 1668 - - uid: 5011 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 1668 - - uid: 5012 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 5013 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 1668 - - uid: 5014 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 1668 - - uid: 5015 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 1668 - - uid: 5016 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 1668 - - uid: 5017 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 1668 - - uid: 5018 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 1668 - - uid: 5019 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 5020 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 5021 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1668 - - uid: 5022 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 1668 - - uid: 5023 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - uid: 5024 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 1668 - - uid: 5026 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 1668 - - uid: 5027 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 1668 - - uid: 5028 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 1668 - - uid: 5029 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 1668 - - uid: 5030 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 1668 - - uid: 5031 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 1668 - - uid: 5032 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 1668 - - uid: 5033 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 1668 - - uid: 5034 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1668 - - uid: 5035 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 1668 - - uid: 5036 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1668 - - uid: 5037 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 5038 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 1668 - - uid: 5039 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - uid: 5040 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 1668 - - uid: 5121 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 5122 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 1668 - - uid: 5123 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 1668 - - uid: 5124 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 1668 - - uid: 5125 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 1668 - - uid: 5126 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 1668 - - uid: 5127 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 1668 - - uid: 5128 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 1668 - - uid: 5129 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 1668 - - uid: 5130 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 1668 - - uid: 5131 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 1668 - - uid: 5132 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 1668 - - uid: 5134 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 1668 - - uid: 5135 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 1668 - - uid: 5136 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1668 - - uid: 5137 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 1668 - - uid: 5138 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 1668 - - uid: 5139 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1668 - - uid: 5140 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 1668 - - uid: 5141 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 1668 - - uid: 5142 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 1668 - - uid: 5143 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 1668 - - uid: 5144 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 1668 - - uid: 5145 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 1668 - - uid: 5147 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5148 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 1668 - - uid: 5149 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 1668 - - uid: 5150 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 1668 - - uid: 5151 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 1668 - - uid: 5152 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 1668 - - uid: 5153 - components: - - type: Transform - pos: 29.5,-25.5 - parent: 1668 - - uid: 5154 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - uid: 5155 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - uid: 5156 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - uid: 5157 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - uid: 5158 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - uid: 5159 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5160 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 5161 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5162 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 5163 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5164 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 5165 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 - - uid: 5166 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 - - uid: 5171 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 1668 - - uid: 5172 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1668 - - uid: 5173 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 1668 - - uid: 5174 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 1668 - - uid: 5258 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5259 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1668 - - uid: 5260 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1668 - - uid: 5261 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1668 - - uid: 5262 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 1668 - - uid: 5263 - components: - - type: Transform - pos: 32.5,-17.5 - parent: 1668 - - uid: 5264 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 1668 - - uid: 5265 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 1668 - - uid: 5266 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 1668 - - uid: 5267 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 1668 - - uid: 5268 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 1668 - - uid: 5269 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 1668 - - uid: 5270 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 1668 - - uid: 5271 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1668 - - uid: 5272 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 1668 - - uid: 5273 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 1668 - - uid: 5274 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1668 - - uid: 5275 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 1668 - - uid: 5276 - components: - - type: Transform - pos: 27.5,-14.5 - parent: 1668 - - uid: 5441 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 1668 - - uid: 5442 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 1668 - - uid: 5443 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 5444 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1668 - - uid: 5445 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 1668 - - uid: 5446 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 1668 - - uid: 5447 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 1668 - - uid: 5448 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 1668 - - uid: 5449 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 1668 - - uid: 5450 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1668 - - uid: 5585 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 1668 - - uid: 5935 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 1668 - - uid: 5936 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 1668 - - uid: 5937 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 1668 - - uid: 5938 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1668 - - uid: 5939 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 1668 - - uid: 5940 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 1668 - - uid: 6067 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 1668 - - uid: 6068 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 1668 - - uid: 6069 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 1668 - - uid: 6070 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 1668 - - uid: 6071 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 1668 - - uid: 6072 - components: - - type: Transform - pos: -19.5,-25.5 - parent: 1668 - - uid: 6073 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 1668 - - uid: 6074 - components: - - type: Transform - pos: -19.5,-27.5 - parent: 1668 - - uid: 6075 - components: - - type: Transform - pos: -19.5,-28.5 - parent: 1668 - - uid: 6076 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 1668 - - uid: 6077 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1668 - - uid: 6078 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1668 - - uid: 6079 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 1668 - - uid: 6080 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 1668 - - uid: 6081 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 1668 - - uid: 6082 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 1668 - - uid: 6083 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 1668 - - uid: 6084 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 1668 - - uid: 6085 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 1668 - - uid: 6086 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 - - uid: 6087 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 1668 - - uid: 6088 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 1668 - - uid: 6089 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 1668 - - uid: 6090 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1668 - - uid: 6091 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1668 - - uid: 6092 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 1668 - - uid: 6093 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 1668 - - uid: 6094 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 1668 - - uid: 6095 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 1668 - - uid: 6096 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 1668 - - uid: 6097 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 1668 - - uid: 6098 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 1668 - - uid: 6099 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 1668 - - uid: 6100 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 1668 - - uid: 6112 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1668 - - uid: 6113 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6114 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - uid: 6115 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - uid: 6116 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 6117 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 6118 - components: - - type: Transform - pos: -13.5,-32.5 - parent: 1668 - - uid: 6119 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 1668 - - uid: 6120 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1668 - - uid: 6121 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - uid: 6122 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1668 - - uid: 6123 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - uid: 6124 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 1668 - - uid: 6125 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 1668 - - uid: 6126 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 1668 - - uid: 6127 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1668 - - uid: 6128 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 1668 - - uid: 6129 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1668 - - uid: 6131 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 1668 - - uid: 6132 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1668 - - uid: 6133 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 1668 - - uid: 6134 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 1668 - - uid: 6135 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 1668 - - uid: 6136 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 1668 - - uid: 6202 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 6203 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1668 - - uid: 6204 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 1668 - - uid: 6205 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 1668 - - uid: 6206 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 1668 - - uid: 6207 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 1668 - - uid: 6208 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 1668 - - uid: 6209 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1668 - - uid: 6210 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 1668 - - uid: 6211 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 1668 - - uid: 6212 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 1668 - - uid: 6213 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 6214 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1668 - - uid: 6215 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 1668 - - uid: 6216 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 1668 - - uid: 6217 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 1668 - - uid: 6218 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1668 - - uid: 6219 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1668 - - uid: 6220 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 1668 - - uid: 6221 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 1668 - - uid: 6222 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 1668 - - uid: 6223 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 1668 - - uid: 6224 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 1668 - - uid: 6225 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 1668 - - uid: 6346 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1668 - - uid: 6347 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1668 - - uid: 6348 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 1668 - - uid: 6349 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 1668 - - uid: 6350 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 1668 - - uid: 6351 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1668 - - uid: 6352 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 1668 - - uid: 6353 - components: - - type: Transform - pos: 1.5,-36.5 - parent: 1668 - - uid: 6354 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 1668 - - uid: 6355 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 1668 - - uid: 6356 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 1668 - - uid: 6357 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 1668 - - uid: 6358 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 1668 - - uid: 6359 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 1668 - - uid: 6360 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - uid: 6409 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6410 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 1668 - - uid: 6411 - components: - - type: Transform - pos: -2.5,-42.5 - parent: 1668 - - uid: 6412 - components: - - type: Transform - pos: -2.5,-43.5 - parent: 1668 - - uid: 6413 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 1668 - - uid: 6414 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 1668 - - uid: 6415 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 1668 - - uid: 6416 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 1668 - - uid: 6417 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 1668 - - uid: 6418 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 1668 - - uid: 6419 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 1668 - - uid: 6420 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 1668 - - uid: 6421 - components: - - type: Transform - pos: 4.5,-40.5 - parent: 1668 - - uid: 6422 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 1668 - - uid: 6423 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 1668 - - uid: 6424 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 1668 - - uid: 6425 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 1668 - - uid: 6426 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 1668 - - uid: 6427 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 1668 - - uid: 6428 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1668 - - uid: 6429 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 1668 - - uid: 6430 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 1668 - - uid: 6431 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1668 - - uid: 6432 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 1668 - - uid: 6433 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 1668 - - uid: 6434 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 1668 - - uid: 6435 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 1668 - - uid: 6436 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 1668 - - uid: 6437 - components: - - type: Transform - pos: 1.5,-43.5 - parent: 1668 - - uid: 6438 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 1668 - - uid: 6439 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 1668 - - uid: 6774 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 1668 - - uid: 6776 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 1668 - - uid: 6854 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 - - uid: 6855 - components: - - type: Transform - pos: 32.5,-28.5 - parent: 1668 - - uid: 6856 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 1668 - - uid: 6857 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 1668 - - uid: 6858 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 1668 - - uid: 6859 - components: - - type: Transform - pos: 31.5,-30.5 - parent: 1668 - - uid: 6860 - components: - - type: Transform - pos: 30.5,-30.5 - parent: 1668 - - uid: 6861 - components: - - type: Transform - pos: 29.5,-30.5 - parent: 1668 - - uid: 6862 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 1668 - - uid: 6863 - components: - - type: Transform - pos: 33.5,-30.5 - parent: 1668 - - uid: 6971 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 1668 - - uid: 6972 - components: - - type: Transform - pos: 20.5,-30.5 - parent: 1668 - - uid: 6973 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 1668 - - uid: 6974 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 1668 - - uid: 6975 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 1668 - - uid: 6976 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 1668 -- proto: CableHV - entities: - - uid: 1391 - components: - - type: Transform - pos: 27.5,-31.5 - parent: 1668 - - uid: 1465 - components: - - type: Transform - pos: 26.5,-25.5 - parent: 1668 - - uid: 1475 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 1668 - - uid: 1476 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 - - uid: 1477 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 1668 - - uid: 1478 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 1668 - - uid: 1479 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1668 - - uid: 1480 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 1668 - - uid: 1482 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 1668 - - uid: 1659 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 1864 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1668 - - uid: 1865 - components: - - type: Transform - pos: -2.5,20.5 - parent: 1668 - - uid: 1866 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1668 - - uid: 1867 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 1868 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 1869 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 1870 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1668 - - uid: 1871 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 1872 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 1873 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1668 - - uid: 1874 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1668 - - uid: 1875 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1668 - - uid: 1876 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1668 - - uid: 1877 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1668 - - uid: 1878 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - uid: 1879 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 - - uid: 1880 - components: - - type: Transform - pos: -0.5,10.5 - parent: 1668 - - uid: 1881 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1668 - - uid: 1882 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 1883 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - uid: 1884 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - uid: 1885 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - uid: 1886 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - uid: 1887 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1668 - - uid: 1888 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1668 - - uid: 1889 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1668 - - uid: 1890 - components: - - type: Transform - pos: 2.5,3.5 - parent: 1668 - - uid: 1891 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1668 - - uid: 1892 - components: - - type: Transform - pos: 4.5,3.5 - parent: 1668 - - uid: 1893 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1668 - - uid: 1894 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1668 - - uid: 1895 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1668 - - uid: 1896 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 1668 - - uid: 1897 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 1668 - - uid: 1898 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1668 - - uid: 1899 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1668 - - uid: 1900 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1668 - - uid: 1901 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 1668 - - uid: 1902 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1668 - - uid: 1903 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - uid: 1904 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1668 - - uid: 1905 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 1668 - - uid: 1906 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1668 - - uid: 1907 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1668 - - uid: 1908 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1668 - - uid: 1909 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1668 - - uid: 1910 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1668 - - uid: 1911 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1668 - - uid: 1912 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 1668 - - uid: 1913 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 1668 - - uid: 1914 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 1668 - - uid: 1915 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 1668 - - uid: 1916 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 1917 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 1918 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 1919 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 1920 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - uid: 1921 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 1922 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 1668 - - uid: 1923 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1668 - - uid: 1924 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1668 - - uid: 1925 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 1668 - - uid: 1926 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1668 - - uid: 1927 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 1668 - - uid: 1928 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 1668 - - uid: 1929 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 1930 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - uid: 1931 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 1668 - - uid: 1932 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 1668 - - uid: 1933 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 1668 - - uid: 1934 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 1668 - - uid: 1935 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 1668 - - uid: 1936 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 1937 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 1938 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1668 - - uid: 1939 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1668 - - uid: 1940 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1668 - - uid: 1941 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 1942 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 1668 - - uid: 1943 - components: - - type: Transform - pos: 12.5,-4.5 - parent: 1668 - - uid: 1944 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 1668 - - uid: 1945 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 1668 - - uid: 1946 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 1668 - - uid: 1947 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1668 - - uid: 1948 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 1668 - - uid: 1949 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 1950 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1668 - - uid: 1951 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 1952 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 1668 - - uid: 1953 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 1954 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 1668 - - uid: 2523 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1668 - - uid: 2524 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1668 - - uid: 2525 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1668 - - uid: 2526 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 2527 - components: - - type: Transform - pos: 4.5,12.5 - parent: 1668 - - uid: 2528 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2529 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1668 - - uid: 2530 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1668 - - uid: 2531 - components: - - type: Transform - pos: 8.5,12.5 - parent: 1668 - - uid: 2532 - components: - - type: Transform - pos: 9.5,12.5 - parent: 1668 - - uid: 2533 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1668 - - uid: 2534 - components: - - type: Transform - pos: 11.5,12.5 - parent: 1668 - - uid: 2535 - components: - - type: Transform - pos: 12.5,12.5 - parent: 1668 - - uid: 2536 - components: - - type: Transform - pos: 13.5,12.5 - parent: 1668 - - uid: 2537 - components: - - type: Transform - pos: 14.5,12.5 - parent: 1668 - - uid: 2538 - components: - - type: Transform - pos: 14.5,13.5 - parent: 1668 - - uid: 2539 - components: - - type: Transform - pos: 14.5,14.5 - parent: 1668 - - uid: 2540 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1668 - - uid: 2541 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 2542 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 2543 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 2544 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 2545 - components: - - type: Transform - pos: 15.5,19.5 - parent: 1668 - - uid: 3257 - components: - - type: Transform - pos: 16.5,18.5 - parent: 1668 - - uid: 3523 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 1668 - - uid: 3524 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 3525 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - uid: 3526 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1668 - - uid: 3527 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1668 - - uid: 3528 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1668 - - uid: 3529 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1668 - - uid: 3530 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - uid: 3531 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 1668 - - uid: 3532 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1668 - - uid: 3533 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 1668 - - uid: 3534 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 1668 - - uid: 3535 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 1668 - - uid: 3536 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1668 - - uid: 3537 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 1668 - - uid: 3538 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 1668 - - uid: 3539 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1668 - - uid: 3540 - components: - - type: Transform - pos: -6.5,0.5 - parent: 1668 - - uid: 3541 - components: - - type: Transform - pos: -6.5,1.5 - parent: 1668 - - uid: 3542 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1668 - - uid: 3543 - components: - - type: Transform - pos: -6.5,3.5 - parent: 1668 - - uid: 3544 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1668 - - uid: 3545 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 1668 - - uid: 3546 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1668 - - uid: 3547 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1668 - - uid: 3548 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1668 - - uid: 3549 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1668 - - uid: 3550 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1668 - - uid: 3551 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1668 - - uid: 3552 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1668 - - uid: 3553 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1668 - - uid: 3554 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1668 - - uid: 3555 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1668 - - uid: 3556 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1668 - - uid: 3557 - components: - - type: Transform - pos: -20.5,0.5 - parent: 1668 - - uid: 3558 - components: - - type: Transform - pos: -19.5,0.5 - parent: 1668 - - uid: 3559 - components: - - type: Transform - pos: -21.5,0.5 - parent: 1668 - - uid: 3560 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1668 - - uid: 3561 - components: - - type: Transform - pos: -21.5,2.5 - parent: 1668 - - uid: 3562 - components: - - type: Transform - pos: -21.5,3.5 - parent: 1668 - - uid: 3563 - components: - - type: Transform - pos: -21.5,4.5 - parent: 1668 - - uid: 3564 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1668 - - uid: 3565 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3566 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3567 - components: - - type: Transform - pos: -18.5,5.5 - parent: 1668 - - uid: 3568 - components: - - type: Transform - pos: -17.5,5.5 - parent: 1668 - - uid: 3569 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3570 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1668 - - uid: 3571 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - uid: 3574 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1668 - - uid: 3950 - components: - - type: Transform - pos: -22.5,0.5 - parent: 1668 - - uid: 3951 - components: - - type: Transform - pos: -23.5,0.5 - parent: 1668 - - uid: 3952 - components: - - type: Transform - pos: -24.5,0.5 - parent: 1668 - - uid: 3953 - components: - - type: Transform - pos: -25.5,0.5 - parent: 1668 - - uid: 3954 - components: - - type: Transform - pos: -26.5,0.5 - parent: 1668 - - uid: 3955 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1668 - - uid: 3956 - components: - - type: Transform - pos: -28.5,0.5 - parent: 1668 - - uid: 3957 - components: - - type: Transform - pos: -29.5,0.5 - parent: 1668 - - uid: 3958 - components: - - type: Transform - pos: -30.5,0.5 - parent: 1668 - - uid: 3959 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1668 - - uid: 3960 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1668 - - uid: 3961 - components: - - type: Transform - pos: -30.5,3.5 - parent: 1668 - - uid: 3962 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - uid: 3963 - components: - - type: Transform - pos: -29.5,4.5 - parent: 1668 - - uid: 3964 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 3965 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 3966 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 3967 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1668 - - uid: 4359 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 1668 - - uid: 4360 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 1668 - - uid: 4577 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 1668 - - uid: 4580 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 1668 - - uid: 4634 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 1668 - - uid: 4667 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1668 - - uid: 4668 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 1668 - - uid: 4669 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 1668 - - uid: 4764 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1668 - - uid: 4765 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 1668 - - uid: 4766 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 1668 - - uid: 4767 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 4768 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 1668 - - uid: 4769 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1668 - - uid: 4770 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - uid: 4771 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 1668 - - uid: 4772 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 1668 - - uid: 4773 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 4774 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 1668 - - uid: 4775 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 1668 - - uid: 4776 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 1668 - - uid: 4777 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1668 - - uid: 4778 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 1668 - - uid: 4779 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 4780 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 4781 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1668 - - uid: 4782 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 1668 - - uid: 4783 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - uid: 4784 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 1668 - - uid: 4785 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 1668 - - uid: 4786 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 1668 - - uid: 4787 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 1668 - - uid: 4788 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 1668 - - uid: 4789 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 1668 - - uid: 4790 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1668 - - uid: 4791 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1668 - - uid: 4792 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1668 - - uid: 4793 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1668 - - uid: 4794 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 1668 - - uid: 4795 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 1668 - - uid: 4796 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 1668 - - uid: 4797 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 1668 - - uid: 4798 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1668 - - uid: 4799 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1668 - - uid: 4800 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1668 - - uid: 4801 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1668 - - uid: 4802 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 1668 - - uid: 4803 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 1668 - - uid: 4804 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 1668 - - uid: 4805 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1668 - - uid: 4806 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1668 - - uid: 4808 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1668 - - uid: 4809 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1668 - - uid: 4810 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1668 - - uid: 4811 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 4812 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 4813 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 4814 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 1668 - - uid: 4856 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1668 - - uid: 4972 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 1668 - - uid: 4974 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 1668 - - uid: 4975 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 1668 - - uid: 5071 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 1668 - - uid: 5072 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 1668 - - uid: 5073 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 1668 - - uid: 5074 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 1668 - - uid: 5081 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 1668 - - uid: 5082 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 1668 - - uid: 5083 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 1668 - - uid: 5084 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1668 - - uid: 5085 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 1668 - - uid: 5086 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 1668 - - uid: 5087 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1668 - - uid: 5088 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 1668 - - uid: 5089 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 1668 - - uid: 5090 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1668 - - uid: 5091 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 1668 - - uid: 5092 - components: - - type: Transform - pos: 32.5,-16.5 - parent: 1668 - - uid: 5093 - components: - - type: Transform - pos: 32.5,-17.5 - parent: 1668 - - uid: 5094 - components: - - type: Transform - pos: 32.5,-18.5 - parent: 1668 - - uid: 5095 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 1668 - - uid: 5096 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 1668 - - uid: 5097 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 - - uid: 5098 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 1668 - - uid: 5099 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 1668 - - uid: 5100 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1668 - - uid: 5101 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5185 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 5186 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5187 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 5188 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 1668 - - uid: 5189 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 1668 - - uid: 5190 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1668 - - uid: 5191 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 1668 - - uid: 5192 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1668 - - uid: 5193 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 5194 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5195 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 - - uid: 5196 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 1668 - - uid: 5341 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 1668 - - uid: 5342 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - uid: 5343 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 1668 - - uid: 5370 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1668 - - uid: 5393 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 1668 - - uid: 5807 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1668 - - uid: 5808 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 1668 - - uid: 5809 - components: - - type: Transform - pos: 2.5,-27.5 - parent: 1668 - - uid: 5810 - components: - - type: Transform - pos: 3.5,-27.5 - parent: 1668 - - uid: 5811 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 1668 - - uid: 5812 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1668 - - uid: 5813 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 1668 - - uid: 6006 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1668 - - uid: 6007 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 1668 - - uid: 6008 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 1668 - - uid: 6009 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1668 - - uid: 6010 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 1668 - - uid: 6011 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 1668 - - uid: 6012 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 1668 - - uid: 6013 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 1668 - - uid: 6014 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 1668 - - uid: 6015 - components: - - type: Transform - pos: 8.5,-31.5 - parent: 1668 - - uid: 6016 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1668 - - uid: 6017 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 1668 - - uid: 6018 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 1668 - - uid: 6019 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 1668 - - uid: 6020 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 1668 - - uid: 6021 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 1668 - - uid: 6022 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 1668 - - uid: 6023 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1668 - - uid: 6026 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1668 - - uid: 6027 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1668 - - uid: 6028 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 1668 - - uid: 6029 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 1668 - - uid: 6030 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 1668 - - uid: 6031 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 1668 - - uid: 6032 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1668 - - uid: 6033 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 1668 - - uid: 6034 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 1668 - - uid: 6035 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 1668 - - uid: 6036 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 1668 - - uid: 6037 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 6038 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 1668 - - uid: 6039 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 1668 - - uid: 6040 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 1668 - - uid: 6041 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6042 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 1668 - - uid: 6043 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 1668 - - uid: 6044 - components: - - type: Transform - pos: -14.5,-25.5 - parent: 1668 - - uid: 6045 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 6046 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 1668 - - uid: 6047 - components: - - type: Transform - pos: -17.5,-25.5 - parent: 1668 - - uid: 6048 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1668 - - uid: 6049 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1668 - - uid: 6050 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1668 - - uid: 6051 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1668 - - uid: 6052 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1668 - - uid: 6053 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1668 - - uid: 6054 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 1668 - - uid: 6166 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 1668 - - uid: 6167 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 1668 - - uid: 6168 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1668 - - uid: 6169 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 1668 - - uid: 6170 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 1668 - - uid: 6171 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1668 - - uid: 6172 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 1668 - - uid: 6173 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1668 - - uid: 6174 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1668 - - uid: 6175 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 1668 - - uid: 6176 - components: - - type: Transform - pos: 2.5,-32.5 - parent: 1668 - - uid: 6177 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 1668 - - uid: 6178 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1668 - - uid: 6179 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 1668 - - uid: 6253 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 1668 - - uid: 6254 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 1668 - - uid: 6255 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 1668 - - uid: 6256 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1668 - - uid: 6257 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 1668 - - uid: 6258 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 1668 - - uid: 6259 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 1668 - - uid: 6260 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 1668 - - uid: 6261 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 1668 - - uid: 6262 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 1668 - - uid: 6263 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 1668 - - uid: 6264 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1668 - - uid: 6265 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 1668 - - uid: 6266 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 1668 - - uid: 6594 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 1668 - - uid: 6631 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 1668 - - uid: 6773 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1668 - - uid: 6777 - components: - - type: Transform - pos: 27.5,-30.5 - parent: 1668 - - uid: 6786 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 1668 -- proto: CableMV - entities: - - uid: 1146 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 1668 - - uid: 1147 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 - - uid: 1148 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 1668 - - uid: 1149 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 1668 - - uid: 1150 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1668 - - uid: 1151 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1668 - - uid: 1153 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 1668 - - uid: 1154 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1668 - - uid: 1155 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1668 - - uid: 1156 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 1668 - - uid: 1157 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 1668 - - uid: 1158 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 1668 - - uid: 1159 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 1668 - - uid: 1160 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 1668 - - uid: 1161 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 1668 - - uid: 1162 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 1163 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 1668 - - uid: 1164 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 1668 - - uid: 1165 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 1668 - - uid: 1166 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1668 - - uid: 1167 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 1168 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1668 - - uid: 1169 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1668 - - uid: 1170 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1668 - - uid: 1171 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 1172 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 1668 - - uid: 1173 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 1668 - - uid: 1174 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1668 - - uid: 1175 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1668 - - uid: 1176 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 1182 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 1668 - - uid: 1321 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1668 - - uid: 1323 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1668 - - uid: 1324 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1668 - - uid: 1325 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 1668 - - uid: 1326 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1668 - - uid: 1327 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - uid: 1328 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 1329 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1668 - - uid: 1330 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 1668 - - uid: 1331 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1668 - - uid: 1332 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1668 - - uid: 1333 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1668 - - uid: 1334 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1668 - - uid: 1335 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1668 - - uid: 1336 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1668 - - uid: 1337 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 1668 - - uid: 1338 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 - - uid: 1339 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1668 - - uid: 1340 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 1483 - components: - - type: Transform - pos: 27.5,-31.5 - parent: 1668 - - uid: 1486 - components: - - type: Transform - pos: 28.5,-31.5 - parent: 1668 - - uid: 1487 - components: - - type: Transform - pos: 30.5,-31.5 - parent: 1668 - - uid: 1658 - components: - - type: Transform - pos: 31.5,-31.5 - parent: 1668 - - uid: 1805 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1668 - - uid: 1806 - components: - - type: Transform - pos: -3.5,21.5 - parent: 1668 - - uid: 1807 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1668 - - uid: 1808 - components: - - type: Transform - pos: -5.5,21.5 - parent: 1668 - - uid: 1809 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1668 - - uid: 1810 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1668 - - uid: 1811 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1668 - - uid: 1812 - components: - - type: Transform - pos: -6.5,19.5 - parent: 1668 - - uid: 1813 - components: - - type: Transform - pos: -6.5,18.5 - parent: 1668 - - uid: 1814 - components: - - type: Transform - pos: -6.5,17.5 - parent: 1668 - - uid: 1815 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1668 - - uid: 1816 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1668 - - uid: 1817 - components: - - type: Transform - pos: -6.5,16.5 - parent: 1668 - - uid: 1818 - components: - - type: Transform - pos: -6.5,15.5 - parent: 1668 - - uid: 1819 - components: - - type: Transform - pos: -6.5,14.5 - parent: 1668 - - uid: 1820 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1668 - - uid: 1821 - components: - - type: Transform - pos: -6.5,12.5 - parent: 1668 - - uid: 1822 - components: - - type: Transform - pos: -7.5,12.5 - parent: 1668 - - uid: 1823 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - uid: 1824 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1825 - components: - - type: Transform - pos: -5.5,12.5 - parent: 1668 - - uid: 1826 - components: - - type: Transform - pos: -5.5,11.5 - parent: 1668 - - uid: 1827 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1668 - - uid: 1828 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1668 - - uid: 1829 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1668 - - uid: 1830 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1668 - - uid: 1831 - components: - - type: Transform - pos: -10.5,19.5 - parent: 1668 - - uid: 1832 - components: - - type: Transform - pos: -10.5,18.5 - parent: 1668 - - uid: 1833 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1668 - - uid: 1834 - components: - - type: Transform - pos: -11.5,17.5 - parent: 1668 - - uid: 1835 - components: - - type: Transform - pos: -12.5,17.5 - parent: 1668 - - uid: 1836 - components: - - type: Transform - pos: -13.5,17.5 - parent: 1668 - - uid: 1837 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1668 - - uid: 1838 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1839 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1668 - - uid: 1840 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 1841 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 1842 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 1843 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 1844 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 1845 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1668 - - uid: 1846 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1668 - - uid: 1847 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1668 - - uid: 1848 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1668 - - uid: 1849 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1668 - - uid: 1850 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - uid: 1851 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 - - uid: 1852 - components: - - type: Transform - pos: -0.5,10.5 - parent: 1668 - - uid: 1853 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1668 - - uid: 1854 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 1855 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - uid: 1856 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - uid: 1857 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - uid: 1858 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - uid: 1859 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - uid: 1860 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1668 - - uid: 1862 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1668 - - uid: 1863 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 2014 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1668 - - uid: 2015 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1668 - - uid: 2016 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 2017 - components: - - type: Transform - pos: -0.5,21.5 - parent: 1668 - - uid: 2018 - components: - - type: Transform - pos: -1.5,21.5 - parent: 1668 - - uid: 2019 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 2056 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1668 - - uid: 2947 - components: - - type: Transform - pos: 15.5,19.5 - parent: 1668 - - uid: 2948 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 2949 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 2950 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 2951 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 2952 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1668 - - uid: 2953 - components: - - type: Transform - pos: 14.5,14.5 - parent: 1668 - - uid: 2954 - components: - - type: Transform - pos: 14.5,13.5 - parent: 1668 - - uid: 2955 - components: - - type: Transform - pos: 15.5,13.5 - parent: 1668 - - uid: 2956 - components: - - type: Transform - pos: 16.5,13.5 - parent: 1668 - - uid: 2957 - components: - - type: Transform - pos: 17.5,13.5 - parent: 1668 - - uid: 2958 - components: - - type: Transform - pos: 17.5,14.5 - parent: 1668 - - uid: 2959 - components: - - type: Transform - pos: 17.5,15.5 - parent: 1668 - - uid: 2960 - components: - - type: Transform - pos: 17.5,16.5 - parent: 1668 - - uid: 2961 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2962 - components: - - type: Transform - pos: 17.5,12.5 - parent: 1668 - - uid: 2963 - components: - - type: Transform - pos: 18.5,12.5 - parent: 1668 - - uid: 2964 - components: - - type: Transform - pos: 19.5,12.5 - parent: 1668 - - uid: 2965 - components: - - type: Transform - pos: 20.5,12.5 - parent: 1668 - - uid: 2966 - components: - - type: Transform - pos: 21.5,12.5 - parent: 1668 - - uid: 2967 - components: - - type: Transform - pos: 22.5,12.5 - parent: 1668 - - uid: 2968 - components: - - type: Transform - pos: 23.5,12.5 - parent: 1668 - - uid: 2969 - components: - - type: Transform - pos: 24.5,12.5 - parent: 1668 - - uid: 2970 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1668 - - uid: 2971 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2972 - components: - - type: Transform - pos: 19.5,13.5 - parent: 1668 - - uid: 2973 - components: - - type: Transform - pos: 19.5,14.5 - parent: 1668 - - uid: 2974 - components: - - type: Transform - pos: 19.5,15.5 - parent: 1668 - - uid: 2975 - components: - - type: Transform - pos: 19.5,16.5 - parent: 1668 - - uid: 2976 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1668 - - uid: 2977 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1668 - - uid: 2978 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1668 - - uid: 2979 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1668 - - uid: 2980 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1668 - - uid: 2981 - components: - - type: Transform - pos: 20.5,21.5 - parent: 1668 - - uid: 2982 - components: - - type: Transform - pos: 21.5,21.5 - parent: 1668 - - uid: 2983 - components: - - type: Transform - pos: 25.5,12.5 - parent: 1668 - - uid: 2984 - components: - - type: Transform - pos: 26.5,12.5 - parent: 1668 - - uid: 2985 - components: - - type: Transform - pos: 27.5,12.5 - parent: 1668 - - uid: 2986 - components: - - type: Transform - pos: 28.5,12.5 - parent: 1668 - - uid: 2987 - components: - - type: Transform - pos: 29.5,12.5 - parent: 1668 - - uid: 2988 - components: - - type: Transform - pos: 30.5,12.5 - parent: 1668 - - uid: 2989 - components: - - type: Transform - pos: 31.5,12.5 - parent: 1668 - - uid: 2990 - components: - - type: Transform - pos: 32.5,12.5 - parent: 1668 - - uid: 2991 - components: - - type: Transform - pos: 33.5,12.5 - parent: 1668 - - uid: 2992 - components: - - type: Transform - pos: 34.5,12.5 - parent: 1668 - - uid: 2993 - components: - - type: Transform - pos: 34.5,13.5 - parent: 1668 - - uid: 2994 - components: - - type: Transform - pos: 34.5,14.5 - parent: 1668 - - uid: 2995 - components: - - type: Transform - pos: 34.5,15.5 - parent: 1668 - - uid: 2996 - components: - - type: Transform - pos: 34.5,16.5 - parent: 1668 - - uid: 2997 - components: - - type: Transform - pos: 34.5,17.5 - parent: 1668 - - uid: 2998 - components: - - type: Transform - pos: 34.5,18.5 - parent: 1668 - - uid: 2999 - components: - - type: Transform - pos: 34.5,19.5 - parent: 1668 - - uid: 3000 - components: - - type: Transform - pos: 35.5,19.5 - parent: 1668 - - uid: 3001 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - uid: 3002 - components: - - type: Transform - pos: 12.5,15.5 - parent: 1668 - - uid: 3003 - components: - - type: Transform - pos: 11.5,15.5 - parent: 1668 - - uid: 3004 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1668 - - uid: 3005 - components: - - type: Transform - pos: 9.5,15.5 - parent: 1668 - - uid: 3006 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1668 - - uid: 3007 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - uid: 3008 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 3009 - components: - - type: Transform - pos: 11.5,16.5 - parent: 1668 - - uid: 3010 - components: - - type: Transform - pos: 11.5,17.5 - parent: 1668 - - uid: 3011 - components: - - type: Transform - pos: 11.5,18.5 - parent: 1668 - - uid: 3012 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1668 - - uid: 3013 - components: - - type: Transform - pos: 11.5,20.5 - parent: 1668 - - uid: 3014 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1668 - - uid: 3015 - components: - - type: Transform - pos: 10.5,21.5 - parent: 1668 - - uid: 3016 - components: - - type: Transform - pos: 9.5,21.5 - parent: 1668 - - uid: 3017 - components: - - type: Transform - pos: 9.5,20.5 - parent: 1668 - - uid: 3018 - components: - - type: Transform - pos: 9.5,19.5 - parent: 1668 - - uid: 3019 - components: - - type: Transform - pos: 9.5,18.5 - parent: 1668 - - uid: 3020 - components: - - type: Transform - pos: 8.5,18.5 - parent: 1668 - - uid: 3021 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1668 - - uid: 3022 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1668 - - uid: 3023 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1668 - - uid: 3024 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1668 - - uid: 3025 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - uid: 3026 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 3027 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1668 - - uid: 3028 - components: - - type: Transform - pos: 9.5,28.5 - parent: 1668 - - uid: 3029 - components: - - type: Transform - pos: 9.5,29.5 - parent: 1668 - - uid: 3030 - components: - - type: Transform - pos: 9.5,30.5 - parent: 1668 - - uid: 3031 - components: - - type: Transform - pos: 8.5,30.5 - parent: 1668 - - uid: 3032 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1668 - - uid: 3575 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - uid: 3576 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1668 - - uid: 3578 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 3579 - components: - - type: Transform - pos: -13.5,6.5 - parent: 1668 - - uid: 3580 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3581 - components: - - type: Transform - pos: -17.5,5.5 - parent: 1668 - - uid: 3582 - components: - - type: Transform - pos: -18.5,5.5 - parent: 1668 - - uid: 3583 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3584 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3585 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1668 - - uid: 3586 - components: - - type: Transform - pos: -22.5,5.5 - parent: 1668 - - uid: 3587 - components: - - type: Transform - pos: -22.5,6.5 - parent: 1668 - - uid: 3588 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3589 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1668 - - uid: 3590 - components: - - type: Transform - pos: -22.5,9.5 - parent: 1668 - - uid: 3591 - components: - - type: Transform - pos: -22.5,10.5 - parent: 1668 - - uid: 3592 - components: - - type: Transform - pos: -22.5,11.5 - parent: 1668 - - uid: 3593 - components: - - type: Transform - pos: -22.5,12.5 - parent: 1668 - - uid: 3594 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3595 - components: - - type: Transform - pos: -21.5,11.5 - parent: 1668 - - uid: 3596 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1668 - - uid: 3597 - components: - - type: Transform - pos: -19.5,11.5 - parent: 1668 - - uid: 3598 - components: - - type: Transform - pos: -18.5,11.5 - parent: 1668 - - uid: 3599 - components: - - type: Transform - pos: -17.5,11.5 - parent: 1668 - - uid: 3600 - components: - - type: Transform - pos: -16.5,11.5 - parent: 1668 - - uid: 3601 - components: - - type: Transform - pos: -16.5,12.5 - parent: 1668 - - uid: 3602 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 4105 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 4106 - components: - - type: Transform - pos: -31.5,3.5 - parent: 1668 - - uid: 4107 - components: - - type: Transform - pos: -31.5,4.5 - parent: 1668 - - uid: 4108 - components: - - type: Transform - pos: -31.5,5.5 - parent: 1668 - - uid: 4109 - components: - - type: Transform - pos: -31.5,6.5 - parent: 1668 - - uid: 4110 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - uid: 4111 - components: - - type: Transform - pos: -29.5,4.5 - parent: 1668 - - uid: 4112 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 4113 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 4114 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 4115 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1668 - - uid: 4116 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 4117 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1668 - - uid: 4118 - components: - - type: Transform - pos: -31.5,0.5 - parent: 1668 - - uid: 4119 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 1668 - - uid: 4120 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 1668 - - uid: 4121 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 1668 - - uid: 4122 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 - - uid: 4123 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1668 - - uid: 4124 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 4125 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1668 - - uid: 4126 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 1668 - - uid: 4127 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1668 - - uid: 4128 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 1668 - - uid: 4129 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 1668 - - uid: 4130 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 1668 - - uid: 4131 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 4132 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 1668 - - uid: 4133 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1668 - - uid: 4134 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1668 - - uid: 4135 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1668 - - uid: 4136 - components: - - type: Transform - pos: -17.5,0.5 - parent: 1668 - - uid: 4137 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 4138 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1668 - - uid: 4139 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1668 - - uid: 4140 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1668 - - uid: 4141 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1668 - - uid: 4142 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 1668 - - uid: 4143 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 4257 - components: - - type: Transform - pos: 29.5,-31.5 - parent: 1668 - - uid: 4807 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1668 - - uid: 4817 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 1668 - - uid: 4818 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 1668 - - uid: 4819 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 1668 - - uid: 4820 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 4821 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 1668 - - uid: 4822 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 4823 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 4824 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1668 - - uid: 4825 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 1668 - - uid: 4826 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1668 - - uid: 4827 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 1668 - - uid: 4828 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 1668 - - uid: 4829 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1668 - - uid: 4830 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 1668 - - uid: 4831 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 1668 - - uid: 4832 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 1668 - - uid: 4833 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 1668 - - uid: 4834 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 1668 - - uid: 4835 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1668 - - uid: 4836 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1668 - - uid: 4837 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1668 - - uid: 4838 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1668 - - uid: 4839 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1668 - - uid: 4840 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1668 - - uid: 4841 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1668 - - uid: 4842 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 1668 - - uid: 4843 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1668 - - uid: 4844 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1668 - - uid: 4845 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 4846 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1668 - - uid: 4847 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1668 - - uid: 4848 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1668 - - uid: 4849 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 1668 - - uid: 4850 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 1668 - - uid: 4851 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 1668 - - uid: 4852 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1668 - - uid: 4853 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 1668 - - uid: 4854 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1668 - - uid: 4855 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1668 - - uid: 4857 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1668 - - uid: 4858 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1668 - - uid: 4859 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1668 - - uid: 4860 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 4861 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 4862 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 4863 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 4864 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 4865 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 4866 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 1668 - - uid: 4867 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - uid: 4868 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 1668 - - uid: 4869 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 1668 - - uid: 4870 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 1668 - - uid: 4871 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 1668 - - uid: 4872 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 1668 - - uid: 4873 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1668 - - uid: 4874 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - uid: 4875 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1668 - - uid: 4876 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 1668 - - uid: 4877 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 1668 - - uid: 4878 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4879 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 1668 - - uid: 4880 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1668 - - uid: 4881 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 1668 - - uid: 4882 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 1668 - - uid: 4883 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 1668 - - uid: 4884 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1668 - - uid: 4885 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 1668 - - uid: 4886 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 1668 - - uid: 4887 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1668 - - uid: 4888 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1668 - - uid: 4889 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1668 - - uid: 4890 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1668 - - uid: 4891 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1668 - - uid: 4892 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1668 - - uid: 4893 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1668 - - uid: 4894 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 1668 - - uid: 4895 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 1668 - - uid: 4896 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1668 - - uid: 4897 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4966 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 1668 - - uid: 4967 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 1668 - - uid: 4976 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1668 - - uid: 4978 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 1668 - - uid: 4979 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 1668 - - uid: 4980 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 1668 - - uid: 4981 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 1668 - - uid: 4982 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1668 - - uid: 4983 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 1668 - - uid: 4984 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 1668 - - uid: 4985 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 4986 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - uid: 4987 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 1668 - - uid: 4988 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 1668 - - uid: 4989 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 4990 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 1668 - - uid: 4991 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 5277 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 1668 - - uid: 5278 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 1668 - - uid: 5279 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 1668 - - uid: 5280 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 1668 - - uid: 5281 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 1668 - - uid: 5282 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 1668 - - uid: 5283 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 1668 - - uid: 5284 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 1668 - - uid: 5285 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 1668 - - uid: 5286 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5287 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 1668 - - uid: 5288 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1668 - - uid: 5289 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1668 - - uid: 5290 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1668 - - uid: 5291 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5292 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 1668 - - uid: 5293 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 1668 - - uid: 5294 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 1668 - - uid: 5295 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 1668 - - uid: 5296 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 1668 - - uid: 5297 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 1668 - - uid: 5298 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 1668 - - uid: 5299 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 1668 - - uid: 5300 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 5301 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 1668 - - uid: 5302 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 1668 - - uid: 5303 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1668 - - uid: 5304 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 1668 - - uid: 5305 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 1668 - - uid: 5306 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 1668 - - uid: 5307 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 1668 - - uid: 5424 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 5425 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 1668 - - uid: 5426 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 1668 - - uid: 5427 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - uid: 5428 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1668 - - uid: 5429 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 5430 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 1668 - - uid: 5431 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - uid: 5432 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 1668 - - uid: 5433 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1668 - - uid: 5434 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 1668 - - uid: 5435 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 1668 - - uid: 5436 - components: - - type: Transform - pos: 24.5,-24.5 - parent: 1668 - - uid: 5437 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 1668 - - uid: 5438 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 5439 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 5440 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 - - uid: 5832 - components: - - type: Transform - pos: 10.5,6.5 - parent: 1668 - - uid: 5833 - components: - - type: Transform - pos: 9.5,6.5 - parent: 1668 - - uid: 5834 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1668 - - uid: 5835 - components: - - type: Transform - pos: 9.5,4.5 - parent: 1668 - - uid: 5836 - components: - - type: Transform - pos: 9.5,3.5 - parent: 1668 - - uid: 5837 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 5838 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - uid: 5839 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1668 - - uid: 5840 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1668 - - uid: 5841 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 5842 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 1668 - - uid: 5843 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 1668 - - uid: 5844 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1668 - - uid: 5845 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 5846 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 5854 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 5855 - components: - - type: Transform - pos: 20.5,5.5 - parent: 1668 - - uid: 5856 - components: - - type: Transform - pos: 19.5,5.5 - parent: 1668 - - uid: 5857 - components: - - type: Transform - pos: 18.5,5.5 - parent: 1668 - - uid: 5858 - components: - - type: Transform - pos: 17.5,5.5 - parent: 1668 - - uid: 5859 - components: - - type: Transform - pos: 16.5,5.5 - parent: 1668 - - uid: 5860 - components: - - type: Transform - pos: 15.5,5.5 - parent: 1668 - - uid: 5861 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1668 - - uid: 5862 - components: - - type: Transform - pos: 13.5,5.5 - parent: 1668 - - uid: 5863 - components: - - type: Transform - pos: 12.5,5.5 - parent: 1668 - - uid: 5865 - components: - - type: Transform - pos: 20.5,4.5 - parent: 1668 - - uid: 5866 - components: - - type: Transform - pos: 20.5,3.5 - parent: 1668 - - uid: 5867 - components: - - type: Transform - pos: 20.5,2.5 - parent: 1668 - - uid: 5868 - components: - - type: Transform - pos: 20.5,1.5 - parent: 1668 - - uid: 5869 - components: - - type: Transform - pos: 20.5,0.5 - parent: 1668 - - uid: 5870 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 1668 - - uid: 5871 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 1668 - - uid: 5872 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 1668 - - uid: 5873 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 1668 - - uid: 5874 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 1668 - - uid: 5875 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 1668 - - uid: 6055 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 1668 - - uid: 6056 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 1668 - - uid: 6057 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1668 - - uid: 6058 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1668 - - uid: 6059 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1668 - - uid: 6060 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1668 - - uid: 6061 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1668 - - uid: 6062 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1668 - - uid: 6063 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 1668 - - uid: 6064 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 1668 - - uid: 6065 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 1668 - - uid: 6066 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 1668 - - uid: 6104 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 1668 - - uid: 6105 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 1668 - - uid: 6106 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 1668 - - uid: 6107 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 1668 - - uid: 6108 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 1668 - - uid: 6109 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6110 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6111 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1668 - - uid: 6182 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 1668 - - uid: 6183 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 1668 - - uid: 6184 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 6185 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 1668 - - uid: 6186 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 1668 - - uid: 6187 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 1668 - - uid: 6188 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 1668 - - uid: 6189 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 6190 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 6191 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 1668 - - uid: 6192 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 1668 - - uid: 6193 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 1668 - - uid: 6194 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 1668 - - uid: 6195 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 1668 - - uid: 6196 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1668 - - uid: 6197 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1668 - - uid: 6198 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 1668 - - uid: 6199 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1668 - - uid: 6200 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 1668 - - uid: 6201 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 1668 - - uid: 6336 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1668 - - uid: 6337 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 1668 - - uid: 6338 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 1668 - - uid: 6339 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 1668 - - uid: 6340 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 1668 - - uid: 6341 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 1668 - - uid: 6342 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 1668 - - uid: 6343 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 1668 - - uid: 6344 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 1668 - - uid: 6345 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1668 - - uid: 6398 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1668 - - uid: 6399 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 1668 - - uid: 6400 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 1668 - - uid: 6401 - components: - - type: Transform - pos: -1.5,-37.5 - parent: 1668 - - uid: 6402 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 1668 - - uid: 6403 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 1668 - - uid: 6404 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 1668 - - uid: 6405 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 1668 - - uid: 6406 - components: - - type: Transform - pos: -1.5,-41.5 - parent: 1668 - - uid: 6407 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 1668 - - uid: 6408 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6849 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 1668 - - uid: 6850 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 1668 - - uid: 6851 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 1668 - - uid: 6852 - components: - - type: Transform - pos: 32.5,-28.5 - parent: 1668 - - uid: 6853 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 -- proto: CableTerminal - entities: - - uid: 2191 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 1668 - - uid: 5075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 1668 - - uid: 5076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 1668 - - uid: 5077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 1668 -- proto: CargoPallet - entities: - - uid: 6924 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1668 - - uid: 6925 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1668 - - uid: 6926 - components: - - type: Transform - pos: -8.5,26.5 - parent: 1668 - - uid: 6927 - components: - - type: Transform - pos: -6.5,28.5 - parent: 1668 - - uid: 6928 - components: - - type: Transform - pos: -7.5,28.5 - parent: 1668 - - uid: 6929 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1668 -- proto: Carpet - entities: - - uid: 2714 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1668 - - uid: 2715 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1668 - - uid: 2716 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1668 - - uid: 2717 - components: - - type: Transform - pos: 5.5,19.5 - parent: 1668 -- proto: CarpetGreen - entities: - - uid: 148 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1668 - - uid: 149 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1668 - - uid: 204 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1668 - - uid: 205 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1668 - - uid: 207 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1668 - - uid: 1428 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1668 - - uid: 3728 - components: - - type: Transform - pos: -16.5,10.5 - parent: 1668 - - uid: 3729 - components: - - type: Transform - pos: -16.5,11.5 - parent: 1668 - - uid: 3730 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1668 - - uid: 3731 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1668 - - uid: 3732 - components: - - type: Transform - pos: -19.5,11.5 - parent: 1668 - - uid: 3733 - components: - - type: Transform - pos: -19.5,10.5 - parent: 1668 - - uid: 3735 - components: - - type: Transform - pos: -18.5,11.5 - parent: 1668 - - uid: 3736 - components: - - type: Transform - pos: -18.5,10.5 - parent: 1668 - - uid: 3738 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3739 - components: - - type: Transform - pos: -19.5,6.5 - parent: 1668 - - uid: 3740 - components: - - type: Transform - pos: -18.5,5.5 - parent: 1668 - - uid: 3741 - components: - - type: Transform - pos: -18.5,6.5 - parent: 1668 -- proto: Catwalk - entities: - - uid: 347 - components: - - type: Transform - pos: 34.5,2.5 - parent: 1668 - - uid: 1065 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 1668 - - uid: 1066 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 1668 - - uid: 1067 - components: - - type: Transform - pos: 34.5,4.5 - parent: 1668 - - uid: 1179 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 - - uid: 2032 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 2033 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 2034 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 2035 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 2036 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 2037 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1668 - - uid: 2038 - components: - - type: Transform - pos: -2.5,20.5 - parent: 1668 - - uid: 2046 - components: - - type: Transform - pos: -0.5,23.5 - parent: 1668 - - uid: 2047 - components: - - type: Transform - pos: -1.5,23.5 - parent: 1668 - - uid: 2048 - components: - - type: Transform - pos: -2.5,23.5 - parent: 1668 - - uid: 2049 - components: - - type: Transform - pos: -2.5,24.5 - parent: 1668 - - uid: 3239 - components: - - type: Transform - pos: -2.5,26.5 - parent: 1668 - - uid: 3240 - components: - - type: Transform - pos: -2.5,27.5 - parent: 1668 - - uid: 3241 - components: - - type: Transform - pos: -2.5,28.5 - parent: 1668 - - uid: 3242 - components: - - type: Transform - pos: -2.5,29.5 - parent: 1668 - - uid: 3243 - components: - - type: Transform - pos: -2.5,30.5 - parent: 1668 - - uid: 3244 - components: - - type: Transform - pos: -2.5,31.5 - parent: 1668 - - uid: 3246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 1668 - - uid: 3251 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 3252 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 3253 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 3709 - components: - - type: Transform - pos: -16.5,4.5 - parent: 1668 - - uid: 3710 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1668 - - uid: 3711 - components: - - type: Transform - pos: -14.5,4.5 - parent: 1668 - - uid: 3712 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 4146 - components: - - type: Transform - pos: -33.5,0.5 - parent: 1668 - - uid: 4147 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 1668 - - uid: 4181 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1668 - - uid: 4182 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 4183 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 4568 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 1668 - - uid: 4569 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 1668 - - uid: 4570 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 1668 - - uid: 4571 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 1668 - - uid: 4572 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 1668 - - uid: 4573 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 1668 - - uid: 4574 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 1668 - - uid: 5197 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1668 - - uid: 5198 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 5199 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 5200 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5201 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5202 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 1668 - - uid: 5203 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 1668 - - uid: 5204 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1668 - - uid: 5205 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 1668 - - uid: 5206 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 1668 - - uid: 5207 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1668 - - uid: 5208 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 1668 - - uid: 5209 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5210 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 5211 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 - - uid: 5212 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 - - uid: 5213 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 1668 - - uid: 5323 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1668 - - uid: 5324 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 1668 - - uid: 5325 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 1668 - - uid: 5326 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1668 - - uid: 6142 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1668 - - uid: 6143 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 1668 - - uid: 6440 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 1668 - - uid: 6441 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 1668 -- proto: CentcomIDCard - entities: - - uid: 3721 - components: - - type: Transform - pos: -16.521366,8.567018 - parent: 1668 -- proto: CentcomPDA - entities: - - uid: 6617 - components: - - type: Transform - pos: -20.428675,10.647655 - parent: 1668 -- proto: Chair - entities: - - uid: 517 - components: - - type: Transform - pos: 22.5,5.5 - parent: 1668 - - uid: 518 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1668 - - uid: 519 - components: - - type: Transform - pos: 24.5,5.5 - parent: 1668 - - uid: 520 - components: - - type: Transform - pos: 28.5,5.5 - parent: 1668 - - uid: 521 - components: - - type: Transform - pos: 29.5,5.5 - parent: 1668 - - uid: 522 - components: - - type: Transform - pos: 30.5,5.5 - parent: 1668 - - uid: 532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 1668 - - uid: 533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - - uid: 534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 1668 - - uid: 535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1668 - - uid: 536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - - uid: 537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 1668 - - uid: 538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1668 - - uid: 539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1668 - - uid: 540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1668 - - uid: 541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1668 - - uid: 634 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1668 - - uid: 635 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1668 - - uid: 636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - - uid: 637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1668 - - uid: 638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 1668 - - uid: 639 - components: - - type: Transform - pos: 13.5,1.5 - parent: 1668 - - uid: 1644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - - uid: 1645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - - uid: 2168 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1668 - - uid: 2169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - - uid: 2170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1668 - - uid: 2171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 1668 - - uid: 2172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1668 - - uid: 2173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1668 - - uid: 2174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1668 - - uid: 2175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1668 - - uid: 2176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1668 - - uid: 2415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 1668 - - uid: 2416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 1668 - - uid: 2417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 1668 - - uid: 2418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1668 - - uid: 2419 - components: - - type: Transform - pos: 26.5,21.5 - parent: 1668 - - uid: 2420 - components: - - type: Transform - pos: 30.5,21.5 - parent: 1668 - - uid: 2427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1668 - - uid: 2428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1668 - - uid: 2429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1668 - - uid: 2430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1668 - - uid: 2431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - - uid: 2432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1668 - - uid: 2433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 1668 - - uid: 2434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 1668 - - uid: 2441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1668 - - uid: 2472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1668 - - uid: 2473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1668 - - uid: 2474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 1668 - - uid: 2475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1668 - - uid: 2476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1668 - - uid: 2477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 1668 - - uid: 2478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1668 - - uid: 2479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 1668 - - uid: 2480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 1668 - - uid: 2481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1668 - - uid: 2482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1668 - - uid: 2483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 1668 - - uid: 2484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 1668 - - uid: 2485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 1668 - - uid: 2827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1668 - - uid: 2828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1668 - - uid: 3172 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1668 - - uid: 3173 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - uid: 3174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1668 - - uid: 3175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 1668 - - uid: 3176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1668 - - uid: 3177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 1668 - - uid: 3827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 1668 - - uid: 4152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1668 - - uid: 4153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - - uid: 4154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1668 - - uid: 4155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1668 - - uid: 4156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - - uid: 4157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1668 - - uid: 4160 - components: - - type: Transform - pos: -31.5,6.5 - parent: 1668 - - uid: 4161 - components: - - type: Transform - pos: -32.5,6.5 - parent: 1668 - - uid: 4162 - components: - - type: Transform - pos: -33.5,6.5 - parent: 1668 - - uid: 4163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 1668 - - uid: 4164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 1668 - - uid: 4165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - - uid: 5246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 1668 - - uid: 5249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 1668 - - uid: 5308 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 1668 - - uid: 5309 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 1668 - - uid: 5384 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 1668 - - uid: 5385 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1668 - - uid: 6148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 1668 - - uid: 6149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - - uid: 6152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 1668 - - uid: 6153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 1668 - - uid: 6240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 1668 - - uid: 6243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 1668 - - uid: 6391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - - uid: 6392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 1668 - - uid: 6393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1668 - - uid: 6394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - - uid: 6567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 1668 - - uid: 6568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 1668 - - uid: 6569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 1668 - - uid: 6570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 1668 - - uid: 6579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 1668 - - uid: 6580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1668 - - uid: 6585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1668 - - uid: 6586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 1668 - - uid: 6587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 - parent: 1668 - - uid: 6588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1668 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1668 - - uid: 6590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1668 - - uid: 6748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 -- proto: ChairOfficeDark - entities: - - uid: 506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 1668 - - uid: 507 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 1668 - - uid: 604 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1668 - - uid: 605 - components: - - type: Transform - pos: 14.5,3.5 - parent: 1668 - - uid: 817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1668 - - uid: 818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1668 - - uid: 1401 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1668 - - uid: 1402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1668 - - uid: 1403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1668 - - uid: 1404 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 1668 - - uid: 1405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1668 - - uid: 1646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - - uid: 1647 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1668 - - uid: 1648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1668 - - uid: 1649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1668 - - uid: 2744 - components: - - type: Transform - pos: 9.5,17.5 - parent: 1668 - - uid: 3621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 1668 - - uid: 3622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - - uid: 3623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - - uid: 3880 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 1668 - - uid: 3881 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 1668 - - uid: 3882 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1668 - - uid: 3883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 1668 - - uid: 3884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 1668 - - uid: 3885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 1668 - - uid: 3886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 1668 - - uid: 3887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 - parent: 1668 - - uid: 3888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1668 - - uid: 5243 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 1668 - - uid: 5336 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 5337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1668 - - uid: 6939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1668 - - uid: 6940 - components: - - type: Transform - pos: -10.5,30.5 - parent: 1668 - - uid: 6941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1668 -- proto: ChairWood - entities: - - uid: 4617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 1668 -- proto: chem_master - entities: - - uid: 825 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 1668 - - uid: 4425 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 1668 -- proto: ChemDispenser - entities: - - uid: 824 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 1668 -- proto: ChemistryHotplate - entities: - - uid: 254 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 -- proto: ChessBoard - entities: - - uid: 3762 - components: - - type: Transform - pos: -23.529772,4.584259 - parent: 1668 -- proto: CigarGold - entities: - - uid: 2465 - components: - - type: Transform - pos: 30.393238,23.676378 - parent: 1668 - - uid: 2466 - components: - - type: Transform - pos: 30.502613,23.598253 - parent: 1668 - - uid: 3746 - components: - - type: Transform - pos: -23.553053,10.781973 - parent: 1668 - - uid: 3747 - components: - - type: Transform - pos: -23.443678,10.672598 - parent: 1668 - - uid: 3877 - components: - - type: Transform - pos: -26.36634,-3.4881558 - parent: 1668 - - uid: 3878 - components: - - type: Transform - pos: -26.30384,-3.5194058 - parent: 1668 -- proto: CloningPod - entities: - - uid: 722 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 575 - - type: Construction - containers: - - machine_parts - - machine_board -- proto: ClosetChefFilled - entities: - - uid: 4579 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 1668 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1071 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 1668 - - uid: 1072 - components: - - type: Transform - pos: 34.5,5.5 - parent: 1668 - - uid: 2044 - components: - - type: Transform - pos: -3.5,24.5 - parent: 1668 - - uid: 4148 - components: - - type: Transform - pos: -33.5,1.5 - parent: 1668 - - uid: 4149 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 1668 - - uid: 4159 - components: - - type: Transform - pos: -30.5,6.5 - parent: 1668 - - uid: 5352 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 1668 - - uid: 6147 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 1668 - - uid: 6252 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 1668 -- proto: ClosetFireFilled - entities: - - uid: 1073 - components: - - type: Transform - pos: 34.5,1.5 - parent: 1668 - - uid: 1074 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 1668 - - uid: 4158 - components: - - type: Transform - pos: -29.5,6.5 - parent: 1668 - - uid: 5356 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 1668 - - uid: 6146 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 1668 -- proto: ClosetL3JanitorFilled - entities: - - uid: 6229 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 1668 -- proto: ClosetLegalFilled - entities: - - uid: 2490 - components: - - type: Transform - pos: 19.5,23.5 - parent: 1668 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 2442 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 1668 - - uid: 5331 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 1668 - - uid: 5332 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 1668 -- proto: ClosetSteelBase - entities: - - uid: 2491 - components: - - type: Transform - pos: 20.5,23.5 - parent: 1668 -- proto: ClosetToolFilled - entities: - - uid: 3254 - components: - - type: Transform - pos: 14.5,19.5 - parent: 1668 -- proto: ClothingBackpackDuffelCargo - entities: - - uid: 6932 - components: - - type: Transform - pos: -5.4863143,25.64425 - parent: 1668 -- proto: ClothingBackpackERTSecurity - entities: - - uid: 2901 - components: - - type: Transform - pos: 16.642612,32.410297 - parent: 1668 - - uid: 2902 - components: - - type: Transform - pos: 16.439487,32.566547 - parent: 1668 - - uid: 2903 - components: - - type: Transform - pos: 2.6113625,32.457172 - parent: 1668 - - uid: 2904 - components: - - type: Transform - pos: 2.4551125,32.613422 - parent: 1668 -- proto: ClothingBackpackSatchelHolding - entities: - - uid: 3737 - components: - - type: Transform - pos: -26.540686,12.537982 - parent: 1668 -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 6956 - components: - - type: Transform - pos: 20.568373,-22.468605 - parent: 1668 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 1460 - components: - - type: Transform - pos: -6.4730563,-12.590733 - parent: 1668 - - uid: 3151 - components: - - type: Transform - pos: 9.512553,25.678463 - parent: 1668 - - uid: 3152 - components: - - type: Transform - pos: 9.637553,25.537838 - parent: 1668 -- proto: ClothingBeltSheathFilled - entities: - - uid: 3725 - components: - - type: Transform - pos: -15.72449,12.605259 - parent: 1668 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 2241 - components: - - type: Transform - pos: -9.339353,8.480244 - parent: 1668 - - uid: 3909 - components: - - type: Transform - pos: -13.494019,-9.4266615 - parent: 1668 - - uid: 5345 - components: - - type: Transform - pos: 25.530863,-26.462372 - parent: 1668 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 6846 - components: - - type: Transform - pos: 3.5108106,-10.103214 - parent: 1668 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 2204 - components: - - type: Transform - pos: 16.59961,30.616188 - parent: 1668 - - uid: 2205 - components: - - type: Transform - pos: 16.490234,30.741188 - parent: 1668 - - uid: 4173 - components: - - type: Transform - pos: 2.5571308,30.616188 - parent: 1668 - - uid: 4388 - components: - - type: Transform - pos: 2.4477558,30.694313 - parent: 1668 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 2449 - components: - - type: Transform - pos: -15.8832245,12.471813 - parent: 1668 - - uid: 6947 - components: - - type: Transform - pos: -27.440563,-8.922831 - parent: 1668 - - uid: 6948 - components: - - type: Transform - pos: -27.440563,-8.922831 - parent: 1668 - - uid: 6949 - components: - - type: Transform - pos: -27.440563,-8.922831 - parent: 1668 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 5371 - components: - - type: Transform - pos: 26.529047,-22.34483 - parent: 1668 -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 6950 - components: - - type: Transform - pos: -26.706188,-9.407206 - parent: 1668 - - uid: 6951 - components: - - type: Transform - pos: -26.706188,-9.407206 - parent: 1668 - - uid: 6952 - components: - - type: Transform - pos: -26.706188,-9.407206 - parent: 1668 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 255 - components: - - type: Transform - pos: 2.4165058,30.959938 - parent: 1668 - - uid: 297 - components: - - type: Transform - pos: 2.6508808,30.850563 - parent: 1668 - - uid: 823 - components: - - type: Transform - pos: 16.41518,30.975563 - parent: 1668 - - uid: 833 - components: - - type: Transform - pos: 16.57143,30.913063 - parent: 1668 - - uid: 3724 - components: - - type: Transform - pos: -16.552616,8.708888 - parent: 1668 -- proto: ClothingHeadHatHairflower - entities: - - uid: 6605 - components: - - type: Transform - pos: -11.182456,6.7149878 - parent: 1668 -- proto: ClothingHeadHatWelding - entities: - - uid: 2197 - components: - - type: Transform - pos: -1.4187617,24.501104 - parent: 1668 - - uid: 3700 - components: - - type: Transform - pos: -16.435745,6.5478344 - parent: 1668 - - uid: 5372 - components: - - type: Transform - pos: 27.357172,-22.34483 - parent: 1668 - - uid: 5373 - components: - - type: Transform - pos: 27.544672,-22.46983 - parent: 1668 -- proto: ClothingHeadsetAltCentCom - entities: - - uid: 1435 - components: - - type: Transform - pos: 0.47396702,1.5393463 - parent: 1668 - - uid: 3823 - components: - - type: Transform - pos: 2.6429226,32.7473 - parent: 1668 - - uid: 3824 - components: - - type: Transform - pos: 2.7522976,32.637924 - parent: 1668 - - uid: 3825 - components: - - type: Transform - pos: 16.661858,32.6848 - parent: 1668 - - uid: 3826 - components: - - type: Transform - pos: 16.771233,32.575424 - parent: 1668 -- proto: ClothingMaskGas - entities: - - uid: 2224 - components: - - type: Transform - pos: -11.500146,17.576977 - parent: 1668 -- proto: ClothingMaskGasAtmos - entities: - - uid: 5346 - components: - - type: Transform - pos: 21.493792,-17.470217 - parent: 1668 -- proto: ClothingMaskGasDeathSquad - entities: - - uid: 299 - components: - - type: Transform - pos: 16.360958,32.006813 - parent: 1668 - - uid: 821 - components: - - type: Transform - pos: 2.59024,31.975563 - parent: 1668 - - uid: 822 - components: - - type: Transform - pos: 2.34024,32.022438 - parent: 1668 - - uid: 1434 - components: - - type: Transform - pos: 16.595333,31.897438 - parent: 1668 -- proto: ClothingNeckBronzeheart - entities: - - uid: 4377 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 1668 -- proto: ClothingNeckCloakNanotrasen - entities: - - uid: 2452 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 - - uid: 2737 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 - - uid: 4266 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 - - uid: 4615 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 -- proto: ClothingNeckGoldmedal - entities: - - uid: 4378 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 1668 -- proto: ClothingNeckLawyerbadge - entities: - - uid: 4379 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 1668 - - uid: 6936 - components: - - type: Transform - pos: 19.539907,21.362776 - parent: 1668 -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 3771 - components: - - type: Transform - pos: -12.455681,6.5291095 - parent: 1668 -- proto: ClothingOuterHardsuitDeathsquad - entities: - - uid: 2897 - components: - - type: Transform - pos: 3.403695,32.551796 - parent: 1668 - - uid: 2898 - components: - - type: Transform - pos: 3.653695,32.69242 - parent: 1668 - - uid: 2899 - components: - - type: Transform - pos: 15.372445,32.53617 - parent: 1668 - - 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=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - - uid: 2900 - components: - - type: Transform - pos: 15.653695,32.676796 - parent: 1668 - - 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=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingShoesBootsLaceup - entities: - - uid: 3722 - components: - - type: Transform - pos: -16.568241,9.145143 - parent: 1668 - - uid: 6953 - components: - - type: Transform - pos: -27.518688,-8.610331 - parent: 1668 - - uid: 6954 - components: - - type: Transform - pos: -27.518688,-8.610331 - parent: 1668 - - uid: 6955 - components: - - type: Transform - pos: -27.518688,-8.610331 - parent: 1668 -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 2909 - components: - - type: Transform - pos: 3.4296377,30.58716 - parent: 1668 - - uid: 2910 - components: - - type: Transform - pos: 3.6171377,30.446535 - parent: 1668 - - uid: 2911 - components: - - type: Transform - pos: 15.407025,30.634035 - parent: 1668 - - uid: 2912 - components: - - type: Transform - pos: 15.6414,30.415285 - parent: 1668 -- proto: ClothingShoesLeather - entities: - - uid: 3775 - components: - - type: Transform - pos: -10.574664,4.498021 - parent: 1668 -- proto: ClothingUniformJumpsuitDeathSquad - entities: - - uid: 2206 - components: - - type: Transform - pos: 15.35466,32.444313 - parent: 1668 - - uid: 2722 - components: - - type: Transform - pos: 3.637115,32.584938 - parent: 1668 - - uid: 4398 - components: - - type: Transform - pos: 3.40274,32.428688 - parent: 1668 - - uid: 4723 - components: - - type: Transform - pos: 15.651535,32.600563 - parent: 1668 -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 2446 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 - - uid: 2451 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 - - uid: 2453 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 - - uid: 2728 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 -- proto: ComfyChair - entities: - - uid: 502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - - uid: 2194 - components: - - type: Transform - pos: -0.5,24.5 - parent: 1668 - - uid: 2421 - components: - - type: Transform - pos: 28.5,21.5 - parent: 1668 - - uid: 2447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - - uid: 2450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1668 - - uid: 2492 - components: - - type: Transform - pos: 20.5,21.5 - parent: 1668 - - uid: 2493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 1668 - - uid: 2494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 1668 - - uid: 3171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1668 - - uid: 3611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 1668 - - uid: 3612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 1668 - - uid: 3613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 1668 - - uid: 3614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,11.5 - parent: 1668 - - uid: 3615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1668 - - uid: 3616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1668 - - uid: 3617 - components: - - type: Transform - pos: -24.5,5.5 - parent: 1668 - - uid: 3618 - components: - - type: Transform - pos: -23.5,5.5 - parent: 1668 - - uid: 3619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 1668 - - uid: 3620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1668 - - uid: 3718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - - uid: 3879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 1668 - - uid: 4189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1668 - - uid: 4437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - - uid: 4441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - - uid: 4442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - - uid: 4443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - - uid: 4444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - - uid: 4445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - - uid: 4446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - - uid: 4447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - - uid: 4448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - - uid: 4449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - - uid: 4450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - - uid: 4451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - - uid: 4453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - - uid: 4458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - - uid: 4470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - - uid: 4472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - - uid: 5422 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 1668 - - uid: 6614 - components: - - type: Transform - pos: 18.5,15.5 - parent: 1668 - - uid: 6616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1668 -- proto: ComputerAlert - entities: - - uid: 655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - - uid: 4973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 1668 - - uid: 5338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 1668 -- proto: computerBodyScanner - entities: - - uid: 611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1668 -- proto: ComputerCargoBounty - entities: - - uid: 6923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 1668 -- proto: ComputerCargoOrders - entities: - - uid: 1624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1668 - - uid: 1650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 1668 - - uid: 1653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 1668 -- proto: ComputerCargoShuttle - entities: - - uid: 1625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1668 - - uid: 1651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1668 - - uid: 1652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 1668 - - uid: 3818 - components: - - type: Transform - pos: -13.5,17.5 - parent: 1668 -- proto: ComputerCloningConsole - entities: - - uid: 575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 722: - - CloningPodSender: CloningPodReceiver -- proto: ComputerComms - entities: - - uid: 652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1668 - - uid: 3447 - components: - - type: Transform - pos: -19.5,12.5 - parent: 1668 - - uid: 3629 - components: - - type: Transform - pos: -18.5,6.5 - parent: 1668 - - uid: 3630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1668 - - uid: 3837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 1668 -- proto: ComputerCrewMonitoring - entities: - - uid: 593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1668 - - uid: 608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 1668 - - uid: 656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1668 -- proto: ComputerCriminalRecords - entities: - - uid: 498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1668 - - uid: 591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1668 - - uid: 653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 1668 - - uid: 813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-13.5 - parent: 1668 - - uid: 2426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1668 - - uid: 3258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1668 -- proto: ComputerId - entities: - - uid: 589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 1668 - - uid: 651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1668 - - uid: 3448 - components: - - type: Transform - pos: -18.5,12.5 - parent: 1668 - - uid: 3907 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1668 -- proto: ComputerMedicalRecords - entities: - - uid: 657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 1668 -- proto: ComputerPalletConsole - entities: - - uid: 6930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 1668 -- proto: ComputerPowerMonitoring - entities: - - uid: 3256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1668 - - uid: 3573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1668 - - uid: 4971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 1668 -- proto: ComputerShuttleCargo - entities: - - uid: 3719 - components: - - type: Transform - pos: -12.5,17.5 - parent: 1668 -- proto: ComputerStationRecords - entities: - - uid: 3720 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1668 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 1668 - - uid: 654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 1668 - - uid: 814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 1668 - - uid: 2250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1668 - - uid: 2745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1668 -- proto: ComputerTelevision - entities: - - uid: 3715 - components: - - type: Transform - pos: -14.5,12.5 - parent: 1668 -- proto: ConveyorBelt - entities: - - uid: 1576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - - uid: 1577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - - uid: 1578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - - uid: 1579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - - uid: 1580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - - uid: 1581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - - uid: 1582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - - uid: 1583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - - uid: 1584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - - uid: 1585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - - uid: 1586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - - uid: 1587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - - uid: 5902 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5906 - - uid: 5903 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5906 - - uid: 5904 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5906 -- proto: CrateArmoryLaser - entities: - - uid: 6533 - components: - - type: Transform - pos: -7.5,22.5 - parent: 1668 -- proto: CrateArmoryShotgun - entities: - - uid: 6532 - components: - - type: Transform - pos: -9.5,24.5 - parent: 1668 -- proto: CrateArmorySMG - entities: - - uid: 6531 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1668 -- proto: CrateEmergencyRadiation - entities: - - uid: 5379 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 1668 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 792 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 1668 -- proto: CrateEngineeringCableBulk - entities: - - uid: 5328 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1668 -- proto: CrateEngineeringCableLV - entities: - - uid: 5380 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 1668 -- proto: CrateEngineeringCableMV - entities: - - uid: 5381 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 -- proto: CrateEngineeringShuttle - entities: - - uid: 2144 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 1668 -- proto: CrateFoodPizza - entities: - - uid: 6528 - components: - - type: Transform - pos: -8.5,22.5 - parent: 1668 -- proto: CrateFunPlushie - entities: - - uid: 6530 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1668 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6527 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1668 -- proto: CrateMedicalSurgery - entities: - - uid: 629 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1668 -- proto: CrateMousetrapBoxes - entities: - - uid: 6529 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1668 -- proto: CrowbarRed - entities: - - uid: 515 - components: - - type: Transform - pos: 20.552847,-10.547255 - parent: 1668 - - uid: 1451 - components: - - type: Transform - pos: 14.506881,6.5434804 - parent: 1668 - - uid: 2225 - components: - - type: Transform - pos: -11.468896,17.467602 - parent: 1668 - - uid: 2467 - components: - - type: Transform - pos: 22.533863,23.410753 - parent: 1668 - - uid: 2870 - components: - - type: Transform - pos: 4.561338,19.119057 - parent: 1668 - - uid: 3899 - components: - - type: Transform - pos: -12.531932,-6.3835163 - parent: 1668 - - uid: 5347 - components: - - type: Transform - pos: 21.478167,-17.501467 - parent: 1668 -- proto: CryogenicSleepUnit - entities: - - uid: 3154 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1668 - - uid: 3633 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 1668 -- proto: CryoPod - entities: - - uid: 6642 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: DeathsquadPDA - entities: - - uid: 298 - components: - - type: Transform - pos: 2.579019,31.366188 - parent: 1668 - - uid: 579 - components: - - type: Transform - pos: 16.399555,31.459938 - parent: 1668 - - uid: 820 - components: - - type: Transform - pos: 16.587055,31.366188 - parent: 1668 - - uid: 834 - components: - - type: Transform - pos: 2.407144,31.491188 - parent: 1668 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 2914 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1668 - - uid: 3123 - components: - - type: Transform - pos: 19.5,6.5 - parent: 1668 - - uid: 3133 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 1668 - - uid: 3139 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1668 - - uid: 6644 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 1668 -- proto: DeployableBarrier - entities: - - uid: 3144 - components: - - type: Transform - pos: 6.5,29.5 - parent: 1668 - - uid: 3145 - components: - - type: Transform - pos: 5.5,29.5 - parent: 1668 - - uid: 3146 - components: - - type: Transform - pos: 12.5,29.5 - parent: 1668 - - uid: 3147 - components: - - type: Transform - pos: 13.5,29.5 - parent: 1668 -- proto: DiceBag - entities: - - uid: 3763 - components: - - type: Transform - pos: -24.498522,4.631134 - parent: 1668 -- proto: DisposalBend - entities: - - uid: 2059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1668 - - uid: 2073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - - uid: 2074 - components: - - type: Transform - pos: -5.5,10.5 - parent: 1668 - - uid: 2076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - - uid: 2086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - - uid: 2091 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1668 - - uid: 2093 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 1668 - - uid: 2117 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 1668 - - uid: 2118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 1668 - - uid: 2125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1668 - - uid: 2129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - - uid: 2179 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 2180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1668 - - uid: 3639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 1668 - - uid: 3852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - - uid: 4649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - - uid: 4650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 1668 - - uid: 4925 - components: - - type: Transform - pos: -11.5,-22.5 - parent: 1668 - - uid: 4949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1668 - - uid: 4951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 1668 - - uid: 4952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1668 - - uid: 5897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 1668 -- proto: DisposalJunction - entities: - - uid: 2082 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1668 - - uid: 4948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 1668 -- proto: DisposalJunctionFlipped - entities: - - uid: 2080 - components: - - type: Transform - pos: -5.5,3.5 - parent: 1668 - - uid: 2081 - components: - - type: Transform - pos: -5.5,0.5 - parent: 1668 - - uid: 2120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1668 - - uid: 2134 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1668 - - uid: 3640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1668 - - uid: 4927 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 1668 -- proto: DisposalPipe - entities: - - uid: 2060 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1668 - - uid: 2061 - components: - - type: Transform - pos: -10.5,12.5 - parent: 1668 - - uid: 2062 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1668 - - uid: 2063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - - uid: 2064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - - uid: 2065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - - uid: 2066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1668 - - uid: 2067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 1668 - - uid: 2068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 1668 - - uid: 2069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 1668 - - uid: 2070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1668 - - uid: 2071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1668 - - uid: 2072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1668 - - uid: 2077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - - uid: 2078 - components: - - type: Transform - pos: -5.5,1.5 - parent: 1668 - - uid: 2079 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1668 - - uid: 2083 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 1668 - - uid: 2084 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 1668 - - uid: 2085 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 1668 - - uid: 2087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - - uid: 2088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - - uid: 2089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - - uid: 2090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - - uid: 2094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1668 - - uid: 2095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 1668 - - uid: 2096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 1668 - - uid: 2097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 1668 - - uid: 2098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 1668 - - uid: 2099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 1668 - - uid: 2100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 1668 - - uid: 2101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 1668 - - uid: 2102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 1668 - - uid: 2103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 1668 - - uid: 2104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 1668 - - uid: 2105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 1668 - - uid: 2106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 1668 - - uid: 2107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1668 - - uid: 2108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1668 - - uid: 2109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1668 - - uid: 2110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1668 - - uid: 2111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1668 - - uid: 2112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 1668 - - uid: 2113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1668 - - uid: 2114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1668 - - uid: 2115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1668 - - uid: 2116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1668 - - uid: 2121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - - uid: 2122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - - uid: 2123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - - uid: 2124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - - uid: 2126 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - uid: 2127 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 2128 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 1668 - - uid: 2130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1668 - - uid: 2131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1668 - - uid: 2132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1668 - - uid: 2133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1668 - - uid: 2135 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 2136 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - uid: 2137 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 2138 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 2139 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 2140 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 2141 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 2181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1668 - - uid: 2182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1668 - - uid: 2183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1668 - - uid: 2184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1668 - - uid: 2185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1668 - - uid: 2186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1668 - - uid: 2187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1668 - - uid: 2188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - - uid: 2189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - - uid: 2190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - - uid: 3641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 1668 - - uid: 3642 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1668 - - uid: 3643 - components: - - type: Transform - pos: -21.5,0.5 - parent: 1668 - - uid: 3644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - - uid: 3645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - - uid: 3646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - - uid: 3647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - - uid: 3648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - - uid: 3649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - - uid: 3650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - - uid: 3651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - - uid: 3652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - - uid: 3653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - - uid: 3654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - - uid: 3655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - uid: 3656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - - uid: 3657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - uid: 3658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1668 - - uid: 3844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 1668 - - uid: 3845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1668 - - uid: 3846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 1668 - - uid: 3847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1668 - - uid: 3848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1668 - - uid: 3849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 1668 - - uid: 3850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 1668 - - uid: 3851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 1668 - - uid: 4926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - - uid: 4928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 1668 - - uid: 4929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 1668 - - uid: 4930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1668 - - uid: 4931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1668 - - uid: 4932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1668 - - uid: 4933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1668 - - uid: 4934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1668 - - uid: 4935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - - uid: 4936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - - uid: 4937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - - uid: 4938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - - uid: 4939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - - uid: 4940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - - uid: 4941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - - uid: 4942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - - uid: 4943 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1668 - - uid: 4944 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1668 - - uid: 4945 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1668 - - uid: 4946 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 4947 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 4953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - - uid: 4954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1668 - - uid: 4955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 1668 - - uid: 4956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 1668 - - uid: 4957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 1668 - - uid: 4958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - - uid: 4959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - - uid: 4960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - - uid: 4961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - - uid: 4962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - - uid: 4963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - - uid: 4964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - - uid: 4965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - - uid: 5785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - - uid: 5888 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 1668 - - uid: 5889 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - uid: 5890 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1668 - - uid: 5891 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - uid: 5892 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1668 - - uid: 5893 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - uid: 5894 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - uid: 5895 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 5896 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 5898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - - uid: 5899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 1668 - - uid: 5900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 1668 -- proto: DisposalTrunk - entities: - - uid: 2058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1668 - - uid: 2075 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 2092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1668 - - uid: 2119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - - uid: 2178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1668 - - uid: 3638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1668 - - uid: 3843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 1668 - - uid: 4924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 1668 - - uid: 4950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 1668 - - uid: 5901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 1668 -- proto: DisposalUnit - entities: - - uid: 531 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 1668 - - uid: 630 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1668 - - uid: 836 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 1668 - - uid: 1407 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 1663 - components: - - type: Transform - pos: -9.5,14.5 - parent: 1668 - - uid: 2177 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1668 - - uid: 3462 - components: - - type: Transform - pos: -19.5,2.5 - parent: 1668 - - uid: 3842 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 1668 - - uid: 4923 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 1668 -- proto: Dresser - entities: - - uid: 3435 - components: - - type: Transform - pos: -14.5,8.5 - parent: 1668 -- proto: DrinkFlask - entities: - - uid: 3773 - components: - - type: Transform - pos: -11.533806,6.6228595 - parent: 1668 -- proto: DrinkGoldenCup - entities: - - uid: 3769 - components: - - type: Transform - pos: -26.535545,11.773157 - parent: 1668 - - uid: 4375 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4376 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1668 -- proto: DrinkHotCoffee - entities: - - uid: 5464 - components: - - type: Transform - pos: 16.572073,-29.470444 - parent: 1668 -- proto: DrinkMugHeart - entities: - - uid: 1399 - components: - - type: Transform - pos: 2.5713959,-11.619784 - parent: 1668 -- proto: DrinkShaker - entities: - - uid: 6621 - components: - - type: Transform - pos: 10.4809675,-21.408005 - parent: 1668 -- proto: DrinkShotGlass - entities: - - uid: 3889 - components: - - type: Transform - pos: -24.572554,-3.3475308 - parent: 1668 - - uid: 3890 - components: - - type: Transform - pos: -24.400679,-3.4725308 - parent: 1668 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 3875 - components: - - type: Transform - pos: -27.52259,-4.144406 - parent: 1668 -- proto: EmergencyLight - entities: - - uid: 3155 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3158 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3159 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3160 - components: - - type: Transform - pos: 29.5,23.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3161 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3165 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3166 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3168 - components: - - type: Transform - pos: -2.5,16.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EpinephrineChemistryBottle - entities: - - uid: 1462 - components: - - type: Transform - pos: 13.808971,-12.626007 - parent: 1668 - - uid: 1463 - components: - - type: Transform - pos: 13.818524,-12.297882 - parent: 1668 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 628 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 1668 - - uid: 2237 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1668 - - uid: 3908 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 1668 - - uid: 3910 - components: - - type: Transform - pos: -9.5,-5.5 - parent: 1668 - - uid: 3911 - components: - - type: Transform - pos: -13.5,10.5 - parent: 1668 - - uid: 3912 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1668 - - uid: 3913 - components: - - type: Transform - pos: 15.5,15.5 - parent: 1668 - - uid: 3914 - components: - - type: Transform - pos: 21.5,17.5 - parent: 1668 - - uid: 3915 - components: - - type: Transform - pos: 13.5,18.5 - parent: 1668 - - uid: 3916 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1668 - - uid: 3917 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 1668 - - uid: 3918 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 1668 - - uid: 4150 - components: - - type: Transform - pos: -28.5,1.5 - parent: 1668 -- proto: FaxMachineCentcom - entities: - - uid: 76 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 1668 - - type: FaxMachine - name: CentComm -- proto: filingCabinet - entities: - - uid: 594 - components: - - type: Transform - pos: 10.5,6.5 - parent: 1668 - - uid: 595 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1668 - - uid: 650 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1668 - - uid: 816 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 1668 - - uid: 3840 - components: - - type: Transform - pos: -24.5,-9.5 - parent: 1668 - - uid: 3841 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 1668 -- proto: filingCabinetDrawer - entities: - - uid: 1628 - components: - - type: Transform - pos: -12.5,12.5 - parent: 1668 - - uid: 1660 - components: - - type: Transform - pos: -11.5,14.5 - parent: 1668 -- proto: filingCabinetTall - entities: - - uid: 1626 - components: - - type: Transform - pos: -12.5,8.5 - parent: 1668 - - uid: 1627 - components: - - type: Transform - pos: -11.5,8.5 - parent: 1668 - - uid: 1661 - components: - - type: Transform - pos: -9.5,17.5 - parent: 1668 -- proto: FireAxeCabinetFilled - entities: - - uid: 6647 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 1668 -- proto: FirelockGlass - entities: - - uid: 15 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1668 - - uid: 16 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 17 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 1668 - - uid: 18 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 1668 - - uid: 19 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1668 - - uid: 20 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1668 - - uid: 21 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1668 - - uid: 22 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1668 - - uid: 23 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1668 - - uid: 24 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1668 - - uid: 25 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1668 - - uid: 26 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1668 - - uid: 27 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1668 - - uid: 28 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 1668 - - uid: 29 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 1668 - - uid: 125 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1668 - - uid: 131 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 1668 - - uid: 492 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 1668 - - uid: 493 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 1668 - - uid: 495 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 1668 - - uid: 559 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 560 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 733 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 1668 - - uid: 735 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 1668 - - uid: 772 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1668 - - uid: 773 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 1668 - - uid: 1619 - components: - - type: Transform - pos: -4.5,9.5 - parent: 1668 - - uid: 1620 - components: - - type: Transform - pos: -4.5,10.5 - parent: 1668 - - uid: 4299 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 1668 - - uid: 4404 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 1668 - - uid: 4405 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 1668 - - uid: 4406 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1668 - - uid: 4407 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1668 - - uid: 4408 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 1668 - - uid: 4409 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 1668 - - uid: 4630 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 1668 - - uid: 4631 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 1668 - - uid: 4632 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 1668 - - uid: 4633 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1668 - - uid: 4754 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 4968 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1668 - - uid: 4969 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1668 - - uid: 5045 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 1668 - - uid: 5046 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 5047 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 1668 - - uid: 5222 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 1668 - - uid: 5224 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 1668 - - uid: 5233 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 1668 - - uid: 5254 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 1668 - - uid: 5255 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 1668 - - uid: 5256 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 1668 - - uid: 5876 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 1668 - - uid: 5877 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - uid: 6239 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 1668 - - uid: 6244 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 1668 - - uid: 6245 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 1668 - - uid: 6267 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 1668 - - uid: 6268 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 1668 - - uid: 6269 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 1668 -- proto: Fireplace - entities: - - uid: 3393 - components: - - type: Transform - pos: -23.5,12.5 - parent: 1668 -- proto: Flash - entities: - - uid: 1452 - components: - - type: Transform - pos: 10.538131,4.4341054 - parent: 1668 - - uid: 3748 - components: - - type: Transform - pos: -26.453917,8.594473 - parent: 1668 - - uid: 4698 - components: - - type: Transform - pos: 24.48021,-8.554767 - parent: 1668 -- proto: FloorDrain - entities: - - uid: 3421 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6622 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6623 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6718 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6876 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - type: Fixtures - fixtures: {} -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 2227 - components: - - type: Transform - pos: -14.517971,17.62628 - parent: 1668 - - uid: 3905 - components: - - type: Transform - pos: -13.406932,-7.1178913 - parent: 1668 -- proto: FoodBoxDonut - entities: - - uid: 1400 - components: - - type: Transform - pos: -3.5536041,-11.463534 - parent: 1668 - - uid: 2496 - components: - - type: Transform - pos: 28.583382,10.652384 - parent: 1668 - - uid: 3745 - components: - - type: Transform - pos: -23.474928,11.563223 - parent: 1668 - - uid: 3752 - components: - - type: Transform - pos: -19.463516,4.614471 - parent: 1668 - - uid: 3874 - components: - - type: Transform - pos: -27.444466,-3.3787808 - parent: 1668 - - uid: 3891 - components: - - type: Transform - pos: -22.447554,-6.441281 - parent: 1668 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 4592 - components: - - type: Transform - pos: -11.611271,-26.1594 - parent: 1668 - - uid: 4593 - components: - - type: Transform - pos: -11.470646,-26.268776 - parent: 1668 -- proto: FoodCondimentPacketPepper - entities: - - uid: 4619 - components: - - type: Transform - pos: 2.4944715,-29.54472 - parent: 1668 -- proto: FoodCondimentPacketSalt - entities: - - uid: 4618 - components: - - type: Transform - pos: 2.4007215,-29.404095 - parent: 1668 -- proto: FoodMeat - entities: - - uid: 5459 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5460 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5461 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5462 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5848 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPlateSmall - entities: - - uid: 6627 - components: - - type: Transform - pos: 0.5503339,-25.456686 - parent: 1668 - - uid: 6628 - components: - - type: Transform - pos: 0.5503339,-25.394186 - parent: 1668 - - uid: 6629 - components: - - type: Transform - pos: 0.5503339,-25.316061 - parent: 1668 -- proto: FoodSaladColeslaw - entities: - - uid: 6937 - components: - - type: Transform - pos: 19.664907,20.706526 - parent: 1668 -- proto: FoodTartGapple - entities: - - uid: 4380 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 1668 -- proto: ForkPlastic - entities: - - uid: 4200 - components: - - type: Transform - pos: 0.20438054,-25.436565 - parent: 1668 - - uid: 4252 - components: - - type: Transform - pos: 0.20438054,-25.436565 - parent: 1668 - - uid: 5451 - components: - - type: Transform - pos: 0.20438054,-25.436565 - parent: 1668 -- proto: GasFilter - entities: - - uid: 6652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasMinerNitrogenStation - entities: - - uid: 4715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GasMinerOxygenStation - entities: - - uid: 4703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GasMixer - entities: - - uid: 5070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GasPassiveVent - entities: - - uid: 3430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 5399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 6141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 6312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GasPipeBend - entities: - - uid: 3660 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 1668 - - uid: 3674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 1668 - - uid: 3675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1668 - - uid: 3676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1668 - - uid: 3684 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1668 - - uid: 3686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1668 - - uid: 4712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-32.5 - parent: 1668 - - uid: 4714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 1668 - - uid: 5067 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1668 - - uid: 5069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 1668 - - uid: 5389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5513 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5540 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5598 - components: - - type: Transform - pos: 4.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5661 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6311 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 1668 - - uid: 6656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 1668 - - uid: 6657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1668 - - uid: 6660 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6664 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6679 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6681 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6712 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeFourway - entities: - - uid: 3678 - components: - - type: Transform - pos: -21.5,9.5 - parent: 1668 - - uid: 5492 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5571 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6310 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 3664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 1668 - - uid: 3665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1668 - - uid: 3666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - - uid: 3667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1668 - - uid: 3668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - - uid: 3669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1668 - - uid: 3672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 1668 - - uid: 3673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 1668 - - uid: 3677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1668 - - uid: 3679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 - - uid: 3680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1668 - - uid: 3681 - components: - - type: Transform - pos: -18.5,10.5 - parent: 1668 - - uid: 3682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1668 - - uid: 3683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 1668 - - uid: 3685 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1668 - - uid: 3690 - components: - - type: Transform - pos: -21.5,10.5 - parent: 1668 - - uid: 3691 - components: - - type: Transform - pos: -21.5,11.5 - parent: 1668 - - uid: 3692 - components: - - type: Transform - pos: -21.5,12.5 - parent: 1668 - - uid: 3693 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1668 - - uid: 4702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 1668 - - uid: 4711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 1668 - - uid: 4713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 1668 - - uid: 5068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 1668 - - uid: 5387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - - uid: 5418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5466 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5467 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5468 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5469 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5486 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5487 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5488 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5489 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5490 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5491 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5504 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5545 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5546 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5547 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5548 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5549 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5550 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5561 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5562 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5586 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5587 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5588 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5589 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5590 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5591 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5618 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5619 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5620 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5621 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5622 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5623 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5653 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5654 - components: - - type: Transform - pos: -30.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5655 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5656 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5657 - components: - - type: Transform - pos: -30.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5662 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5672 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5673 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5674 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5675 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5676 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5677 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5680 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5701 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5702 - components: - - type: Transform - pos: -10.5,18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5703 - components: - - type: Transform - pos: -10.5,19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5704 - components: - - type: Transform - pos: -10.5,20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5705 - components: - - type: Transform - pos: -10.5,21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5706 - components: - - type: Transform - pos: -10.5,22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5708 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5709 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5710 - components: - - type: Transform - pos: -10.5,26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5718 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5719 - components: - - type: Transform - pos: -10.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5720 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5721 - components: - - type: Transform - pos: -10.5,14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5722 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5745 - components: - - type: Transform - pos: 11.5,13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5746 - components: - - type: Transform - pos: 11.5,14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5747 - components: - - type: Transform - pos: 11.5,15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5748 - components: - - type: Transform - pos: 11.5,16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5749 - components: - - type: Transform - pos: 11.5,17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5750 - components: - - type: Transform - pos: 11.5,18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5751 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5752 - components: - - type: Transform - pos: 11.5,20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5753 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5754 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5755 - components: - - type: Transform - pos: 11.5,23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5757 - components: - - type: Transform - pos: 28.5,13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5758 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5759 - components: - - type: Transform - pos: 28.5,15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5760 - components: - - type: Transform - pos: 28.5,16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5761 - components: - - type: Transform - pos: 28.5,17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5762 - components: - - type: Transform - pos: 28.5,18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5790 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5791 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5792 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5793 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5794 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5796 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - - uid: 6138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1668 - - uid: 6139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 1668 - - uid: 6226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6327 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6328 - components: - - type: Transform - pos: 4.5,-35.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6329 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6330 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6331 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6332 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6333 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6674 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6675 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6676 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6677 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 1668 - - uid: 6714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 3671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1668 - - uid: 5465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5473 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5542 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5572 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5592 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5627 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5643 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5679 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5698 - components: - - type: Transform - pos: -6.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5772 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5805 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5815 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1668 - - uid: 6653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1668 - - uid: 6654 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 6708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPort - entities: - - uid: 208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 3577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 3659 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 3662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 6655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 6705 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6706 - components: - - type: Transform - pos: 17.5,-31.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPressurePump - entities: - - uid: 3663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 5395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 6641 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GasVentPump - entities: - - uid: 3687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 3688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 3689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 3694 - components: - - type: Transform - pos: -21.5,14.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 5474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5475 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5506 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5521 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5538 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5658 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5666 - components: - - type: Transform - pos: -6.5,0.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5667 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5671 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5742 - components: - - type: Transform - pos: 10.5,13.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,11.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5744 - components: - - type: Transform - pos: 18.5,13.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5756 - components: - - type: Transform - pos: 11.5,24.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5763 - components: - - type: Transform - pos: 28.5,19.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-31.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6334 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 6140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GeneratorBasic15kW - entities: - - uid: 5176 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5177 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5178 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1668 - - uid: 5179 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 1668 - - uid: 5180 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 1668 - - uid: 5181 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 1668 - - uid: 5455 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1668 - - uid: 5456 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 1668 - - uid: 6596 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 6597 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 6598 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1668 - - uid: 6599 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 1668 - - uid: 6635 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 6636 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 -- proto: GeneratorRTG - entities: - - uid: 5182 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5183 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 1668 - - uid: 5184 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 -- proto: GravityGenerator - entities: - - uid: 1140 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 1668 -- proto: Grille - entities: - - uid: 30 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1668 - - uid: 31 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1668 - - uid: 32 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1668 - - uid: 33 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 1668 - - uid: 34 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1668 - - uid: 35 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1668 - - uid: 36 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1668 - - uid: 37 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1668 - - uid: 38 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1668 - - uid: 39 - components: - - type: Transform - pos: -1.5,2.5 - parent: 1668 - - uid: 40 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1668 - - uid: 41 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1668 - - uid: 42 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1668 - - uid: 43 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1668 - - uid: 44 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 1668 - - uid: 45 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 1668 - - uid: 46 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1668 - - uid: 47 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1668 - - uid: 80 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1668 - - uid: 81 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1668 - - uid: 82 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1668 - - uid: 83 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1668 - - uid: 84 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1668 - - uid: 85 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1668 - - uid: 105 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 106 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 107 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 108 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 132 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1668 - - uid: 133 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1668 - - uid: 154 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1668 - - uid: 155 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 1668 - - uid: 156 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1668 - - uid: 157 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1668 - - uid: 158 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 1668 - - uid: 159 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 1668 - - uid: 160 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1668 - - uid: 186 - components: - - type: Transform - pos: 16.5,3.5 - parent: 1668 - - uid: 189 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 1668 - - uid: 191 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 1668 - - uid: 192 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 1668 - - uid: 193 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 1668 - - uid: 194 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1668 - - uid: 195 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 1668 - - uid: 196 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 1668 - - uid: 197 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 1668 - - uid: 198 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 1668 - - uid: 199 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 1668 - - uid: 200 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1668 - - uid: 201 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 1668 - - uid: 202 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 1668 - - uid: 203 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1668 - - uid: 212 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 1668 - - uid: 223 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1668 - - uid: 224 - components: - - type: Transform - pos: 13.5,2.5 - parent: 1668 - - uid: 225 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1668 - - uid: 238 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1668 - - uid: 239 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1668 - - uid: 240 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 1668 - - uid: 241 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1668 - - uid: 242 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 1668 - - uid: 245 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1668 - - uid: 246 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1668 - - uid: 278 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1668 - - uid: 279 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1668 - - uid: 280 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1668 - - uid: 281 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1668 - - uid: 282 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1668 - - uid: 283 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1668 - - uid: 284 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1668 - - uid: 285 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1668 - - uid: 286 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1668 - - uid: 287 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1668 - - uid: 288 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1668 - - uid: 289 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1668 - - uid: 290 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1668 - - uid: 291 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1668 - - uid: 292 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1668 - - uid: 304 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 1668 - - uid: 305 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 1668 - - uid: 306 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1668 - - uid: 311 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1668 - - uid: 312 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 313 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 314 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 341 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1668 - - uid: 342 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1668 - - uid: 343 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1668 - - uid: 344 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 1668 - - uid: 345 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1668 - - uid: 448 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1668 - - uid: 449 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 1668 - - uid: 450 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 1668 - - uid: 451 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1668 - - uid: 452 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1668 - - uid: 453 - components: - - type: Transform - pos: 35.5,5.5 - parent: 1668 - - uid: 454 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 1668 - - uid: 455 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 1668 - - uid: 456 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 1668 - - uid: 457 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 1668 - - uid: 458 - components: - - type: Transform - pos: 31.5,6.5 - parent: 1668 - - uid: 459 - components: - - type: Transform - pos: 28.5,7.5 - parent: 1668 - - uid: 460 - components: - - type: Transform - pos: 24.5,7.5 - parent: 1668 - - uid: 461 - components: - - type: Transform - pos: 21.5,6.5 - parent: 1668 - - uid: 473 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 1668 - - uid: 474 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1668 - - uid: 475 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 1668 - - uid: 476 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 1668 - - uid: 477 - components: - - type: Transform - pos: 34.5,0.5 - parent: 1668 - - uid: 478 - components: - - type: Transform - pos: 33.5,1.5 - parent: 1668 - - uid: 479 - components: - - type: Transform - pos: 33.5,3.5 - parent: 1668 - - uid: 480 - components: - - type: Transform - pos: 33.5,5.5 - parent: 1668 - - uid: 672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - uid: 673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - uid: 674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - - uid: 675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - - uid: 678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - - uid: 679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - - uid: 680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - - uid: 681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - - uid: 702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - - uid: 703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - - uid: 704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1668 - - uid: 725 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1668 - - uid: 742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - - uid: 743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - - uid: 765 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 1668 - - uid: 766 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 1668 - - uid: 767 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 1668 - - uid: 768 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 1668 - - uid: 769 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 1668 - - uid: 782 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 1668 - - uid: 783 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 1668 - - uid: 784 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1668 - - uid: 785 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1668 - - uid: 845 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 1668 - - uid: 846 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 1668 - - uid: 847 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 1668 - - uid: 848 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1668 - - uid: 849 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1668 - - uid: 850 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1668 - - uid: 853 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1668 - - uid: 855 - components: - - type: Transform - pos: 2.5,17.5 - parent: 1668 - - uid: 1424 - components: - - type: Transform - pos: -10.5,32.5 - parent: 1668 - - uid: 1425 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 1668 - - uid: 1467 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1668 - - uid: 1488 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 1489 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1668 - - uid: 1513 - components: - - type: Transform - pos: -13.5,18.5 - parent: 1668 - - uid: 1514 - components: - - type: Transform - pos: -12.5,18.5 - parent: 1668 - - uid: 1515 - components: - - type: Transform - pos: -16.5,17.5 - parent: 1668 - - uid: 1516 - components: - - type: Transform - pos: -16.5,18.5 - parent: 1668 - - uid: 1517 - components: - - type: Transform - pos: -15.5,18.5 - parent: 1668 - - uid: 1594 - components: - - type: Transform - pos: -14.5,20.5 - parent: 1668 - - uid: 1595 - components: - - type: Transform - pos: -14.5,21.5 - parent: 1668 - - uid: 1596 - components: - - type: Transform - pos: -14.5,22.5 - parent: 1668 - - uid: 1597 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - uid: 1598 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1668 - - uid: 1599 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1668 - - uid: 1600 - components: - - type: Transform - pos: -16.5,26.5 - parent: 1668 - - uid: 1601 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1668 - - uid: 1602 - components: - - type: Transform - pos: -14.5,26.5 - parent: 1668 - - uid: 1603 - components: - - type: Transform - pos: -16.5,29.5 - parent: 1668 - - uid: 1604 - components: - - type: Transform - pos: -15.5,29.5 - parent: 1668 - - uid: 1605 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - uid: 1606 - components: - - type: Transform - pos: -14.5,30.5 - parent: 1668 - - uid: 1667 - components: - - type: Transform - pos: -8.5,32.5 - parent: 1668 - - uid: 1669 - components: - - type: Transform - pos: -6.5,32.5 - parent: 1668 - - uid: 1670 - components: - - type: Transform - pos: -12.5,32.5 - parent: 1668 - - uid: 2002 - components: - - type: Transform - pos: 5.5,10.5 - parent: 1668 - - uid: 2003 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2004 - components: - - type: Transform - pos: 5.5,14.5 - parent: 1668 - - uid: 2246 - components: - - type: Transform - pos: 15.5,14.5 - parent: 1668 - - uid: 2247 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1668 - - uid: 2248 - components: - - type: Transform - pos: 15.5,10.5 - parent: 1668 - - uid: 2284 - components: - - type: Transform - pos: 23.5,14.5 - parent: 1668 - - uid: 2285 - components: - - type: Transform - pos: 25.5,14.5 - parent: 1668 - - uid: 2286 - components: - - type: Transform - pos: 26.5,14.5 - parent: 1668 - - uid: 2287 - components: - - type: Transform - pos: 27.5,14.5 - parent: 1668 - - uid: 2288 - components: - - type: Transform - pos: 29.5,14.5 - parent: 1668 - - uid: 2289 - components: - - type: Transform - pos: 30.5,14.5 - parent: 1668 - - uid: 2290 - components: - - type: Transform - pos: 31.5,14.5 - parent: 1668 - - uid: 2291 - components: - - type: Transform - pos: 33.5,14.5 - parent: 1668 - - uid: 2346 - components: - - type: Transform - pos: 24.5,15.5 - parent: 1668 - - uid: 2347 - components: - - type: Transform - pos: 24.5,16.5 - parent: 1668 - - uid: 2348 - components: - - type: Transform - pos: 24.5,17.5 - parent: 1668 - - uid: 2349 - components: - - type: Transform - pos: 24.5,19.5 - parent: 1668 - - uid: 2510 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1668 - - uid: 2511 - components: - - type: Transform - pos: 10.5,17.5 - parent: 1668 - - uid: 2512 - components: - - type: Transform - pos: 10.5,18.5 - parent: 1668 - - uid: 2513 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1668 - - uid: 2546 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1668 - - uid: 2557 - components: - - type: Transform - pos: 14.5,21.5 - parent: 1668 - - uid: 2754 - components: - - type: Transform - pos: 4.5,24.5 - parent: 1668 - - uid: 2756 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1668 - - uid: 2758 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1668 - - uid: 2772 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1668 - - uid: 2792 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 2808 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1668 - - uid: 2809 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1668 - - uid: 2810 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1668 - - uid: 2811 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1668 - - uid: 2815 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 2816 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1668 - - uid: 2817 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1668 - - uid: 2818 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1668 - - uid: 2819 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1668 - - uid: 2860 - components: - - type: Transform - pos: 4.5,27.5 - parent: 1668 - - uid: 2861 - components: - - type: Transform - pos: 14.5,27.5 - parent: 1668 - - uid: 2880 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1668 - - uid: 2887 - components: - - type: Transform - pos: 5.5,30.5 - parent: 1668 - - uid: 2907 - components: - - type: Transform - pos: 7.5,7.5 - parent: 1668 - - uid: 3134 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1668 - - uid: 3141 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 1668 - - uid: 3247 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 1668 - - uid: 3387 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 3388 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 - - uid: 3389 - components: - - type: Transform - pos: -27.5,11.5 - parent: 1668 - - uid: 3390 - components: - - type: Transform - pos: -27.5,12.5 - parent: 1668 - - uid: 3391 - components: - - type: Transform - pos: -27.5,8.5 - parent: 1668 - - uid: 3392 - components: - - type: Transform - pos: -27.5,9.5 - parent: 1668 - - uid: 3436 - components: - - type: Transform - pos: -13.5,2.5 - parent: 1668 - - uid: 3437 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1668 - - uid: 3438 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1668 - - uid: 3439 - components: - - type: Transform - pos: -12.5,1.5 - parent: 1668 - - uid: 3440 - components: - - type: Transform - pos: -14.5,1.5 - parent: 1668 - - uid: 3441 - components: - - type: Transform - pos: -15.5,1.5 - parent: 1668 - - uid: 3442 - components: - - type: Transform - pos: -16.5,1.5 - parent: 1668 - - uid: 3936 - components: - - type: Transform - pos: -30.5,7.5 - parent: 1668 - - uid: 3937 - components: - - type: Transform - pos: -32.5,7.5 - parent: 1668 - - uid: 3938 - components: - - type: Transform - pos: -33.5,7.5 - parent: 1668 - - uid: 3943 - components: - - type: Transform - pos: -34.5,6.5 - parent: 1668 - - uid: 3944 - components: - - type: Transform - pos: -34.5,5.5 - parent: 1668 - - uid: 3945 - components: - - type: Transform - pos: -34.5,4.5 - parent: 1668 - - uid: 3946 - components: - - type: Transform - pos: -34.5,3.5 - parent: 1668 - - uid: 3979 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 3980 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 1668 - - uid: 3981 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 1668 - - uid: 3982 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 1668 - - uid: 3983 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 1668 - - uid: 3984 - components: - - type: Transform - pos: -32.5,1.5 - parent: 1668 - - uid: 3985 - components: - - type: Transform - pos: -34.5,1.5 - parent: 1668 - - uid: 4201 - components: - - type: Transform - pos: 15.5,8.5 - parent: 1668 - - uid: 4226 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 1668 - - uid: 4227 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 1668 - - uid: 4228 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 1668 - - uid: 4229 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 1668 - - uid: 4264 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 1668 - - uid: 4317 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1668 - - uid: 4318 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1668 - - uid: 4319 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1668 - - uid: 4320 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 1668 - - uid: 4321 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 1668 - - uid: 4322 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 1668 - - uid: 4323 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1668 - - uid: 4324 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 1668 - - uid: 4325 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 1668 - - uid: 4326 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 1668 - - uid: 4327 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 1668 - - uid: 4328 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 1668 - - uid: 4366 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 1668 - - uid: 4602 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 1668 - - uid: 4671 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 1668 - - uid: 4672 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1668 - - uid: 4673 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 1668 - - uid: 4750 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 1668 - - uid: 4751 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 1668 - - uid: 5025 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 - - uid: 5064 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 5065 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 5114 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - uid: 5115 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - uid: 5116 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - uid: 5117 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - uid: 5118 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - uid: 5169 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1668 - - uid: 5170 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 1668 - - uid: 5320 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 1668 - - uid: 5412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - - uid: 5781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1668 - - uid: 5782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1668 - - uid: 5783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1668 - - uid: 5922 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 1668 - - uid: 5923 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 1668 - - uid: 5924 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 1668 - - uid: 5925 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 1668 - - uid: 5926 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 1668 - - uid: 5927 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 1668 - - uid: 5949 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 5950 - components: - - type: Transform - pos: -17.5,-25.5 - parent: 1668 - - uid: 5983 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 1668 - - uid: 5984 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1668 - - uid: 5985 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 1668 - - uid: 5986 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 1668 - - uid: 5987 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 - - uid: 5988 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 1668 - - uid: 5989 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 1668 - - uid: 5993 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 1668 - - uid: 5994 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 1668 - - uid: 5995 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 1668 - - uid: 6160 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1668 - - uid: 6161 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 1668 - - uid: 6162 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 1668 - - uid: 6163 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1668 - - uid: 6164 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 1668 - - uid: 6165 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 1668 - - uid: 6280 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - uid: 6281 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1668 - - uid: 6301 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 1668 - - uid: 6302 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 1668 - - uid: 6303 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 1668 - - uid: 6304 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1668 - - uid: 6305 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 1668 - - uid: 6306 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 1668 - - uid: 6307 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 1668 - - uid: 6505 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 1668 - - uid: 6575 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 1668 - - uid: 6576 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 1668 - - uid: 6768 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 1668 - - uid: 6769 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 1668 - - uid: 6779 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1668 -- proto: GroundTobacco - entities: - - uid: 3755 - components: - - type: Transform - pos: -18.558027,8.843213 - parent: 1668 - - uid: 3756 - components: - - type: Transform - pos: -18.370527,8.827588 - parent: 1668 -- proto: GunSafeShotgunKammerer - entities: - - uid: 6526 - components: - - type: Transform - pos: 10.5,30.5 - parent: 1668 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 2923 - components: - - type: Transform - pos: 8.5,30.5 - parent: 1668 -- proto: Handcuffs - entities: - - uid: 3751 - components: - - type: Transform - pos: -25.604141,8.625723 - parent: 1668 -- proto: HandheldCrewMonitor - entities: - - uid: 1461 - components: - - type: Transform - pos: 13.504195,-12.438507 - parent: 1668 -- proto: HandLabeler - entities: - - uid: 2228 - components: - - type: Transform - pos: -14.611721,14.56378 - parent: 1668 - - uid: 2229 - components: - - type: Transform - pos: -9.361721,12.50128 - parent: 1668 - - uid: 2240 - components: - - type: Transform - pos: -3.4985683,16.513187 - parent: 1668 -- proto: HighSecArmoryLocked - entities: - - uid: 2553 - components: - - type: Transform - pos: 9.5,20.5 - parent: 1668 - - uid: 2784 - components: - - type: Transform - pos: 7.5,28.5 - parent: 1668 - - uid: 2785 - components: - - type: Transform - pos: 11.5,28.5 - parent: 1668 -- proto: HighSecCentralCommandLocked - entities: - - uid: 3791 - components: - - type: Transform - pos: -13.5,5.5 - parent: 1668 - - uid: 3794 - components: - - type: Transform - pos: -4.5,0.5 - parent: 1668 - - uid: 3795 - components: - - type: Transform - pos: 3.5,0.5 - parent: 1668 - - uid: 3797 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1668 - - uid: 3860 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1668 - - uid: 3863 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 1668 - - uid: 3864 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 1668 -- proto: HighSecCommandLocked - entities: - - uid: 123 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 1668 -- proto: HighSecDoor - entities: - - uid: 565 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 1668 - - uid: 5932 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 1668 -- proto: HospitalCurtainsOpen - entities: - - uid: 3422 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1668 -- proto: JanitorialTrolley - entities: - - uid: 2881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 1668 -- proto: JawsOfLife - entities: - - uid: 4261 - components: - - type: Transform - pos: 21.501507,-22.363987 - parent: 1668 -- proto: KitchenMicrowave - entities: - - uid: 2226 - components: - - type: Transform - pos: -15.5,17.5 - parent: 1668 - - uid: 4585 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 1668 - - uid: 4589 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 1668 -- proto: KitchenReagentGrinder - entities: - - uid: 2922 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1668 - - uid: 4590 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1668 - - uid: 4591 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 1668 -- proto: KitchenSpike - entities: - - uid: 4581 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 1668 -- proto: KnifePlastic - entities: - - uid: 3726 - components: - - type: Transform - pos: 0.9231305,-25.45219 - parent: 1668 - - uid: 4253 - components: - - type: Transform - pos: 0.9231305,-25.45219 - parent: 1668 - - uid: 5214 - components: - - type: Transform - pos: 0.9231305,-25.45219 - parent: 1668 -- proto: Lamp - entities: - - uid: 1442 - components: - - type: Transform - pos: -0.93100256,1.9752237 - parent: 1668 - - uid: 2829 - components: - - type: Transform - pos: 5.496662,21.877665 - parent: 1668 - - uid: 3626 - components: - - type: Transform - pos: -20.472635,6.7337127 - parent: 1668 - - uid: 3627 - components: - - type: Transform - pos: -20.48826,12.764963 - parent: 1668 -- proto: LampGold - entities: - - uid: 3628 - components: - - type: Transform - pos: -16.37576,12.926986 - parent: 1668 -- proto: LargeBeaker - entities: - - uid: 5066 - components: - - type: Transform - pos: -10.010703,-28.243814 - parent: 1668 -- proto: Lighter - entities: - - uid: 3754 - components: - - type: Transform - pos: -18.379215,8.381029 - parent: 1668 -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3790 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1668 -- proto: LockerBoozeFilled - entities: - - uid: 4417 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 1668 -- proto: LockerChemistryFilled - entities: - - uid: 2876 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1668 -- proto: LockerChiefEngineerFilled - entities: - - uid: 6491 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 1668 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 6495 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 1668 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1178 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 1668 - - uid: 2039 - components: - - type: Transform - pos: 2.5,21.5 - parent: 1668 - - uid: 5322 - components: - - type: Transform - pos: 27.5,-13.5 - parent: 1668 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 3796 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 1668 - - uid: 5252 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 1668 -- proto: LockerEvidence - entities: - - uid: 3148 - components: - - type: Transform - pos: 8.5,25.5 - parent: 1668 -- proto: LockerFreezer - entities: - - uid: 5458 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 1668 - - 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: - - 5459 - - 5460 - - 5461 - - 5462 - - 5848 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 3153 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 1668 -- proto: LockerQuarterMasterFilled - entities: - - uid: 2235 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1668 -- proto: LockerResearchDirectorFilled - entities: - - uid: 6494 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 1668 -- proto: LockerSecurityFilled - entities: - - uid: 511 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 1668 - - uid: 512 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 1668 - - uid: 815 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 1668 -- proto: LockerWardenFilled - entities: - - uid: 2713 - components: - - type: Transform - pos: 6.5,17.5 - parent: 1668 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 129 - components: - - type: Transform - pos: -26.5,2.5 - parent: 1668 - - uid: 2040 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1668 - - uid: 5319 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 1668 -- proto: MachineCentrifuge - entities: - - uid: 1426 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1668 -- proto: MachineElectrolysisUnit - entities: - - uid: 6506 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1668 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 3896 - components: - - type: Transform - pos: -13.453807,-3.1600308 - parent: 1668 -- proto: MaterialBiomass - entities: - - uid: 2495 - components: - - type: Transform - pos: 13.210049,-12.580112 - parent: 1668 -- proto: MedalCase - entities: - - uid: 6922 - components: - - type: Transform - pos: -18.47654,4.596927 - parent: 1668 -- proto: MedicalBed - entities: - - uid: 612 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 1668 - - uid: 1195 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 1668 - - uid: 1196 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 1668 -- proto: MedicalScanner - entities: - - uid: 723 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 1668 -- proto: MedicalTechFab - entities: - - uid: 616 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 1668 -- proto: MedkitBruteFilled - entities: - - uid: 622 - components: - - type: Transform - pos: 14.703841,-7.3571634 - parent: 1668 -- proto: MedkitBurnFilled - entities: - - uid: 621 - components: - - type: Transform - pos: 14.594466,-7.4821634 - parent: 1668 -- proto: MedkitFilled - entities: - - uid: 620 - components: - - type: Transform - pos: 14.516341,-7.5759134 - parent: 1668 - - uid: 1454 - components: - - type: Transform - pos: 15.537778,-2.524952 - parent: 1668 - - uid: 3897 - components: - - type: Transform - pos: -13.438182,-5.5085163 - parent: 1668 -- proto: MedkitOxygenFilled - entities: - - uid: 625 - components: - - type: Transform - pos: 15.547591,-7.3884134 - parent: 1668 -- proto: MedkitRadiationFilled - entities: - - uid: 623 - components: - - type: Transform - pos: 15.266341,-7.6071634 - parent: 1668 -- proto: MedkitToxinFilled - entities: - - uid: 624 - components: - - type: Transform - pos: 15.406966,-7.4977884 - parent: 1668 -- proto: Mirror - entities: - - uid: 3426 - components: - - type: Transform - pos: -19.5,14.5 - parent: 1668 - - uid: 6845 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 1668 -- proto: MopItem - entities: - - uid: 6230 - components: - - type: Transform - pos: -17.485325,-31.461966 - parent: 1668 -- proto: NitrogenCanister - entities: - - uid: 5413 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: NTFlag - entities: - - uid: 1190 - components: - - type: Transform - pos: 15.5,7.5 - parent: 1668 - - uid: 2143 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 1668 - - uid: 2249 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 1668 -- proto: NTHandyFlag - entities: - - uid: 1187 - components: - - type: Transform - pos: 31.51589,5.5499916 - parent: 1668 -- proto: Omnitool - entities: - - uid: 4393 - components: - - type: Transform - pos: 24.630873,-13.468605 - parent: 1668 -- proto: OperatingTable - entities: - - uid: 610 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1668 -- proto: OxygenCanister - entities: - - uid: 5415 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - - uid: 6719 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: PaintingAmogusTriptych - entities: - - uid: 3766 - components: - - type: Transform - pos: -21.5,7.5 - parent: 1668 - - uid: 6942 - components: - - type: Transform - pos: -14.5,7.5 - parent: 1668 -- proto: PaintingHelloWorld - entities: - - uid: 3767 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1668 -- proto: PaintingNightHawks - entities: - - uid: 3779 - components: - - type: Transform - pos: -25.5,4.5 - parent: 1668 -- proto: PaintingSadClown - entities: - - uid: 6943 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1668 -- proto: PaintingSaturn - entities: - - uid: 3776 - components: - - type: Transform - pos: -9.5,5.5 - parent: 1668 -- proto: PaintingTheGreatWave - entities: - - uid: 3743 - components: - - type: Transform - pos: -20.5,13.5 - parent: 1668 -- proto: PaintingTheSonOfMan - entities: - - uid: 3744 - components: - - type: Transform - pos: -17.5,9.5 - parent: 1668 -- proto: Paper - entities: - - uid: 2915 - components: - - type: Transform - pos: 0.536467,0.64872134 - parent: 1668 - - uid: 2916 - components: - - type: Transform - pos: 0.44271702,0.72684634 - parent: 1668 - - uid: 2919 - components: - - type: Transform - pos: 0.645842,0.55497134 - parent: 1668 -- proto: PaperBin10 - entities: - - uid: 6630 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1668 -- proto: ParchisBoard - entities: - - uid: 3764 - components: - - type: Transform - pos: -23.482897,2.599884 - parent: 1668 -- proto: PenCentcom - entities: - - uid: 2905 - components: - - type: Transform - pos: -20.468134,12.0128975 - parent: 1668 - - uid: 2924 - components: - - type: Transform - pos: 0.16146702,1.3987213 - parent: 1668 - - uid: 6600 - components: - - type: Transform - pos: -1.4166579,1.6018463 - parent: 1668 -- proto: PercentileDie - entities: - - uid: 3765 - components: - - type: Transform - pos: -18.522638,2.6762333 - parent: 1668 -- proto: PhoneInstrument - entities: - - uid: 2464 - components: - - type: Transform - pos: 29.471363,23.660753 - parent: 1668 - - uid: 3742 - components: - - type: Transform - pos: -19.555511,10.655831 - parent: 1668 - - uid: 3876 - components: - - type: Transform - pos: -26.67884,-3.3787808 - parent: 1668 -- proto: PianoInstrument - entities: - - uid: 4474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1668 -- proto: PlaqueAtmos - entities: - - uid: 4383 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 1668 - - uid: 6646 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 1668 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1590 - components: - - type: Transform - pos: -16.5,24.5 - parent: 1668 - - uid: 1591 - components: - - type: Transform - pos: -14.5,24.5 - parent: 1668 - - uid: 1592 - components: - - type: Transform - pos: -16.5,28.5 - parent: 1668 - - uid: 1593 - components: - - type: Transform - pos: -14.5,28.5 - parent: 1668 - - uid: 1623 - components: - - type: Transform - pos: -4.5,15.5 - parent: 1668 -- proto: PlushieAtmosian - entities: - - uid: 6890 - components: - - type: Transform - pos: 17.549469,-29.409344 - parent: 1668 -- proto: PortableScrubber - entities: - - uid: 3696 - components: - - type: Transform - pos: -14.5,4.5 - parent: 1668 - - uid: 5764 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 1668 - - uid: 5765 - components: - - type: Transform - pos: 17.5,-31.5 - parent: 1668 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 6638 - components: - - type: MetaData - desc: A picture depicting a woman at the beach. Neat. - name: Beach Star Bratton! - - type: Transform - pos: 15.5,33.5 - parent: 1668 -- proto: PosterContrabandC20r - entities: - - uid: 6734 - components: - - type: Transform - pos: 9.5,33.5 - parent: 1668 -- proto: PosterContrabandEAT - entities: - - uid: 6737 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 1668 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 4576 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 1668 -- proto: PosterContrabandMissingGloves - entities: - - uid: 6945 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 1668 -- proto: PosterContrabandRedRum - entities: - - uid: 6918 - components: - - type: Transform - pos: -4.5,25.5 - parent: 1668 -- proto: PosterContrabandRobustSoftdrinks - entities: - - uid: 6958 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1668 -- proto: PosterContrabandSpaceUp - entities: - - uid: 6746 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 1668 -- proto: PosterContrabandTools - entities: - - uid: 6731 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 1668 -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 6917 - components: - - type: Transform - pos: -8.5,18.5 - parent: 1668 -- proto: PosterContrabandVoteWeh - entities: - - uid: 6745 - components: - - type: Transform - pos: 29.5,6.5 - parent: 1668 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 6733 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 1668 -- proto: PosterLegitCarpMount - entities: - - uid: 6740 - components: - - type: Transform - pos: 8.5,33.5 - parent: 1668 - - uid: 6915 - components: - - type: Transform - pos: -9.5,7.5 - parent: 1668 -- proto: PosterLegitCleanliness - entities: - - uid: 6735 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 1668 - - uid: 6736 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 1668 -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 6732 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 1668 -- proto: PosterLegitEnlist - entities: - - uid: 6633 - components: - - type: Transform - pos: 6.5,16.5 - parent: 1668 - - uid: 6639 - components: - - type: Transform - pos: 3.5,33.5 - parent: 1668 -- proto: PosterLegitHelpOthers - entities: - - uid: 6738 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 1668 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 6959 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 1668 -- proto: PosterLegitHighClassMartini - entities: - - uid: 6739 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1668 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 6741 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 1668 -- proto: PosterLegitLoveIan - entities: - - uid: 6957 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 1668 - - uid: 6960 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 1668 -- proto: PosterLegitNanomichiAd - entities: - - uid: 3778 - components: - - type: Transform - pos: -25.5,6.5 - parent: 1668 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 469 - components: - - type: Transform - pos: -24.5,13.5 - parent: 1668 - - uid: 797 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 1668 - - uid: 798 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1668 - - uid: 799 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1668 - - uid: 800 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 1668 - - uid: 801 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 1668 - - uid: 802 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 1668 - - uid: 1464 - components: - - type: Transform - pos: 14.5,30.5 - parent: 1668 - - uid: 1861 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1668 - - uid: 2053 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1668 - - uid: 2054 - components: - - type: Transform - pos: -2.5,7.5 - parent: 1668 - - uid: 2055 - components: - - type: Transform - pos: 1.5,7.5 - parent: 1668 - - uid: 2454 - components: - - type: Transform - pos: 21.5,10.5 - parent: 1668 - - uid: 2455 - components: - - type: Transform - pos: 21.5,13.5 - parent: 1668 - - uid: 2456 - components: - - type: Transform - pos: 28.5,24.5 - parent: 1668 - - uid: 2457 - components: - - type: Transform - pos: 30.5,24.5 - parent: 1668 - - uid: 2458 - components: - - type: Transform - pos: 26.5,24.5 - parent: 1668 - - uid: 2459 - components: - - type: Transform - pos: 34.5,20.5 - parent: 1668 - - uid: 2460 - components: - - type: Transform - pos: 22.5,20.5 - parent: 1668 - - uid: 2918 - components: - - type: Transform - pos: -19.5,13.5 - parent: 1668 - - uid: 3450 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1668 - - uid: 3603 - components: - - type: Transform - pos: -11.5,7.5 - parent: 1668 - - uid: 3604 - components: - - type: Transform - pos: -15.5,7.5 - parent: 1668 - - uid: 3605 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1668 - - uid: 3606 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 1668 - - uid: 3777 - components: - - type: Transform - pos: -25.5,2.5 - parent: 1668 - - uid: 3867 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1668 - - uid: 4395 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 1668 - - uid: 4635 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 1668 - - uid: 4636 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 1668 - - uid: 6446 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 1668 - - uid: 6447 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 1668 - - uid: 6448 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 1668 - - uid: 6557 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 1668 - - uid: 6558 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 1668 - - uid: 6559 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 1668 - - uid: 6560 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 1668 - - uid: 6613 - components: - - type: Transform - pos: 4.5,30.5 - parent: 1668 - - uid: 6632 - components: - - type: Transform - pos: 13.5,16.5 - parent: 1668 - - uid: 6721 - components: - - type: Transform - pos: 16.5,1.5 - parent: 1668 - - uid: 6722 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 1668 - - uid: 6882 - components: - - type: Transform - pos: -2.5,-20.5 - parent: 1668 -- proto: PosterLegitNTTGC - entities: - - uid: 6884 - components: - - type: Transform - pos: 18.5,17.5 - parent: 1668 -- proto: PosterLegitPeriodicTable - entities: - - uid: 6913 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 1668 -- proto: PosterLegitRenault - entities: - - uid: 6962 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 1668 -- proto: PosterLegitReportCrimes - entities: - - uid: 6743 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1668 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 6914 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 1668 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 6912 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 1668 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 6910 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 1668 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 6911 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 1668 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 6909 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 1668 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 6887 - components: - - type: Transform - pos: 14.5,-31.5 - parent: 1668 -- proto: PosterLegitSafetyReport - entities: - - uid: 6747 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 1668 -- proto: PosterLegitSecWatch - entities: - - uid: 6781 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 1668 -- proto: PosterLegitUeNo - entities: - - uid: 6744 - components: - - type: Transform - pos: 23.5,6.5 - parent: 1668 -- proto: PosterLegitVacation - entities: - - uid: 6885 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1668 - - uid: 6886 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 1668 - - uid: 6919 - components: - - type: Transform - pos: -4.5,28.5 - parent: 1668 - - uid: 6946 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 1668 -- proto: PosterLegitWalk - entities: - - uid: 6961 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 1668 -- proto: PosterLegitWorkForAFuture - entities: - - uid: 6742 - components: - - type: Transform - pos: 10.5,33.5 - parent: 1668 - - uid: 6916 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1668 -- proto: PosterMapBagel - entities: - - uid: 6749 - components: - - type: Transform - pos: 3.5,5.5 - parent: 1668 -- proto: PosterMapDelta - entities: - - uid: 6750 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1668 -- proto: PosterMapLighthouse - entities: - - uid: 6754 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 1668 -- proto: PosterMapMarathon - entities: - - uid: 6751 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 1668 -- proto: PosterMapMetaRight - entities: - - uid: 6752 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 1668 -- proto: PosterMapMoose - entities: - - uid: 6755 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 1668 -- proto: PosterMapOrigin - entities: - - uid: 6759 - components: - - type: Transform - pos: -4.5,5.5 - parent: 1668 -- proto: PosterMapPillar - entities: - - uid: 6753 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 1668 -- proto: PosterMapSaltern - entities: - - uid: 6756 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 1668 -- proto: PosterMapSplit - entities: - - uid: 6757 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 1668 -- proto: PosterMapWaystation - entities: - - uid: 6758 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1668 -- proto: PottedPlant15 - entities: - - uid: 3459 - components: - - type: Transform - pos: -24.5,12.5 - parent: 1668 -- proto: PottedPlant21 - entities: - - uid: 508 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 1668 - - uid: 542 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 1668 - - uid: 543 - components: - - type: Transform - pos: 19.5,4.5 - parent: 1668 - - uid: 602 - components: - - type: MetaData - name: security plant - - type: Transform - pos: 9.5,6.5 - parent: 1668 - - uid: 606 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1668 - - uid: 607 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 1668 - - uid: 708 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 1668 - - uid: 709 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1668 - - uid: 803 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1668 - - uid: 2160 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1668 - - uid: 2161 - components: - - type: Transform - pos: -1.5,16.5 - parent: 1668 - - uid: 2162 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1668 - - uid: 2381 - components: - - type: Transform - pos: 22.5,10.5 - parent: 1668 - - uid: 2383 - components: - - type: Transform - pos: 34.5,10.5 - parent: 1668 - - uid: 2384 - components: - - type: Transform - pos: 24.5,21.5 - parent: 1668 - - uid: 2385 - components: - - type: Transform - pos: 32.5,21.5 - parent: 1668 - - uid: 2386 - components: - - type: Transform - pos: 18.5,18.5 - parent: 1668 - - uid: 2422 - components: - - type: Transform - pos: 28.5,23.5 - parent: 1668 - - uid: 3178 - components: - - type: Transform - pos: 6.5,10.5 - parent: 1668 - - uid: 3179 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - uid: 3456 - components: - - type: Transform - pos: -20.5,2.5 - parent: 1668 - - uid: 3457 - components: - - type: Transform - pos: -21.5,6.5 - parent: 1668 - - uid: 3458 - components: - - type: Transform - pos: -24.5,8.5 - parent: 1668 - - uid: 3460 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1668 - - uid: 3461 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1668 - - uid: 3856 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 1668 - - uid: 3857 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 1668 - - uid: 3858 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 1668 - - uid: 4624 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 1668 - - uid: 4625 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 1668 - - uid: 4626 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 1668 - - uid: 4627 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 1668 - - uid: 4628 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 1668 - - uid: 4629 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 1668 - - uid: 5375 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - uid: 5382 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 1668 - - uid: 6561 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1668 - - uid: 6562 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 1668 - - uid: 6563 - components: - - type: Transform - pos: 2.5,-31.5 - parent: 1668 -- proto: PottedPlant22 - entities: - - uid: 544 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 1668 - - uid: 603 - components: - - type: MetaData - name: security plant - - type: Transform - pos: 13.5,4.5 - parent: 1668 - - uid: 706 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - uid: 707 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1668 - - uid: 804 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 1668 - - uid: 2193 - components: - - type: Transform - pos: -2.5,16.5 - parent: 1668 - - uid: 2387 - components: - - type: Transform - pos: 23.5,10.5 - parent: 1668 - - uid: 2388 - components: - - type: Transform - pos: 33.5,10.5 - parent: 1668 - - uid: 2389 - components: - - type: Transform - pos: 34.5,21.5 - parent: 1668 - - uid: 2390 - components: - - type: Transform - pos: 22.5,21.5 - parent: 1668 - - uid: 2391 - components: - - type: Transform - pos: 25.5,21.5 - parent: 1668 - - uid: 2392 - components: - - type: Transform - pos: 31.5,21.5 - parent: 1668 - - uid: 2393 - components: - - type: Transform - pos: 18.5,22.5 - parent: 1668 - - uid: 2394 - components: - - type: Transform - pos: 16.5,12.5 - parent: 1668 - - uid: 3180 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1668 - - uid: 3181 - components: - - type: Transform - pos: 14.5,10.5 - parent: 1668 - - uid: 3453 - components: - - type: Transform - pos: -22.5,2.5 - parent: 1668 - - uid: 3454 - components: - - type: Transform - pos: -24.5,6.5 - parent: 1668 - - uid: 3455 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1668 - - uid: 3853 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 1668 - - uid: 3854 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 1668 - - uid: 3855 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 1668 - - uid: 4620 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 1668 - - uid: 4621 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 1668 - - uid: 4622 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 1668 - - uid: 4623 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 1668 - - uid: 5377 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 1668 - - uid: 5383 - components: - - type: Transform - pos: 17.5,-27.5 - parent: 1668 - - uid: 6564 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 1668 - - uid: 6565 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1668 -- proto: PottedPlantBioluminscent - entities: - - uid: 6566 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 1668 -- proto: PowerCellRecharger - entities: - - uid: 1448 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 1458 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1668 - - uid: 5376 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 1668 - - uid: 5378 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 1668 - - uid: 6498 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 1668 -- proto: PowerDrill - entities: - - uid: 3698 - components: - - type: Transform - pos: -16.54512,6.5009594 - parent: 1668 -- proto: Poweredlight - entities: - - uid: 510 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 525 - components: - - type: Transform - pos: 26.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 526 - components: - - type: Transform - pos: 21.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 527 - components: - - type: Transform - pos: 31.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 576 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 582 - components: - - type: Transform - pos: 34.5,5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 583 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 584 - components: - - type: Transform - pos: 29.5,5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 739 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1384 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1385 - components: - - type: Transform - pos: 17.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1386 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1388 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1390 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1396 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2152 - components: - - type: Transform - pos: -11.5,17.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2154 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2219 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2220 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,22.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1668 - - uid: 2723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2724 - components: - - type: Transform - pos: 4.5,14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2725 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2726 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2908 - components: - - type: Transform - pos: 17.5,8.5 - parent: 1668 - - uid: 2931 - components: - - type: Transform - pos: 12.5,32.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2932 - components: - - type: Transform - pos: 6.5,32.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2933 - components: - - type: Transform - pos: 9.5,32.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2939 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1668 - - uid: 3701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3705 - components: - - type: Transform - pos: -21.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3707 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3708 - components: - - type: Transform - pos: -11.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4170 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4171 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4176 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4177 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1668 - - uid: 4334 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 1668 - - uid: 4340 - components: - - type: Transform - pos: -8.5,-4.5 - parent: 1668 - - uid: 4392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1668 - - uid: 4396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1668 - - uid: 4397 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 1668 - - uid: 4399 - components: - - type: Transform - pos: 18.5,16.5 - parent: 1668 - - uid: 4400 - components: - - type: Transform - pos: 28.5,23.5 - parent: 1668 - - uid: 4402 - components: - - type: Transform - pos: 34.5,23.5 - parent: 1668 - - uid: 4499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1668 - - uid: 4596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4597 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4598 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4600 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4601 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1668 - - uid: 5353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5354 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5359 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5360 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5364 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-32.5 - parent: 1668 - - uid: 5452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1668 - - uid: 5582 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5827 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5830 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5831 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5849 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5850 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5852 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5884 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5885 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5933 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6102 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - - uid: 6463 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6464 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6469 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6470 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6471 - components: - - type: Transform - pos: 3.5,-31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6472 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-37.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-37.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1668 - - uid: 6609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6723 - components: - - type: Transform - pos: -15.5,2.5 - parent: 1668 - - uid: 6724 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1668 - - uid: 6725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1668 - - uid: 6730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 1668 - - uid: 6760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1668 - - uid: 6761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1668 - - uid: 6766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1668 - - uid: 6784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - - uid: 6874 - components: - - type: Transform - pos: 31.5,-28.5 - parent: 1668 - - uid: 6875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-31.5 - parent: 1668 - - uid: 6883 - components: - - type: Transform - pos: 22.5,23.5 - parent: 1668 - - uid: 6920 - components: - - type: Transform - pos: 2.5,18.5 - parent: 1668 - - uid: 6921 - components: - - type: Transform - pos: -3.5,18.5 - parent: 1668 - - uid: 6944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1668 -- proto: PoweredlightLED - entities: - - uid: 5584 - components: - - type: Transform - pos: 22.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredlightSodium - entities: - - uid: 3245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5229 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLight - entities: - - uid: 2050 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2051 - components: - - type: Transform - pos: -2.5,21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2052 - components: - - type: Transform - pos: 1.5,21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2217 - components: - - type: Transform - pos: -15.5,28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2740 - components: - - type: Transform - pos: 14.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2762 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2935 - components: - - type: Transform - pos: 16.5,25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2936 - components: - - type: Transform - pos: 16.5,28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2937 - components: - - type: Transform - pos: 2.5,28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2938 - components: - - type: Transform - pos: 2.5,25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2943 - components: - - type: Transform - pos: 5.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 1668 - - uid: 5368 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 1668 -- proto: Protolathe - entities: - - uid: 5311 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 1668 -- proto: Rack - entities: - - uid: 1662 - components: - - type: Transform - pos: -11.5,17.5 - parent: 1668 - - uid: 2167 - components: - - type: Transform - pos: -3.5,16.5 - parent: 1668 - - uid: 2195 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1668 - - uid: 2200 - components: - - type: Transform - pos: 15.5,30.5 - parent: 1668 - - uid: 2201 - components: - - type: Transform - pos: 3.5,30.5 - parent: 1668 - - uid: 2889 - components: - - type: Transform - pos: 3.5,32.5 - parent: 1668 - - uid: 2890 - components: - - type: Transform - pos: 15.5,32.5 - parent: 1668 - - uid: 3117 - components: - - type: Transform - pos: 5.5,32.5 - parent: 1668 - - uid: 3118 - components: - - type: Transform - pos: 6.5,32.5 - parent: 1668 - - uid: 3119 - components: - - type: Transform - pos: 12.5,32.5 - parent: 1668 - - uid: 3120 - components: - - type: Transform - pos: 13.5,32.5 - parent: 1668 - - uid: 5327 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 1668 - - uid: 5340 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 1668 - - uid: 6449 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 1668 - - uid: 6450 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 1668 - - uid: 6451 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 1668 - - uid: 6452 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 1668 -- proto: RadioHandheld - entities: - - uid: 3903 - components: - - type: Transform - pos: -13.516307,-6.3210163 - parent: 1668 - - uid: 3904 - components: - - type: Transform - pos: -13.344432,-6.4147663 - parent: 1668 -- proto: Railing - entities: - - uid: 1075 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 1668 - - uid: 1076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 1668 - - uid: 1077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 1668 - - uid: 1078 - components: - - type: Transform - pos: 34.5,3.5 - parent: 1668 - - uid: 4434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - - uid: 4435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - - uid: 4436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - - uid: 4438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - - uid: 4439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - - uid: 4440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - - uid: 4454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - - uid: 4455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - - uid: 4456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - - uid: 4457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - - uid: 4460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - - uid: 4461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - - uid: 4462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - - uid: 4463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - - uid: 4464 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1668 - - uid: 4465 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1668 - - uid: 4468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - - uid: 4469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - - uid: 5216 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 1668 - - uid: 5218 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 1668 - - uid: 5220 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 1668 - - uid: 5221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - - uid: 5223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 1668 - - uid: 5225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 1668 - - uid: 5226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 1668 - - uid: 5228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - - uid: 5230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 1668 - - uid: 6144 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 1668 - - uid: 6145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 1668 -- proto: RailingCornerSmall - entities: - - uid: 4471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1668 - - uid: 4473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 1668 - - uid: 5231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 1668 - - uid: 5232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 1668 -- proto: RandomDrinkBottle - entities: - - uid: 4607 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 1668 - - uid: 4610 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 1668 -- proto: RandomDrinkGlass - entities: - - uid: 4611 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 1668 - - uid: 4612 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 1668 - - uid: 4613 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 1668 - - uid: 4614 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 1668 -- proto: RandomFoodBakedSingle - entities: - - uid: 4616 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 1668 -- proto: RandomFoodMeal - entities: - - uid: 4608 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 1668 - - uid: 4609 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 1668 -- proto: RandomFoodSingle - entities: - - uid: 4605 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1668 - - uid: 4606 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 1668 -- proto: ReagentContainerFlour - entities: - - uid: 4594 - components: - - type: Transform - pos: -10.626896,-28.3469 - parent: 1668 - - uid: 4595 - components: - - type: Transform - pos: -10.376896,-28.50315 - parent: 1668 -- proto: Recycler - entities: - - uid: 5908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-31.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 5907 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 2791 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 2812 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1668 - - uid: 2813 - components: - - type: Transform - pos: 5.5,30.5 - parent: 1668 - - uid: 2877 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 5108 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - uid: 5109 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - uid: 5110 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - uid: 5111 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - uid: 5112 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - uid: 5167 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1668 - - uid: 5168 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 1668 -- proto: ReinforcedWindow - entities: - - uid: 50 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1668 - - uid: 51 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1668 - - uid: 52 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1668 - - uid: 53 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1668 - - uid: 54 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 1668 - - uid: 55 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1668 - - uid: 56 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1668 - - uid: 57 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1668 - - uid: 58 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1668 - - uid: 59 - components: - - type: Transform - pos: -1.5,2.5 - parent: 1668 - - uid: 60 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1668 - - uid: 61 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1668 - - uid: 62 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1668 - - uid: 63 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1668 - - uid: 64 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1668 - - uid: 65 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 1668 - - uid: 66 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 1668 - - uid: 67 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1668 - - uid: 68 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1668 - - uid: 69 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1668 - - uid: 77 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 1668 - - uid: 92 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1668 - - uid: 93 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1668 - - uid: 94 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1668 - - uid: 95 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1668 - - uid: 103 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1668 - - uid: 104 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1668 - - uid: 109 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 110 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 111 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 112 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 124 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1668 - - uid: 134 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1668 - - uid: 135 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1668 - - uid: 136 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 1668 - - uid: 150 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 1668 - - uid: 151 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1668 - - uid: 152 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 1668 - - uid: 153 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1668 - - uid: 161 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 1668 - - uid: 162 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 1668 - - uid: 163 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 1668 - - uid: 164 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 1668 - - uid: 165 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 1668 - - uid: 166 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1668 - - uid: 167 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1668 - - uid: 168 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 1668 - - uid: 169 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 1668 - - uid: 170 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 1668 - - uid: 171 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 1668 - - uid: 172 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 1668 - - uid: 173 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1668 - - uid: 183 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 1668 - - uid: 190 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 1668 - - uid: 214 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 1668 - - uid: 215 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1668 - - uid: 220 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1668 - - uid: 221 - components: - - type: Transform - pos: 13.5,2.5 - parent: 1668 - - uid: 222 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1668 - - uid: 226 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 1668 - - uid: 227 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1668 - - uid: 228 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1668 - - uid: 243 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1668 - - uid: 244 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1668 - - uid: 247 - components: - - type: Transform - pos: 16.5,3.5 - parent: 1668 - - uid: 259 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1668 - - uid: 260 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1668 - - uid: 261 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1668 - - uid: 262 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1668 - - uid: 263 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1668 - - uid: 264 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1668 - - uid: 265 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1668 - - uid: 266 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1668 - - uid: 267 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1668 - - uid: 268 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1668 - - uid: 269 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1668 - - uid: 270 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1668 - - uid: 271 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1668 - - uid: 272 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1668 - - uid: 275 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1668 - - uid: 301 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1668 - - uid: 302 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 1668 - - uid: 303 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 1668 - - uid: 307 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 308 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 309 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 310 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1668 - - uid: 336 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 1668 - - uid: 337 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1668 - - uid: 338 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1668 - - uid: 339 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1668 - - uid: 340 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1668 - - uid: 348 - components: - - type: Transform - pos: 21.5,6.5 - parent: 1668 - - uid: 355 - components: - - type: Transform - pos: 31.5,6.5 - parent: 1668 - - uid: 360 - components: - - type: Transform - pos: 24.5,7.5 - parent: 1668 - - uid: 361 - components: - - type: Transform - pos: 28.5,7.5 - parent: 1668 - - uid: 393 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 1668 - - uid: 396 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 1668 - - uid: 401 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 1668 - - uid: 408 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 1668 - - uid: 442 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1668 - - uid: 443 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1668 - - uid: 444 - components: - - type: Transform - pos: 35.5,5.5 - parent: 1668 - - uid: 445 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 1668 - - uid: 446 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 1668 - - uid: 447 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1668 - - uid: 462 - components: - - type: Transform - pos: 33.5,5.5 - parent: 1668 - - uid: 463 - components: - - type: Transform - pos: 33.5,3.5 - parent: 1668 - - uid: 464 - components: - - type: Transform - pos: 33.5,1.5 - parent: 1668 - - uid: 465 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 1668 - - uid: 466 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1668 - - uid: 467 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 1668 - - uid: 471 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 1668 - - uid: 472 - components: - - type: Transform - pos: 34.5,0.5 - parent: 1668 - - uid: 670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - uid: 671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - uid: 676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - - uid: 677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - - uid: 682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - - uid: 683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - - uid: 684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - - uid: 700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - - uid: 701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - - uid: 705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1668 - - uid: 741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - - uid: 744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - - uid: 758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1668 - - uid: 759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1668 - - uid: 760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1668 - - uid: 761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1668 - - uid: 762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1668 - - uid: 778 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1668 - - uid: 779 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1668 - - uid: 780 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 1668 - - uid: 781 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 1668 - - uid: 819 - components: - - type: Transform - pos: -10.5,32.5 - parent: 1668 - - uid: 828 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 1668 - - uid: 829 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1668 - - uid: 830 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 1668 - - uid: 831 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 1668 - - uid: 1193 - components: - - type: Transform - pos: -8.5,32.5 - parent: 1668 - - uid: 1417 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1668 - - uid: 1418 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1668 - - uid: 1419 - components: - - type: Transform - pos: 2.5,17.5 - parent: 1668 - - uid: 1420 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1668 - - uid: 1421 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1668 - - uid: 1422 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 1423 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1668 - - uid: 1429 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 1668 - - uid: 1466 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1668 - - uid: 1518 - components: - - type: Transform - pos: -16.5,17.5 - parent: 1668 - - uid: 1519 - components: - - type: Transform - pos: -16.5,18.5 - parent: 1668 - - uid: 1520 - components: - - type: Transform - pos: -15.5,18.5 - parent: 1668 - - uid: 1521 - components: - - type: Transform - pos: -13.5,18.5 - parent: 1668 - - uid: 1522 - components: - - type: Transform - pos: -12.5,18.5 - parent: 1668 - - uid: 1539 - components: - - type: Transform - pos: -14.5,20.5 - parent: 1668 - - uid: 1540 - components: - - type: Transform - pos: -14.5,21.5 - parent: 1668 - - uid: 1541 - components: - - type: Transform - pos: -14.5,22.5 - parent: 1668 - - uid: 1542 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - uid: 1543 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1668 - - uid: 1544 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1668 - - uid: 1545 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - uid: 1546 - components: - - type: Transform - pos: -15.5,29.5 - parent: 1668 - - uid: 1547 - components: - - type: Transform - pos: -16.5,29.5 - parent: 1668 - - uid: 1548 - components: - - type: Transform - pos: -14.5,30.5 - parent: 1668 - - uid: 1549 - components: - - type: Transform - pos: -14.5,26.5 - parent: 1668 - - uid: 1550 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1668 - - uid: 1551 - components: - - type: Transform - pos: -16.5,26.5 - parent: 1668 - - uid: 1566 - components: - - type: Transform - pos: -12.5,32.5 - parent: 1668 - - uid: 1572 - components: - - type: Transform - pos: -6.5,32.5 - parent: 1668 - - uid: 1999 - components: - - type: Transform - pos: 5.5,10.5 - parent: 1668 - - uid: 2000 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2001 - components: - - type: Transform - pos: 5.5,14.5 - parent: 1668 - - uid: 2242 - components: - - type: Transform - pos: 15.5,10.5 - parent: 1668 - - uid: 2243 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1668 - - uid: 2244 - components: - - type: Transform - pos: 15.5,14.5 - parent: 1668 - - uid: 2276 - components: - - type: Transform - pos: 23.5,14.5 - parent: 1668 - - uid: 2277 - components: - - type: Transform - pos: 33.5,14.5 - parent: 1668 - - uid: 2278 - components: - - type: Transform - pos: 31.5,14.5 - parent: 1668 - - uid: 2279 - components: - - type: Transform - pos: 30.5,14.5 - parent: 1668 - - uid: 2280 - components: - - type: Transform - pos: 29.5,14.5 - parent: 1668 - - uid: 2281 - components: - - type: Transform - pos: 27.5,14.5 - parent: 1668 - - uid: 2282 - components: - - type: Transform - pos: 26.5,14.5 - parent: 1668 - - uid: 2283 - components: - - type: Transform - pos: 25.5,14.5 - parent: 1668 - - uid: 2337 - components: - - type: Transform - pos: 24.5,15.5 - parent: 1668 - - uid: 2338 - components: - - type: Transform - pos: 24.5,16.5 - parent: 1668 - - uid: 2339 - components: - - type: Transform - pos: 24.5,17.5 - parent: 1668 - - uid: 2341 - components: - - type: Transform - pos: 24.5,19.5 - parent: 1668 - - uid: 2505 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1668 - - uid: 2506 - components: - - type: Transform - pos: 10.5,17.5 - parent: 1668 - - uid: 2507 - components: - - type: Transform - pos: 10.5,18.5 - parent: 1668 - - uid: 2509 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1668 - - uid: 2556 - components: - - type: Transform - pos: 14.5,21.5 - parent: 1668 - - uid: 2755 - components: - - type: Transform - pos: 4.5,24.5 - parent: 1668 - - uid: 2771 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1668 - - uid: 2777 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1668 - - uid: 2778 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1668 - - uid: 2779 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1668 - - uid: 2780 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1668 - - uid: 2781 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1668 - - uid: 2782 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1668 - - uid: 2786 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1668 - - uid: 2787 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1668 - - uid: 2858 - components: - - type: Transform - pos: 14.5,27.5 - parent: 1668 - - uid: 2859 - components: - - type: Transform - pos: 4.5,27.5 - parent: 1668 - - uid: 2906 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 1668 - - uid: 3122 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 1668 - - uid: 3126 - components: - - type: Transform - pos: 7.5,7.5 - parent: 1668 - - uid: 3127 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1668 - - uid: 3128 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 1668 - - uid: 3248 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 1668 - - uid: 3249 - components: - - type: Transform - pos: 16.5,-32.5 - parent: 1668 - - uid: 3250 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 1668 - - uid: 3287 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1668 - - uid: 3288 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1668 - - uid: 3289 - components: - - type: Transform - pos: -12.5,1.5 - parent: 1668 - - uid: 3290 - components: - - type: Transform - pos: -14.5,1.5 - parent: 1668 - - uid: 3291 - components: - - type: Transform - pos: -15.5,1.5 - parent: 1668 - - uid: 3292 - components: - - type: Transform - pos: -16.5,1.5 - parent: 1668 - - uid: 3293 - components: - - type: Transform - pos: -13.5,2.5 - parent: 1668 - - uid: 3327 - components: - - type: Transform - pos: -27.5,8.5 - parent: 1668 - - uid: 3328 - components: - - type: Transform - pos: -27.5,9.5 - parent: 1668 - - uid: 3329 - components: - - type: Transform - pos: -27.5,12.5 - parent: 1668 - - uid: 3330 - components: - - type: Transform - pos: -27.5,11.5 - parent: 1668 - - uid: 3385 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 - - uid: 3386 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 3933 - components: - - type: Transform - pos: -33.5,7.5 - parent: 1668 - - uid: 3934 - components: - - type: Transform - pos: -32.5,7.5 - parent: 1668 - - uid: 3935 - components: - - type: Transform - pos: -30.5,7.5 - parent: 1668 - - uid: 3939 - components: - - type: Transform - pos: -34.5,3.5 - parent: 1668 - - uid: 3940 - components: - - type: Transform - pos: -34.5,4.5 - parent: 1668 - - uid: 3941 - components: - - type: Transform - pos: -34.5,5.5 - parent: 1668 - - uid: 3942 - components: - - type: Transform - pos: -34.5,6.5 - parent: 1668 - - uid: 3972 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 1668 - - uid: 3973 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 1668 - - uid: 3974 - components: - - type: Transform - pos: -34.5,1.5 - parent: 1668 - - uid: 3975 - components: - - type: Transform - pos: -32.5,1.5 - parent: 1668 - - uid: 3976 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 1668 - - uid: 3977 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 3978 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 1668 - - uid: 4222 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 1668 - - uid: 4223 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 1668 - - uid: 4224 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 1668 - - uid: 4225 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 1668 - - uid: 4265 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 1668 - - uid: 4305 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1668 - - uid: 4306 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1668 - - uid: 4307 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1668 - - uid: 4308 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 1668 - - uid: 4309 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 1668 - - uid: 4310 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 1668 - - uid: 4311 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 1668 - - uid: 4312 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 1668 - - uid: 4313 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 1668 - - uid: 4314 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1668 - - uid: 4315 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 1668 - - uid: 4316 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 1668 - - uid: 4354 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 1668 - - uid: 4355 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 1668 - - uid: 4365 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 1668 - - uid: 4367 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 1668 - - uid: 4651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1668 - - uid: 4652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1668 - - uid: 4653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1668 - - uid: 4663 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 1668 - - uid: 4664 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1668 - - uid: 4665 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 1668 - - uid: 4752 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 1668 - - uid: 4753 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 1668 - - uid: 5333 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 5334 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 5335 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 - - uid: 5880 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1668 - - uid: 5910 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 1668 - - uid: 5911 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 1668 - - uid: 5912 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 1668 - - uid: 5914 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 1668 - - uid: 5915 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 1668 - - uid: 5916 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 1668 - - uid: 5947 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 5948 - components: - - type: Transform - pos: -17.5,-25.5 - parent: 1668 - - uid: 5976 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1668 - - uid: 5977 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 1668 - - uid: 5978 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 1668 - - uid: 5979 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 1668 - - uid: 5980 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 1668 - - uid: 5981 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 1668 - - uid: 5982 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 - - uid: 5990 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 1668 - - uid: 5991 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 1668 - - uid: 5992 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 1668 - - uid: 6024 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1668 - - uid: 6025 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 1668 - - uid: 6156 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 1668 - - uid: 6157 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1668 - - uid: 6158 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 1668 - - uid: 6159 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 1668 - - uid: 6275 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - uid: 6288 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 1668 - - uid: 6289 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1668 - - uid: 6290 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 1668 - - uid: 6291 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 1668 - - uid: 6295 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 1668 - - uid: 6296 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 1668 - - uid: 6300 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 1668 - - uid: 6707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - - uid: 6770 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 1668 - - uid: 6771 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 1668 - - uid: 6783 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1668 - - uid: 6847 - components: - - type: Transform - pos: 15.5,8.5 - parent: 1668 -- proto: RubberStampApproved - entities: - - uid: 6489 - components: - - type: Transform - pos: 25.503832,-7.398362 - parent: 1668 -- proto: RubberStampCentcom - entities: - - uid: 2917 - components: - - type: Transform - pos: 0.630217,1.1330963 - parent: 1668 - - uid: 3749 - components: - - type: Transform - pos: -20.5068,11.16328 - parent: 1668 -- proto: RubberStampDenied - entities: - - uid: 590 - components: - - type: Transform - pos: 25.691332,-7.585862 - parent: 1668 -- proto: RubberStampQm - entities: - - uid: 2234 - components: - - type: Transform - pos: -12.516554,9.632545 - parent: 1668 -- proto: RubberStampTrader - entities: - - uid: 2233 - components: - - type: Transform - pos: -12.532179,11.55442 - parent: 1668 -- proto: Screen - entities: - - uid: 6988 - components: - - type: Transform - pos: 33.5,3.5 - parent: 1668 - - uid: 6989 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1668 -- proto: SecurityTechFab - entities: - - uid: 2874 - components: - - type: Transform - pos: 9.5,32.5 - parent: 1668 -- proto: SeismicCharge - entities: - - uid: 1079 - components: - - type: Transform - pos: -12.4071865,-3.4493918 - parent: 1668 - - uid: 3129 - components: - - type: Transform - pos: -12.5634365,-3.3712668 - parent: 1668 -- proto: ShowcaseRobotAntique - entities: - - uid: 6931 - components: - - type: Transform - pos: -6.5,8.5 - parent: 1668 -- proto: ShuttersRadiationOpen - entities: - - uid: 6879 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 6880 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 6881 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 -- proto: SignalButton - entities: - - uid: 789 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 786: - - Pressed: Toggle - 787: - - Pressed: Toggle - 788: - - Pressed: Toggle - - uid: 1611 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1607: - - Pressed: Toggle - 1610: - - Pressed: Toggle - - uid: 1612 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1608: - - Pressed: Toggle - 1609: - - Pressed: Toggle - - uid: 1804 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1552: - - Pressed: Toggle - - uid: 2712 - components: - - type: Transform - pos: 7.5,17.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2150: - - Pressed: Toggle - 2149: - - Pressed: Toggle - 2148: - - Pressed: Toggle - 2147: - - Pressed: Toggle - 2146: - - Pressed: Toggle - - uid: 2920 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 3789: - - Pressed: Toggle - 3788: - - Pressed: Toggle - 3787: - - Pressed: Toggle - - uid: 2927 - components: - - type: MetaData - name: le funny admin button - - type: Transform - pos: 4.5,32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2926: - - Pressed: Toggle - 2925: - - Pressed: Toggle - - uid: 2928 - components: - - type: MetaData - name: le funny admin button - - type: Transform - pos: 14.5,32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2886: - - Pressed: Toggle - 2790: - - Pressed: Toggle - - uid: 5242 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5238: - - Pressed: Toggle - 5237: - - Pressed: Toggle - 5236: - - Pressed: Toggle - 5235: - - Pressed: Toggle - 5234: - - Pressed: Toggle - 5239: - - Pressed: Toggle - 5241: - - Pressed: Toggle - 5240: - - Pressed: Toggle - - uid: 6442 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 6521: - - Pressed: Toggle - 6525: - - Pressed: Toggle - 6524: - - Pressed: Toggle - 6523: - - Pressed: Toggle - 6522: - - Pressed: Toggle -- proto: SignalButtonExt1 - entities: - - uid: 715 - components: - - type: MetaData - name: East Checkpoint Doors - - type: Transform - pos: 16.5,4.5 - parent: 1668 -- proto: SignalButtonExt2 - entities: - - uid: 721 - components: - - type: MetaData - name: West Checkpoint Doors - - type: Transform - pos: 8.5,4.5 - parent: 1668 -- proto: SignAtmosMinsky - entities: - - uid: 6888 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 1668 -- proto: SignCargo - entities: - - uid: 2207 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1668 -- proto: SignChemistry1 - entities: - - uid: 6764 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 1668 -- proto: SignCloning - entities: - - uid: 6763 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 1668 -- proto: SignDirectionalEng - entities: - - uid: 2882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 1668 - - uid: 6593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 -- proto: SignDoors - entities: - - uid: 545 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 546 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 547 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 548 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 795 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 796 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 2269 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2270 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 2271 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1668 - - uid: 2272 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1668 - - uid: 2273 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1668 - - uid: 3607 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1668 - - uid: 3608 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1668 - - uid: 3609 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 3610 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 -- proto: SignElectricalMed - entities: - - uid: 1533 - components: - - type: Transform - pos: -1.5,17.5 - parent: 1668 - - uid: 5351 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 1668 -- proto: SignEngineering - entities: - - uid: 4970 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 1668 -- proto: SignGravity - entities: - - uid: 5215 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 1668 -- proto: SignInterrogation - entities: - - uid: 2830 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1668 -- proto: SignKiddiePlaque - entities: - - uid: 4384 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1668 - - uid: 4385 - components: - - type: Transform - pos: -13.5,12.5 - parent: 1668 - - uid: 4386 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1668 - - uid: 4387 - components: - - type: Transform - pos: 1.5,2.5 - parent: 1668 -- proto: SignMedical - entities: - - uid: 736 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 1668 - - uid: 6762 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 1668 -- proto: SignPlaque - entities: - - uid: 3770 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1668 - - uid: 4381 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 1668 - - uid: 4382 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 1668 - - uid: 6645 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1668 -- proto: SignRadiationMed - entities: - - uid: 5348 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 1668 - - uid: 5349 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 1668 - - uid: 5350 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 1668 -- proto: SignSecureMed - entities: - - uid: 776 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 1668 - - uid: 3451 - components: - - type: Transform - pos: -20.5,1.5 - parent: 1668 - - uid: 3713 - components: - - type: Transform - pos: -17.5,6.5 - parent: 1668 - - uid: 3714 - components: - - type: Transform - pos: -13.5,4.5 - parent: 1668 - - uid: 3871 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 1668 - - uid: 3872 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 1668 - - uid: 3873 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 1668 - - uid: 4151 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 1668 - - uid: 6443 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 1668 - - uid: 6444 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 1668 - - uid: 6445 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 1668 -- proto: SignSecureSmall - entities: - - uid: 3868 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1668 - - uid: 3869 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1668 -- proto: SignSpace - entities: - - uid: 1792 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1668 - - uid: 1793 - components: - - type: Transform - pos: -15.5,29.5 - parent: 1668 - - uid: 2741 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1668 - - uid: 5956 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 5957 - components: - - type: Transform - pos: -17.5,-25.5 - parent: 1668 - - uid: 6231 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 6232 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 -- proto: Sink - entities: - - uid: 3425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1668 -- proto: SinkWide - entities: - - uid: 6619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 1668 - - uid: 6620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 1668 - - uid: 6877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 1668 - - uid: 6878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 1668 -- proto: SMESBasic - entities: - - uid: 327 - components: - - type: Transform - pos: 27.5,-30.5 - parent: 1668 - - uid: 5078 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 1668 - - uid: 5079 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 1668 - - uid: 5080 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 1668 -- proto: SmokingPipeFilledTobacco - entities: - - uid: 3753 - components: - - type: Transform - pos: -18.510391,8.646521 - parent: 1668 -- proto: SoapDeluxe - entities: - - uid: 3424 - components: - - type: Transform - pos: -20.47715,15.560694 - parent: 1668 -- proto: soda_dispenser - entities: - - uid: 4427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1668 - - uid: 4429 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 1668 -- proto: SpawnVehicleSecway - entities: - - uid: 2823 - components: - - type: Transform - pos: 11.5,25.5 - parent: 1668 -- proto: SS13Memorial - entities: - - uid: 486 - components: - - type: Transform - pos: 26.5,7.5 - parent: 1668 -- proto: StasisBed - entities: - - uid: 609 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 1668 -- proto: StatueVenusBlue - entities: - - uid: 4180 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 1668 -- proto: StatueVenusRed - entities: - - uid: 4179 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 1668 -- proto: Stool - entities: - - uid: 2913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1668 -- proto: StoolBar - entities: - - uid: 4412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1668 - - uid: 4413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 1668 - - uid: 4414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 1668 -- proto: StorageCanister - entities: - - uid: 3661 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: Stunbaton - entities: - - uid: 2746 - components: - - type: Transform - pos: 4.4667654,19.499214 - parent: 1668 -- proto: SubstationBasic - entities: - - uid: 1130 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 1668 - - uid: 1802 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1668 - - uid: 1803 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1668 - - uid: 2199 - components: - - type: Transform - pos: 27.5,-31.5 - parent: 1668 - - uid: 2521 - components: - - type: Transform - pos: 15.5,19.5 - parent: 1668 - - uid: 3432 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - uid: 3949 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1668 - - uid: 4815 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1668 - - uid: 4816 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 1668 - - uid: 5958 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 1668 -- proto: SuitStorageBasic - entities: - - uid: 1185 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 1668 - - uid: 1188 - components: - - type: Transform - pos: -10.5,-5.5 - parent: 1668 - - uid: 3431 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 1668 -- proto: SuitStorageCaptain - entities: - - uid: 3768 - components: - - type: Transform - pos: -11.5,4.5 - parent: 1668 -- proto: SuitStorageCE - entities: - - uid: 6490 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 1668 -- proto: SuitStorageCMO - entities: - - uid: 6497 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 1668 -- proto: SuitStorageHOS - entities: - - uid: 6496 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 1668 -- proto: SuitStorageRD - entities: - - uid: 6493 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 1668 -- proto: SurveillanceCameraCommand - entities: - - uid: 6817 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Operator Room - - uid: 6818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - - uid: 6819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HighSec Storage Room - - uid: 6820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Reception - - uid: 6821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Conference Room - - uid: 6822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Bedroom - - uid: 6825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT West Room - - uid: 6826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT East Room - - uid: 6827 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT Central Room -- proto: SurveillanceCameraEngineering - entities: - - uid: 5407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - - uid: 6790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Lobby - - uid: 6791 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Supply - - uid: 6792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Generation - - uid: 6793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Generation - - uid: 6810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Substation - - uid: 6823 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command Substation - - uid: 6824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West Substation - - uid: 6828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medbay Substation - - uid: 6829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Substation -- proto: SurveillanceCameraGeneral - entities: - - uid: 6830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals East - - uid: 6831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals West - - uid: 6832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway North - - uid: 6833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway West - - uid: 6834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking SouthWest - - uid: 6835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-31.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthWest - - uid: 6836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthEast - - uid: 6837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway East - - uid: 6838 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway NorthEast - - uid: 6839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking West - - uid: 6840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,5.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Waiting Room West - - uid: 6841 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West Hallway -- proto: SurveillanceCameraMedical - entities: - - uid: 6794 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - - uid: 6795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 6796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 6864 - components: - - type: Transform - pos: 29.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 6871 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 6869 - components: - - type: Transform - pos: 29.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 6870 - components: - - type: Transform - pos: 33.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 6873 - components: - - type: Transform - pos: 30.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 6867 - components: - - type: Transform - pos: 31.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraRouterService - entities: - - uid: 6872 - components: - - type: Transform - pos: 31.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 6868 - components: - - type: Transform - pos: 30.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraSecurity - entities: - - uid: 6765 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Service checkpoint - - uid: 6801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room north - - uid: 6802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room south - - uid: 6803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Judge room - - uid: 6804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig lobby - - uid: 6805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden room - - uid: 6806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - - uid: 6807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig west - - uid: 6808 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 6809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig east - - uid: 6815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay checkpoint - - uid: 6816 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals checkpoint -- proto: SurveillanceCameraService - entities: - - uid: 6797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 6798 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Canteen - - uid: 6799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 6800 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Jani closet -- proto: SurveillanceCameraSupply - entities: - - uid: 6811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo lobby - - uid: 6812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo command room - - uid: 6813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay north - - uid: 6814 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay south -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6866 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6865 - components: - - type: Transform - pos: 33.5,-30.5 - parent: 1668 -- proto: Table - entities: - - uid: 528 - components: - - type: Transform - pos: 21.5,5.5 - parent: 1668 - - uid: 529 - components: - - type: Transform - pos: 31.5,5.5 - parent: 1668 - - uid: 530 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 1668 - - uid: 631 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - uid: 632 - components: - - type: Transform - pos: 15.5,1.5 - parent: 1668 - - uid: 633 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 1668 - - uid: 807 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - uid: 808 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 1668 - - uid: 1180 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 1668 - - uid: 1181 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 1668 - - uid: 2043 - components: - - type: Transform - pos: -1.5,19.5 - parent: 1668 - - uid: 2163 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - uid: 2164 - components: - - type: Transform - pos: -3.5,12.5 - parent: 1668 - - uid: 2165 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1668 - - uid: 2166 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1668 - - uid: 2210 - components: - - type: Transform - pos: -6.5,31.5 - parent: 1668 - - uid: 2211 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1668 - - uid: 2212 - components: - - type: Transform - pos: -5.5,24.5 - parent: 1668 - - uid: 2213 - components: - - type: Transform - pos: -5.5,25.5 - parent: 1668 - - uid: 2214 - components: - - type: Transform - pos: -5.5,26.5 - parent: 1668 - - uid: 2215 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1668 - - uid: 2216 - components: - - type: Transform - pos: -10.5,31.5 - parent: 1668 - - uid: 2826 - components: - - type: Transform - pos: 5.5,21.5 - parent: 1668 - - uid: 3142 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1668 - - uid: 3143 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - uid: 3182 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1668 - - uid: 3183 - components: - - type: Transform - pos: 10.5,10.5 - parent: 1668 - - uid: 3260 - components: - - type: Transform - pos: 8.5,23.5 - parent: 1668 - - uid: 5244 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 1668 - - uid: 5245 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 1668 - - uid: 5247 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 1668 - - uid: 5248 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 1668 - - uid: 5329 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 1668 - - uid: 5330 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 1668 - - uid: 5339 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 1668 - - uid: 5421 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1668 - - uid: 6151 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 1668 - - uid: 6270 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 1668 - - uid: 6571 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 1668 - - uid: 6572 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 1668 - - uid: 6581 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 1668 - - uid: 6582 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 1668 - - uid: 6583 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 1668 - - uid: 6584 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 1668 - - uid: 6624 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1668 - - uid: 6625 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 1668 -- proto: TableCarpet - entities: - - uid: 699 - components: - - type: Transform - pos: 18.5,14.5 - parent: 1668 - - uid: 6595 - components: - - type: Transform - pos: 18.5,12.5 - parent: 1668 - - uid: 6606 - components: - - type: Transform - pos: 18.5,13.5 - parent: 1668 -- proto: TableReinforced - entities: - - uid: 98 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1668 - - uid: 99 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 - - uid: 126 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1668 - - uid: 206 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1668 - - uid: 216 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 1668 - - uid: 217 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 1668 - - uid: 218 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 219 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 489 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 1668 - - uid: 491 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 1668 - - uid: 494 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 1668 - - uid: 500 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1668 - - uid: 501 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 1668 - - uid: 503 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 1668 - - uid: 504 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 1668 - - uid: 505 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1668 - - uid: 513 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - uid: 514 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 1668 - - uid: 596 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1668 - - uid: 597 - components: - - type: Transform - pos: 10.5,4.5 - parent: 1668 - - uid: 598 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 599 - components: - - type: Transform - pos: 13.5,6.5 - parent: 1668 - - uid: 600 - components: - - type: Transform - pos: 14.5,6.5 - parent: 1668 - - uid: 601 - components: - - type: Transform - pos: 15.5,6.5 - parent: 1668 - - uid: 613 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 1668 - - uid: 614 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 1668 - - uid: 615 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 1668 - - uid: 618 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 1668 - - uid: 641 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1668 - - uid: 642 - components: - - type: Transform - pos: -0.5,1.5 - parent: 1668 - - uid: 643 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1668 - - uid: 645 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1668 - - uid: 646 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1668 - - uid: 647 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 1668 - - uid: 648 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1668 - - uid: 738 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1668 - - uid: 770 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1668 - - uid: 771 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 1668 - - uid: 794 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1668 - - uid: 805 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1668 - - uid: 809 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1668 - - uid: 810 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 1668 - - uid: 811 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1668 - - uid: 812 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1668 - - uid: 1194 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 1668 - - uid: 1427 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1668 - - uid: 1433 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1668 - - uid: 1617 - components: - - type: Transform - pos: -4.5,9.5 - parent: 1668 - - uid: 1618 - components: - - type: Transform - pos: -4.5,10.5 - parent: 1668 - - uid: 1636 - components: - - type: Transform - pos: -9.5,8.5 - parent: 1668 - - uid: 1637 - components: - - type: Transform - pos: -8.5,8.5 - parent: 1668 - - uid: 1638 - components: - - type: Transform - pos: -7.5,8.5 - parent: 1668 - - uid: 1639 - components: - - type: Transform - pos: -12.5,9.5 - parent: 1668 - - uid: 1640 - components: - - type: Transform - pos: -12.5,10.5 - parent: 1668 - - uid: 1641 - components: - - type: Transform - pos: -12.5,11.5 - parent: 1668 - - uid: 1642 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - uid: 1643 - components: - - type: Transform - pos: -9.5,12.5 - parent: 1668 - - uid: 1654 - components: - - type: Transform - pos: -15.5,14.5 - parent: 1668 - - uid: 1655 - components: - - type: Transform - pos: -14.5,14.5 - parent: 1668 - - uid: 1656 - components: - - type: Transform - pos: -15.5,17.5 - parent: 1668 - - uid: 1657 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1668 - - uid: 2423 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1668 - - uid: 2424 - components: - - type: Transform - pos: 23.5,16.5 - parent: 1668 - - uid: 2720 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1668 - - uid: 2721 - components: - - type: Transform - pos: 4.5,19.5 - parent: 1668 - - uid: 2822 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1668 - - uid: 2875 - components: - - type: Transform - pos: 8.5,29.5 - parent: 1668 - - uid: 2878 - components: - - type: Transform - pos: 8.5,32.5 - parent: 1668 - - uid: 2879 - components: - - type: Transform - pos: 10.5,32.5 - parent: 1668 - - uid: 2891 - components: - - type: Transform - pos: 2.5,30.5 - parent: 1668 - - uid: 2892 - components: - - type: Transform - pos: 2.5,31.5 - parent: 1668 - - uid: 2893 - components: - - type: Transform - pos: 2.5,32.5 - parent: 1668 - - uid: 2894 - components: - - type: Transform - pos: 16.5,30.5 - parent: 1668 - - uid: 2895 - components: - - type: Transform - pos: 16.5,31.5 - parent: 1668 - - uid: 2896 - components: - - type: Transform - pos: 16.5,32.5 - parent: 1668 - - uid: 3079 - components: - - type: Transform - pos: 8.5,17.5 - parent: 1668 - - uid: 3255 - components: - - type: Transform - pos: 16.5,19.5 - parent: 1668 - - uid: 3412 - components: - - type: Transform - pos: -18.5,4.5 - parent: 1668 - - uid: 3413 - components: - - type: Transform - pos: -19.5,4.5 - parent: 1668 - - uid: 3414 - components: - - type: Transform - pos: -20.5,4.5 - parent: 1668 - - uid: 3415 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3416 - components: - - type: Transform - pos: -20.5,6.5 - parent: 1668 - - uid: 3632 - components: - - type: Transform - pos: -12.5,4.5 - parent: 1668 - - uid: 3634 - components: - - type: Transform - pos: -10.5,4.5 - parent: 1668 - - uid: 3635 - components: - - type: Transform - pos: -10.5,6.5 - parent: 1668 - - uid: 3636 - components: - - type: Transform - pos: -11.5,6.5 - parent: 1668 - - uid: 3637 - components: - - type: Transform - pos: -12.5,6.5 - parent: 1668 - - uid: 3697 - components: - - type: Transform - pos: -16.5,6.5 - parent: 1668 - - uid: 3798 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 1668 - - uid: 3799 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 1668 - - uid: 3800 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1668 - - uid: 3801 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1668 - - uid: 3802 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 1668 - - uid: 3803 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 1668 - - uid: 3804 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 1668 - - uid: 3805 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 1668 - - uid: 3806 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 1668 - - uid: 3807 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 1668 - - uid: 3808 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 1668 - - uid: 3809 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 1668 - - uid: 3810 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1668 - - uid: 3811 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1668 - - uid: 3812 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1668 - - uid: 3813 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1668 - - uid: 3814 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 1668 - - uid: 3815 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1668 - - uid: 3816 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 1668 - - uid: 3817 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1668 - - uid: 3819 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 1668 - - uid: 3820 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 1668 - - uid: 3822 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1668 - - uid: 4256 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 1668 - - uid: 4263 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 1668 - - uid: 4344 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 1668 - - uid: 4347 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1668 - - uid: 4348 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 1668 - - uid: 4349 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 1668 - - uid: 4350 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1668 - - uid: 4351 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 1668 - - uid: 4352 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 1668 - - uid: 4430 - components: - - type: Transform - pos: 3.5,-25.5 - parent: 1668 - - uid: 4431 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 1668 - - uid: 4432 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1668 - - uid: 4433 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 1668 - - uid: 4452 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 1668 - - uid: 4459 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 1668 - - uid: 4466 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 1668 - - uid: 4467 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 1668 - - uid: 4582 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 1668 - - uid: 4583 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 1668 - - uid: 4584 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 1668 - - uid: 4586 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1668 - - uid: 4587 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1668 - - uid: 4588 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 1668 - - uid: 4749 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 5312 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 1668 - - uid: 5313 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 1668 - - uid: 5315 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 1668 - - uid: 5316 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 1668 - - uid: 5317 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 1668 - - uid: 6453 - components: - - type: Transform - pos: -6.5,-43.5 - parent: 1668 - - uid: 6454 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 1668 - - uid: 6455 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 1668 - - uid: 6456 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 1668 - - uid: 6457 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 1668 - - uid: 6458 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 1668 - - uid: 6459 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 1668 - - uid: 6460 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 1668 - - uid: 6461 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 1668 - - uid: 6462 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 1668 - - uid: 6767 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1668 -- proto: TableWood - entities: - - uid: 2352 - components: - - type: Transform - pos: 32.5,15.5 - parent: 1668 - - uid: 2353 - components: - - type: Transform - pos: 32.5,16.5 - parent: 1668 - - uid: 2354 - components: - - type: Transform - pos: 32.5,17.5 - parent: 1668 - - uid: 2355 - components: - - type: Transform - pos: 32.5,18.5 - parent: 1668 - - uid: 2356 - components: - - type: Transform - pos: 32.5,19.5 - parent: 1668 - - uid: 2357 - components: - - type: Transform - pos: 27.5,20.5 - parent: 1668 - - uid: 2358 - components: - - type: Transform - pos: 28.5,20.5 - parent: 1668 - - uid: 2359 - components: - - type: Transform - pos: 29.5,20.5 - parent: 1668 - - uid: 2360 - components: - - type: Transform - pos: 29.5,21.5 - parent: 1668 - - uid: 2361 - components: - - type: Transform - pos: 27.5,21.5 - parent: 1668 - - uid: 2362 - components: - - type: Transform - pos: 30.5,20.5 - parent: 1668 - - uid: 2363 - components: - - type: Transform - pos: 26.5,20.5 - parent: 1668 - - uid: 2364 - components: - - type: Transform - pos: 22.5,23.5 - parent: 1668 - - uid: 2365 - components: - - type: Transform - pos: 34.5,23.5 - parent: 1668 - - uid: 2366 - components: - - type: Transform - pos: 30.5,23.5 - parent: 1668 - - uid: 2367 - components: - - type: Transform - pos: 29.5,23.5 - parent: 1668 - - uid: 2368 - components: - - type: Transform - pos: 27.5,23.5 - parent: 1668 - - uid: 2369 - components: - - type: Transform - pos: 26.5,23.5 - parent: 1668 - - uid: 2411 - components: - - type: Transform - pos: 27.5,17.5 - parent: 1668 - - uid: 2412 - components: - - type: Transform - pos: 26.5,17.5 - parent: 1668 - - uid: 2413 - components: - - type: Transform - pos: 30.5,17.5 - parent: 1668 - - uid: 2414 - components: - - type: Transform - pos: 29.5,17.5 - parent: 1668 - - uid: 2435 - components: - - type: Transform - pos: 28.5,10.5 - parent: 1668 - - uid: 2436 - components: - - type: Transform - pos: 34.5,11.5 - parent: 1668 - - uid: 2437 - components: - - type: Transform - pos: 34.5,12.5 - parent: 1668 - - uid: 2486 - components: - - type: Transform - pos: 20.5,20.5 - parent: 1668 - - uid: 2487 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1668 - - uid: 2488 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1668 - - uid: 3394 - components: - - type: Transform - pos: -25.5,8.5 - parent: 1668 - - uid: 3395 - components: - - type: Transform - pos: -26.5,8.5 - parent: 1668 - - uid: 3396 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1668 - - uid: 3397 - components: - - type: Transform - pos: -26.5,11.5 - parent: 1668 - - uid: 3398 - components: - - type: Transform - pos: -26.5,12.5 - parent: 1668 - - uid: 3399 - components: - - type: Transform - pos: -25.5,12.5 - parent: 1668 - - uid: 3400 - components: - - type: Transform - pos: -15.5,12.5 - parent: 1668 - - uid: 3401 - components: - - type: Transform - pos: -14.5,12.5 - parent: 1668 - - uid: 3402 - components: - - type: Transform - pos: -16.5,12.5 - parent: 1668 - - uid: 3403 - components: - - type: Transform - pos: -16.5,8.5 - parent: 1668 - - uid: 3404 - components: - - type: Transform - pos: -19.5,10.5 - parent: 1668 - - uid: 3405 - components: - - type: Transform - pos: -20.5,10.5 - parent: 1668 - - uid: 3406 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1668 - - uid: 3407 - components: - - type: Transform - pos: -20.5,12.5 - parent: 1668 - - uid: 3409 - components: - - type: Transform - pos: -18.5,8.5 - parent: 1668 - - uid: 3410 - components: - - type: Transform - pos: -24.5,4.5 - parent: 1668 - - uid: 3411 - components: - - type: Transform - pos: -23.5,4.5 - parent: 1668 - - uid: 3417 - components: - - type: Transform - pos: -23.5,2.5 - parent: 1668 - - uid: 3418 - components: - - type: Transform - pos: -18.5,2.5 - parent: 1668 - - uid: 3445 - components: - - type: Transform - pos: -23.5,10.5 - parent: 1668 - - uid: 3446 - components: - - type: Transform - pos: -23.5,11.5 - parent: 1668 - - uid: 3829 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 1668 - - uid: 3830 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 1668 - - uid: 3831 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 1668 - - uid: 3832 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 1668 - - uid: 3833 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 1668 - - uid: 3834 - components: - - type: Transform - pos: -24.5,-3.5 - parent: 1668 - - uid: 3835 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 1668 - - uid: 3836 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1668 - - uid: 4184 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 1668 - - uid: 4369 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 1668 - - uid: 4370 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4371 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 1668 - - uid: 4372 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 1668 - - uid: 4373 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1668 - - uid: 4374 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 1668 - - uid: 4418 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 1668 - - uid: 4419 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 1668 - - uid: 4420 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 1668 - - uid: 4421 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 1668 - - uid: 4422 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 1668 - - uid: 4423 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 1668 - - uid: 4424 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 1668 - - uid: 6728 - components: - - type: Transform - pos: 18.5,10.5 - parent: 1668 -- proto: TelecomServerFilled - entities: - - uid: 3121 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 1668 -- proto: Telecrystal5 - entities: - - uid: 3772 - components: - - type: Transform - pos: -10.611931,6.5603595 - parent: 1668 -- proto: TintedWindow - entities: - - uid: 2752 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1668 - - uid: 2760 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1668 -- proto: ToiletEmpty - entities: - - uid: 3420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1668 -- proto: ToolboxMechanicalFilled - entities: - - uid: 3900 - components: - - type: Transform - pos: -12.610057,-7.2428913 - parent: 1668 -- proto: ToyFigurineAtmosTech - entities: - - uid: 6889 - components: - - type: Transform - pos: 16.377594,-29.299969 - parent: 1668 -- proto: ToyFigurineBartender - entities: - - uid: 6898 - components: - - type: Transform - pos: 6.5385118,-24.247501 - parent: 1668 -- proto: ToyFigurineBoxer - entities: - - uid: 793 - components: - - type: Transform - pos: 2.494053,-15.45146 - parent: 1668 -- proto: ToyFigurineCaptain - entities: - - uid: 1189 - components: - - type: Transform - pos: -12.035681,6.6117244 - parent: 1668 -- proto: ToyFigurineCargoTech - entities: - - uid: 6897 - components: - - type: Transform - pos: -5.366757,26.262602 - parent: 1668 -- proto: ToyFigurineChaplain - entities: - - uid: 1186 - components: - - type: Transform - pos: 2.6200008,16.762861 - parent: 1668 -- proto: ToyFigurineChef - entities: - - uid: 6899 - components: - - type: Transform - pos: -10.860091,-28.497501 - parent: 1668 -- proto: ToyFigurineChemist - entities: - - uid: 6901 - components: - - type: Transform - pos: 3.7089076,-9.834605 - parent: 1668 -- proto: ToyFigurineChiefEngineer - entities: - - uid: 6892 - components: - - type: Transform - pos: 27.221512,-23.216656 - parent: 1668 -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 6900 - components: - - type: Transform - pos: 13.343676,-12.106804 - parent: 1668 -- proto: ToyFigurineClown - entities: - - uid: 6907 - components: - - type: Transform - pos: -8.574588,-33.40033 - parent: 1668 -- proto: ToyFigurineDetective - entities: - - uid: 2145 - components: - - type: Transform - pos: 8.249651,23.679073 - parent: 1668 -- proto: ToyFigurineEngineer - entities: - - uid: 6891 - components: - - type: Transform - pos: 26.955887,-23.01353 - parent: 1668 -- proto: ToyFigurineGreytider - entities: - - uid: 2142 - components: - - type: Transform - pos: -1.5147417,19.684673 - parent: 1668 -- proto: ToyFigurineHamlet - entities: - - uid: 6503 - components: - - type: Transform - pos: -9.969621,-28.458797 - parent: 1668 -- proto: ToyFigurineHeadOfPersonnel - entities: - - uid: 6500 - components: - - type: Transform - pos: 2.714695,-2.0789247 - parent: 1668 -- proto: ToyFigurineHeadOfSecurity - entities: - - uid: 592 - components: - - type: Transform - pos: 8.675076,17.818161 - parent: 1668 -- proto: ToyFigurineJanitor - entities: - - uid: 6905 - components: - - type: Transform - pos: -18.176952,-31.706894 - parent: 1668 -- proto: ToyFigurineLawyer - entities: - - uid: 6904 - components: - - type: Transform - pos: 19.429096,21.772528 - parent: 1668 -- proto: ToyFigurineLibrarian - entities: - - uid: 6903 - components: - - type: Transform - pos: 18.65788,12.674046 - parent: 1668 -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 6902 - components: - - type: Transform - pos: 9.723116,-4.147105 - parent: 1668 -- proto: ToyFigurineMime - entities: - - uid: 6908 - components: - - type: Transform - pos: 9.395194,-30.337831 - parent: 1668 -- proto: ToyFigurineMusician - entities: - - uid: 6499 - components: - - type: Transform - pos: 0.78786826,-28.113647 - parent: 1668 -- proto: ToyFigurineParamedic - entities: - - uid: 3427 - components: - - type: Transform - pos: 10.656263,-7.212401 - parent: 1668 -- proto: ToyFigurinePassenger - entities: - - uid: 3428 - components: - - type: Transform - pos: 21.387323,5.715851 - parent: 1668 -- proto: ToyFigurineQuartermaster - entities: - - uid: 6896 - components: - - type: Transform - pos: -15.016072,14.885906 - parent: 1668 -- proto: ToyFigurineRatKing - entities: - - uid: 6906 - components: - - type: Transform - pos: 18.512383,13.407988 - parent: 1668 -- proto: ToyFigurineResearchDirector - entities: - - uid: 3429 - components: - - type: Transform - pos: -32.494865,6.5819006 - parent: 1668 -- proto: ToyFigurineSalvage - entities: - - uid: 6895 - components: - - type: Transform - pos: -5.514065,26.593782 - parent: 1668 -- proto: ToyFigurineSecurity - entities: - - uid: 6488 - components: - - type: Transform - pos: 10.024659,25.7943 - parent: 1668 - - uid: 6893 - components: - - type: Transform - pos: 27.445951,-11.38564 - parent: 1668 -- proto: ToyFigurineWarden - entities: - - uid: 6894 - components: - - type: Transform - pos: 4.3459373,19.764877 - parent: 1668 -- proto: ToyRubberDuck - entities: - - uid: 3423 - components: - - type: Transform - pos: -20.47715,15.513819 - parent: 1668 -- proto: TwoWayLever - entities: - - uid: 1588 - components: - - type: Transform - pos: -12.5,23.5 - parent: 1668 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1576: - - Left: Forward - - Right: Reverse - - Middle: Off - 1577: - - Left: Forward - - Right: Reverse - - Middle: Off - 1578: - - Left: Forward - - Right: Reverse - - Middle: Off - 1579: - - Left: Forward - - Right: Reverse - - Middle: Off - 1580: - - Left: Forward - - Right: Reverse - - Middle: Off - 1581: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 1589 - components: - - type: Transform - pos: -12.5,29.5 - parent: 1668 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1582: - - Left: Forward - - Right: Reverse - - Middle: Off - 1583: - - Left: Forward - - Right: Reverse - - Middle: Off - 1584: - - Left: Forward - - Right: Reverse - - Middle: Off - 1585: - - Left: Forward - - Right: Reverse - - Middle: Off - 1586: - - Left: Forward - - Right: Reverse - - Middle: Off - 1587: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5906 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5902: - - Left: Forward - - Right: Reverse - - Middle: Off - 5903: - - Left: Forward - - Right: Reverse - - Middle: Off - 5904: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5907 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5908: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: VehicleKeySecway - entities: - - uid: 3149 - components: - - type: Transform - pos: 10.387553,25.600338 - parent: 1668 -- proto: VendingMachineAmmo - entities: - - uid: 2821 - components: - - type: Transform - pos: 8.5,27.5 - parent: 1668 -- proto: VendingMachineBooze - entities: - - uid: 3408 - components: - - type: Transform - pos: -20.5,8.5 - parent: 1668 - - uid: 4415 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 1668 - - uid: 4416 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 1668 -- proto: VendingMachineCargoDrobe - entities: - - uid: 2209 - components: - - type: Transform - pos: -5.5,31.5 - parent: 1668 -- proto: VendingMachineCart - entities: - - uid: 764 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 1668 -- proto: VendingMachineCentDrobe - entities: - - uid: 649 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1668 - - uid: 2444 - components: - - type: Transform - pos: -14.5,10.5 - parent: 1668 -- proto: VendingMachineChang - entities: - - uid: 1406 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1668 - - uid: 2445 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 1668 - - uid: 6573 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 1668 -- proto: VendingMachineChefvend - entities: - - uid: 4262 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 1668 -- proto: VendingMachineChemicals - entities: - - uid: 644 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 1668 -- proto: VendingMachineCigs - entities: - - uid: 2439 - components: - - type: Transform - pos: 29.5,10.5 - parent: 1668 - - uid: 6574 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 1668 -- proto: VendingMachineClothing - entities: - - uid: 2738 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 1668 - - uid: 6150 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 1668 -- proto: VendingMachineCoffee - entities: - - uid: 2438 - components: - - type: Transform - pos: 27.5,10.5 - parent: 1668 - - uid: 5463 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1668 - - uid: 6591 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 1668 -- proto: VendingMachineCola - entities: - - uid: 2192 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1668 - - uid: 4403 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 1668 -- proto: VendingMachineColaBlack - entities: - - uid: 6729 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 1668 -- proto: VendingMachineCondiments - entities: - - uid: 6626 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1668 -- proto: VendingMachineDinnerware - entities: - - uid: 4578 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 1668 -- proto: VendingMachineDiscount - entities: - - uid: 3185 - components: - - type: Transform - pos: 9.5,10.5 - parent: 1668 - - uid: 6651 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 1668 -- proto: VendingMachineDonut - entities: - - uid: 3186 - components: - - type: Transform - pos: 11.5,10.5 - parent: 1668 -- proto: VendingMachineEngivend - entities: - - uid: 5250 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 1668 -- proto: VendingMachineGames - entities: - - uid: 6608 - components: - - type: Transform - pos: 16.5,10.5 - parent: 1668 -- proto: VendingMachineLawDrobe - entities: - - uid: 2489 - components: - - type: Transform - pos: 18.5,23.5 - parent: 1668 -- proto: VendingMachineMedical - entities: - - uid: 617 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 1668 - - uid: 6601 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 1668 -- proto: VendingMachinePwrGame - entities: - - uid: 6634 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 1668 -- proto: VendingMachineSalvage - entities: - - uid: 6938 - components: - - type: Transform - pos: -8.5,31.5 - parent: 1668 -- proto: VendingMachineSec - entities: - - uid: 2820 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1668 - - uid: 3259 - components: - - type: Transform - pos: 8.5,21.5 - parent: 1668 - - uid: 5457 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 1668 -- proto: VendingMachineSnack - entities: - - uid: 4166 - components: - - type: Transform - pos: -29.5,3.5 - parent: 1668 - - uid: 4401 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 1668 -- proto: VendingMachineSnackOrange - entities: - - uid: 6726 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 1668 -- proto: VendingMachineSnackTeal - entities: - - uid: 6727 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 -- proto: VendingMachineSoda - entities: - - uid: 6648 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1668 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6556 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 1668 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2045 - components: - - type: Transform - pos: -3.5,23.5 - parent: 1668 - - uid: 4286 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1668 - - uid: 6555 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 1668 -- proto: VendingMachineTheater - entities: - - uid: 2448 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1668 -- proto: VendingMachineWinter - entities: - - uid: 2443 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 1668 -- proto: VendingMachineYouTool - entities: - - uid: 5251 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 1668 -- proto: WallmountTelescreen - entities: - - uid: 3449 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1668 -- proto: WallmountTelevision - entities: - - uid: 3452 - components: - - type: Transform - pos: -23.5,1.5 - parent: 1668 -- proto: WallRiveted - entities: - - uid: 1 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1668 - - uid: 2 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 3 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1668 - - uid: 4 - components: - - type: Transform - pos: 8.5,2.5 - parent: 1668 - - uid: 5 - components: - - type: Transform - pos: 7.5,2.5 - parent: 1668 - - uid: 6 - components: - - type: Transform - pos: 6.5,2.5 - parent: 1668 - - uid: 7 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1668 - - uid: 8 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 9 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 1668 - - uid: 10 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 1668 - - uid: 11 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 1668 - - uid: 12 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 1668 - - uid: 13 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 1668 - - uid: 14 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1668 - - uid: 70 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 1668 - - uid: 71 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 1668 - - uid: 72 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1668 - - uid: 73 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1668 - - uid: 74 - components: - - type: Transform - pos: 1.5,2.5 - parent: 1668 - - uid: 75 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 78 - components: - - type: Transform - pos: 5.5,7.5 - parent: 1668 - - uid: 86 - components: - - type: Transform - pos: 3.5,5.5 - parent: 1668 - - uid: 87 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1668 - - uid: 88 - components: - - type: Transform - pos: 2.5,7.5 - parent: 1668 - - uid: 89 - components: - - type: Transform - pos: 1.5,7.5 - parent: 1668 - - uid: 90 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1668 - - uid: 91 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1668 - - uid: 96 - components: - - type: Transform - pos: 5.5,5.5 - parent: 1668 - - uid: 97 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1668 - - uid: 100 - components: - - type: Transform - pos: 6.5,5.5 - parent: 1668 - - uid: 101 - components: - - type: Transform - pos: 6.5,4.5 - parent: 1668 - - uid: 102 - components: - - type: Transform - pos: 8.5,4.5 - parent: 1668 - - uid: 113 - components: - - type: Transform - pos: 16.5,1.5 - parent: 1668 - - uid: 114 - components: - - type: Transform - pos: 16.5,2.5 - parent: 1668 - - uid: 115 - components: - - type: Transform - pos: 17.5,2.5 - parent: 1668 - - uid: 116 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1668 - - uid: 117 - components: - - type: Transform - pos: 18.5,1.5 - parent: 1668 - - uid: 118 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 1668 - - uid: 119 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 1668 - - uid: 120 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 1668 - - uid: 121 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 1668 - - uid: 122 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 1668 - - uid: 137 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 1668 - - uid: 138 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 1668 - - uid: 139 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 1668 - - uid: 140 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 1668 - - uid: 141 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1668 - - uid: 142 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1668 - - uid: 143 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 1668 - - uid: 144 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 1668 - - uid: 145 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 1668 - - uid: 146 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 147 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 1668 - - uid: 174 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 1668 - - uid: 175 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 1668 - - uid: 176 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 1668 - - uid: 177 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 1668 - - uid: 178 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 179 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 1668 - - uid: 180 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 1668 - - uid: 181 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 1668 - - uid: 182 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1668 - - uid: 184 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 1668 - - uid: 185 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 1668 - - uid: 187 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 1668 - - uid: 188 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 1668 - - uid: 209 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 1668 - - uid: 210 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 1668 - - uid: 211 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 1668 - - uid: 213 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 1668 - - uid: 229 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 1668 - - uid: 230 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 1668 - - uid: 231 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 1668 - - uid: 232 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 1668 - - uid: 233 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 1668 - - uid: 234 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 1668 - - uid: 235 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 1668 - - uid: 236 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 1668 - - uid: 237 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 1668 - - uid: 248 - components: - - type: Transform - pos: 16.5,4.5 - parent: 1668 - - uid: 249 - components: - - type: Transform - pos: 18.5,3.5 - parent: 1668 - - uid: 250 - components: - - type: Transform - pos: 18.5,4.5 - parent: 1668 - - uid: 251 - components: - - type: Transform - pos: 18.5,6.5 - parent: 1668 - - uid: 252 - components: - - type: Transform - pos: 18.5,7.5 - parent: 1668 - - uid: 253 - components: - - type: Transform - pos: 18.5,8.5 - parent: 1668 - - uid: 256 - components: - - type: Transform - pos: 16.5,7.5 - parent: 1668 - - uid: 257 - components: - - type: Transform - pos: 16.5,6.5 - parent: 1668 - - uid: 258 - components: - - type: Transform - pos: 15.5,7.5 - parent: 1668 - - uid: 273 - components: - - type: Transform - pos: 8.5,7.5 - parent: 1668 - - uid: 274 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1668 - - uid: 276 - components: - - type: Transform - pos: 12.5,9.5 - parent: 1668 - - uid: 277 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 293 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1668 - - uid: 294 - components: - - type: Transform - pos: 4.5,9.5 - parent: 1668 - - uid: 295 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1668 - - uid: 296 - components: - - type: Transform - pos: 5.5,8.5 - parent: 1668 - - uid: 300 - components: - - type: Transform - pos: 15.5,9.5 - parent: 1668 - - uid: 315 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1668 - - uid: 316 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 1668 - - uid: 317 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 1668 - - uid: 318 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 1668 - - uid: 319 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 1668 - - uid: 320 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1668 - - uid: 321 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 1668 - - uid: 322 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 1668 - - uid: 323 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 1668 - - uid: 324 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 1668 - - uid: 325 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 1668 - - uid: 326 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 1668 - - uid: 328 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 1668 - - uid: 329 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 1668 - - uid: 330 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 1668 - - uid: 331 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 1668 - - uid: 332 - components: - - type: Transform - pos: -9.5,-5.5 - parent: 1668 - - uid: 333 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 1668 - - uid: 334 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 1668 - - uid: 335 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 1668 - - uid: 346 - components: - - type: Transform - pos: 19.5,6.5 - parent: 1668 - - uid: 349 - components: - - type: Transform - pos: 22.5,6.5 - parent: 1668 - - uid: 350 - components: - - type: Transform - pos: 23.5,6.5 - parent: 1668 - - uid: 351 - components: - - type: Transform - pos: 24.5,6.5 - parent: 1668 - - uid: 352 - components: - - type: Transform - pos: 28.5,6.5 - parent: 1668 - - uid: 353 - components: - - type: Transform - pos: 29.5,6.5 - parent: 1668 - - uid: 354 - components: - - type: Transform - pos: 30.5,6.5 - parent: 1668 - - uid: 356 - components: - - type: Transform - pos: 32.5,6.5 - parent: 1668 - - uid: 357 - components: - - type: Transform - pos: 33.5,6.5 - parent: 1668 - - uid: 358 - components: - - type: Transform - pos: 34.5,6.5 - parent: 1668 - - uid: 359 - components: - - type: Transform - pos: 35.5,6.5 - parent: 1668 - - uid: 362 - components: - - type: Transform - pos: 18.5,9.5 - parent: 1668 - - uid: 363 - components: - - type: Transform - pos: 19.5,9.5 - parent: 1668 - - uid: 364 - components: - - type: Transform - pos: 20.5,9.5 - parent: 1668 - - uid: 365 - components: - - type: Transform - pos: 21.5,9.5 - parent: 1668 - - uid: 366 - components: - - type: Transform - pos: 22.5,9.5 - parent: 1668 - - uid: 367 - components: - - type: Transform - pos: 23.5,9.5 - parent: 1668 - - uid: 368 - components: - - type: Transform - pos: 24.5,9.5 - parent: 1668 - - uid: 369 - components: - - type: Transform - pos: 25.5,9.5 - parent: 1668 - - uid: 370 - components: - - type: Transform - pos: 26.5,9.5 - parent: 1668 - - uid: 371 - components: - - type: Transform - pos: 27.5,9.5 - parent: 1668 - - uid: 372 - components: - - type: Transform - pos: 28.5,9.5 - parent: 1668 - - uid: 373 - components: - - type: Transform - pos: 29.5,9.5 - parent: 1668 - - uid: 374 - components: - - type: Transform - pos: 30.5,9.5 - parent: 1668 - - uid: 375 - components: - - type: Transform - pos: 31.5,9.5 - parent: 1668 - - uid: 376 - components: - - type: Transform - pos: 32.5,9.5 - parent: 1668 - - uid: 377 - components: - - type: Transform - pos: 33.5,9.5 - parent: 1668 - - uid: 378 - components: - - type: Transform - pos: 34.5,9.5 - parent: 1668 - - uid: 379 - components: - - type: Transform - pos: 35.5,9.5 - parent: 1668 - - uid: 380 - components: - - type: Transform - pos: 35.5,8.5 - parent: 1668 - - uid: 381 - components: - - type: Transform - pos: 35.5,7.5 - parent: 1668 - - uid: 382 - components: - - type: Transform - pos: 34.5,8.5 - parent: 1668 - - uid: 383 - components: - - type: Transform - pos: 34.5,7.5 - parent: 1668 - - uid: 384 - components: - - type: Transform - pos: 28.5,8.5 - parent: 1668 - - uid: 385 - components: - - type: Transform - pos: 24.5,8.5 - parent: 1668 - - uid: 386 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 1668 - - uid: 387 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 1668 - - uid: 388 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 1668 - - uid: 389 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 390 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 1668 - - uid: 391 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 1668 - - uid: 392 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 1668 - - uid: 394 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 1668 - - uid: 395 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 1668 - - uid: 397 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 1668 - - uid: 398 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 1668 - - uid: 399 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 1668 - - uid: 400 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 1668 - - uid: 402 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 1668 - - uid: 403 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 1668 - - uid: 404 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 1668 - - uid: 405 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 1668 - - uid: 406 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 1668 - - uid: 407 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1668 - - uid: 409 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 1668 - - uid: 410 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 1668 - - uid: 411 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 1668 - - uid: 412 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 1668 - - uid: 413 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 1668 - - uid: 414 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 1668 - - uid: 415 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 1668 - - uid: 416 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 1668 - - uid: 417 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 1668 - - uid: 418 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 1668 - - uid: 419 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 1668 - - uid: 420 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 1668 - - uid: 421 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 1668 - - uid: 422 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 1668 - - uid: 423 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 1668 - - uid: 424 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 1668 - - uid: 425 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 1668 - - uid: 426 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 1668 - - uid: 427 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 1668 - - uid: 428 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 429 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 1668 - - uid: 430 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 1668 - - uid: 431 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 1668 - - uid: 432 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 1668 - - uid: 433 - components: - - type: Transform - pos: 35.5,0.5 - parent: 1668 - - uid: 468 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 1668 - - uid: 470 - components: - - type: Transform - pos: 33.5,0.5 - parent: 1668 - - uid: 658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1668 - - uid: 659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1668 - - uid: 660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1668 - - uid: 661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1668 - - uid: 662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1668 - - uid: 663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1668 - - uid: 664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1668 - - uid: 665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1668 - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1668 - - uid: 667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1668 - - uid: 668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1668 - - uid: 669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1668 - - uid: 686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1668 - - uid: 687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1668 - - uid: 689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1668 - - uid: 690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1668 - - uid: 691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1668 - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1668 - - uid: 693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1668 - - uid: 694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1668 - - uid: 695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1668 - - uid: 696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1668 - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 1668 - - uid: 698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1668 - - uid: 724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - - uid: 726 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 1668 - - uid: 727 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 1668 - - uid: 728 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 1668 - - uid: 745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 1668 - - uid: 746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 1668 - - uid: 747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 1668 - - uid: 748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 1668 - - uid: 749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1668 - - uid: 750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1668 - - uid: 751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 1668 - - uid: 752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1668 - - uid: 753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1668 - - uid: 754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 1668 - - uid: 755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1668 - - uid: 756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 1668 - - uid: 757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1668 - - uid: 806 - components: - - type: Transform - pos: 35.5,-29.5 - parent: 1668 - - uid: 826 - components: - - type: Transform - pos: -13.5,11.5 - parent: 1668 - - uid: 827 - components: - - type: Transform - pos: -13.5,12.5 - parent: 1668 - - uid: 832 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 1668 - - uid: 835 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 1668 - - uid: 837 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 1668 - - uid: 838 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 1668 - - uid: 839 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 1668 - - uid: 840 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 841 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 1668 - - uid: 842 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 1668 - - uid: 843 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 1668 - - uid: 844 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 1668 - - uid: 851 - components: - - type: Transform - pos: -13.5,10.5 - parent: 1668 - - uid: 898 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 1080 - components: - - type: Transform - pos: -13.5,9.5 - parent: 1668 - - uid: 1081 - components: - - type: Transform - pos: -13.5,8.5 - parent: 1668 - - uid: 1082 - components: - - type: Transform - pos: -13.5,7.5 - parent: 1668 - - uid: 1083 - components: - - type: Transform - pos: -12.5,7.5 - parent: 1668 - - uid: 1084 - components: - - type: Transform - pos: -11.5,7.5 - parent: 1668 - - uid: 1085 - components: - - type: Transform - pos: -10.5,7.5 - parent: 1668 - - uid: 1132 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 1668 - - uid: 1133 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 1668 - - uid: 1134 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 1668 - - uid: 1135 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 1668 - - uid: 1136 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 1668 - - uid: 1138 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 1668 - - uid: 1139 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 1668 - - uid: 1141 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 1668 - - uid: 1142 - components: - - type: Transform - pos: 35.5,-14.5 - parent: 1668 - - uid: 1143 - components: - - type: Transform - pos: 35.5,-15.5 - parent: 1668 - - uid: 1144 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 1668 - - uid: 1145 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 1668 - - uid: 1152 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 1668 - - uid: 1183 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 1668 - - uid: 1184 - components: - - type: Transform - pos: 35.5,-10.5 - parent: 1668 - - uid: 1322 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1668 - - uid: 1392 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 1668 - - uid: 1394 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 1668 - - uid: 1395 - components: - - type: Transform - pos: 35.5,-32.5 - parent: 1668 - - uid: 1408 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1668 - - uid: 1409 - components: - - type: Transform - pos: -2.5,17.5 - parent: 1668 - - uid: 1410 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 1411 - components: - - type: Transform - pos: 3.5,17.5 - parent: 1668 - - uid: 1412 - components: - - type: Transform - pos: 3.5,15.5 - parent: 1668 - - uid: 1413 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1668 - - uid: 1414 - components: - - type: Transform - pos: -4.5,14.5 - parent: 1668 - - uid: 1415 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1668 - - uid: 1416 - components: - - type: Transform - pos: -4.5,12.5 - parent: 1668 - - uid: 1490 - components: - - type: Transform - pos: -5.5,13.5 - parent: 1668 - - uid: 1491 - components: - - type: Transform - pos: -7.5,13.5 - parent: 1668 - - uid: 1492 - components: - - type: Transform - pos: -9.5,13.5 - parent: 1668 - - uid: 1493 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1494 - components: - - type: Transform - pos: -8.5,14.5 - parent: 1668 - - uid: 1495 - components: - - type: Transform - pos: -11.5,13.5 - parent: 1668 - - uid: 1496 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1668 - - uid: 1497 - components: - - type: Transform - pos: -13.5,13.5 - parent: 1668 - - uid: 1498 - components: - - type: Transform - pos: -14.5,13.5 - parent: 1668 - - uid: 1499 - components: - - type: Transform - pos: -15.5,13.5 - parent: 1668 - - uid: 1500 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 1501 - components: - - type: Transform - pos: -16.5,14.5 - parent: 1668 - - uid: 1502 - components: - - type: Transform - pos: -16.5,15.5 - parent: 1668 - - uid: 1503 - components: - - type: Transform - pos: -16.5,16.5 - parent: 1668 - - uid: 1504 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1505 - components: - - type: Transform - pos: -8.5,16.5 - parent: 1668 - - uid: 1506 - components: - - type: Transform - pos: -8.5,17.5 - parent: 1668 - - uid: 1507 - components: - - type: Transform - pos: -8.5,18.5 - parent: 1668 - - uid: 1508 - components: - - type: Transform - pos: -7.5,18.5 - parent: 1668 - - uid: 1509 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1668 - - uid: 1510 - components: - - type: Transform - pos: -5.5,18.5 - parent: 1668 - - uid: 1511 - components: - - type: Transform - pos: -9.5,18.5 - parent: 1668 - - uid: 1512 - components: - - type: Transform - pos: -11.5,18.5 - parent: 1668 - - uid: 1523 - components: - - type: Transform - pos: -2.5,18.5 - parent: 1668 - - uid: 1524 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1668 - - uid: 1525 - components: - - type: Transform - pos: -3.5,19.5 - parent: 1668 - - uid: 1526 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1668 - - uid: 1527 - components: - - type: Transform - pos: 1.5,18.5 - parent: 1668 - - uid: 1528 - components: - - type: Transform - pos: 1.5,19.5 - parent: 1668 - - uid: 1529 - components: - - type: Transform - pos: 2.5,19.5 - parent: 1668 - - uid: 1530 - components: - - type: Transform - pos: 3.5,19.5 - parent: 1668 - - uid: 1531 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1668 - - uid: 1532 - components: - - type: Transform - pos: 0.5,17.5 - parent: 1668 - - uid: 1535 - components: - - type: Transform - pos: -1.5,17.5 - parent: 1668 - - uid: 1536 - components: - - type: Transform - pos: 3.5,21.5 - parent: 1668 - - uid: 1537 - components: - - type: Transform - pos: 3.5,20.5 - parent: 1668 - - uid: 1538 - components: - - type: Transform - pos: -14.5,19.5 - parent: 1668 - - uid: 1553 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1668 - - uid: 1554 - components: - - type: Transform - pos: -4.5,22.5 - parent: 1668 - - uid: 1555 - components: - - type: Transform - pos: -4.5,23.5 - parent: 1668 - - uid: 1556 - components: - - type: Transform - pos: -4.5,24.5 - parent: 1668 - - uid: 1557 - components: - - type: Transform - pos: -4.5,25.5 - parent: 1668 - - uid: 1558 - components: - - type: Transform - pos: -4.5,26.5 - parent: 1668 - - uid: 1559 - components: - - type: Transform - pos: -4.5,27.5 - parent: 1668 - - uid: 1560 - components: - - type: Transform - pos: -4.5,28.5 - parent: 1668 - - uid: 1561 - components: - - type: Transform - pos: -4.5,29.5 - parent: 1668 - - uid: 1562 - components: - - type: Transform - pos: -4.5,30.5 - parent: 1668 - - uid: 1563 - components: - - type: Transform - pos: -4.5,31.5 - parent: 1668 - - uid: 1564 - components: - - type: Transform - pos: -4.5,32.5 - parent: 1668 - - uid: 1565 - components: - - type: Transform - pos: -5.5,32.5 - parent: 1668 - - uid: 1567 - components: - - type: Transform - pos: -11.5,32.5 - parent: 1668 - - uid: 1568 - components: - - type: Transform - pos: -11.5,34.5 - parent: 1668 - - uid: 1569 - components: - - type: Transform - pos: -7.5,33.5 - parent: 1668 - - uid: 1570 - components: - - type: Transform - pos: -7.5,32.5 - parent: 1668 - - uid: 1571 - components: - - type: Transform - pos: -11.5,33.5 - parent: 1668 - - uid: 1573 - components: - - type: Transform - pos: -13.5,32.5 - parent: 1668 - - uid: 1574 - components: - - type: Transform - pos: -14.5,32.5 - parent: 1668 - - uid: 1575 - components: - - type: Transform - pos: -14.5,31.5 - parent: 1668 - - uid: 1664 - components: - - type: Transform - pos: -7.5,34.5 - parent: 1668 - - uid: 1665 - components: - - type: Transform - pos: -8.5,34.5 - parent: 1668 - - uid: 1666 - components: - - type: Transform - pos: -10.5,34.5 - parent: 1668 - - uid: 1794 - components: - - type: Transform - pos: 3.5,22.5 - parent: 1668 - - uid: 1795 - components: - - type: Transform - pos: 2.5,22.5 - parent: 1668 - - uid: 1796 - components: - - type: Transform - pos: 1.5,22.5 - parent: 1668 - - uid: 1797 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1668 - - uid: 1798 - components: - - type: Transform - pos: 0.5,23.5 - parent: 1668 - - uid: 1799 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 1800 - components: - - type: Transform - pos: -2.5,22.5 - parent: 1668 - - uid: 1801 - components: - - type: Transform - pos: -3.5,22.5 - parent: 1668 - - uid: 1994 - components: - - type: Transform - pos: 4.5,15.5 - parent: 1668 - - uid: 1995 - components: - - type: Transform - pos: 5.5,15.5 - parent: 1668 - - uid: 1996 - components: - - type: Transform - pos: 5.5,16.5 - parent: 1668 - - uid: 1997 - components: - - type: Transform - pos: 5.5,17.5 - parent: 1668 - - uid: 1998 - components: - - type: Transform - pos: 4.5,17.5 - parent: 1668 - - uid: 2005 - components: - - type: Transform - pos: 0.5,24.5 - parent: 1668 - - uid: 2006 - components: - - type: Transform - pos: 0.5,25.5 - parent: 1668 - - uid: 2007 - components: - - type: Transform - pos: -0.5,25.5 - parent: 1668 - - uid: 2008 - components: - - type: Transform - pos: -1.5,25.5 - parent: 1668 - - uid: 2009 - components: - - type: Transform - pos: -3.5,25.5 - parent: 1668 - - uid: 2238 - components: - - type: Transform - pos: 17.5,9.5 - parent: 1668 - - uid: 2239 - components: - - type: Transform - pos: 16.5,9.5 - parent: 1668 - - uid: 2245 - components: - - type: Transform - pos: 15.5,15.5 - parent: 1668 - - uid: 2251 - components: - - type: Transform - pos: 15.5,16.5 - parent: 1668 - - uid: 2252 - components: - - type: Transform - pos: 15.5,17.5 - parent: 1668 - - uid: 2253 - components: - - type: Transform - pos: 16.5,17.5 - parent: 1668 - - uid: 2254 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2255 - components: - - type: Transform - pos: 18.5,17.5 - parent: 1668 - - uid: 2256 - components: - - type: Transform - pos: 20.5,17.5 - parent: 1668 - - uid: 2257 - components: - - type: Transform - pos: 21.5,10.5 - parent: 1668 - - uid: 2258 - components: - - type: Transform - pos: 21.5,13.5 - parent: 1668 - - uid: 2259 - components: - - type: Transform - pos: 21.5,14.5 - parent: 1668 - - uid: 2260 - components: - - type: Transform - pos: 21.5,15.5 - parent: 1668 - - uid: 2261 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1668 - - uid: 2262 - components: - - type: Transform - pos: 21.5,17.5 - parent: 1668 - - uid: 2263 - components: - - type: Transform - pos: 35.5,10.5 - parent: 1668 - - uid: 2264 - components: - - type: Transform - pos: 35.5,11.5 - parent: 1668 - - uid: 2265 - components: - - type: Transform - pos: 35.5,12.5 - parent: 1668 - - uid: 2266 - components: - - type: Transform - pos: 35.5,13.5 - parent: 1668 - - uid: 2267 - components: - - type: Transform - pos: 35.5,14.5 - parent: 1668 - - uid: 2268 - components: - - type: Transform - pos: 35.5,15.5 - parent: 1668 - - uid: 2274 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2275 - components: - - type: Transform - pos: 32.5,14.5 - parent: 1668 - - uid: 2292 - components: - - type: Transform - pos: 35.5,16.5 - parent: 1668 - - uid: 2293 - components: - - type: Transform - pos: 35.5,17.5 - parent: 1668 - - uid: 2294 - components: - - type: Transform - pos: 35.5,18.5 - parent: 1668 - - uid: 2295 - components: - - type: Transform - pos: 35.5,19.5 - parent: 1668 - - uid: 2296 - components: - - type: Transform - pos: 35.5,20.5 - parent: 1668 - - uid: 2297 - components: - - type: Transform - pos: 35.5,21.5 - parent: 1668 - - uid: 2298 - components: - - type: Transform - pos: 35.5,22.5 - parent: 1668 - - uid: 2301 - components: - - type: Transform - pos: 17.5,18.5 - parent: 1668 - - uid: 2302 - components: - - type: Transform - pos: 17.5,19.5 - parent: 1668 - - uid: 2303 - components: - - type: Transform - pos: 17.5,20.5 - parent: 1668 - - uid: 2304 - components: - - type: Transform - pos: 17.5,21.5 - parent: 1668 - - uid: 2305 - components: - - type: Transform - pos: 17.5,22.5 - parent: 1668 - - uid: 2306 - components: - - type: Transform - pos: 17.5,23.5 - parent: 1668 - - uid: 2307 - components: - - type: Transform - pos: 17.5,24.5 - parent: 1668 - - uid: 2308 - components: - - type: Transform - pos: 18.5,24.5 - parent: 1668 - - uid: 2309 - components: - - type: Transform - pos: 19.5,24.5 - parent: 1668 - - uid: 2310 - components: - - type: Transform - pos: 20.5,24.5 - parent: 1668 - - uid: 2311 - components: - - type: Transform - pos: 21.5,24.5 - parent: 1668 - - uid: 2312 - components: - - type: Transform - pos: 21.5,23.5 - parent: 1668 - - uid: 2313 - components: - - type: Transform - pos: 21.5,19.5 - parent: 1668 - - uid: 2314 - components: - - type: Transform - pos: 21.5,20.5 - parent: 1668 - - uid: 2315 - components: - - type: Transform - pos: 21.5,21.5 - parent: 1668 - - uid: 2318 - components: - - type: Transform - pos: 35.5,23.5 - parent: 1668 - - uid: 2319 - components: - - type: Transform - pos: 35.5,24.5 - parent: 1668 - - uid: 2320 - components: - - type: Transform - pos: 34.5,24.5 - parent: 1668 - - uid: 2321 - components: - - type: Transform - pos: 33.5,24.5 - parent: 1668 - - uid: 2322 - components: - - type: Transform - pos: 32.5,24.5 - parent: 1668 - - uid: 2323 - components: - - type: Transform - pos: 31.5,24.5 - parent: 1668 - - uid: 2324 - components: - - type: Transform - pos: 30.5,24.5 - parent: 1668 - - uid: 2325 - components: - - type: Transform - pos: 29.5,24.5 - parent: 1668 - - uid: 2326 - components: - - type: Transform - pos: 28.5,24.5 - parent: 1668 - - uid: 2327 - components: - - type: Transform - pos: 27.5,24.5 - parent: 1668 - - uid: 2328 - components: - - type: Transform - pos: 26.5,24.5 - parent: 1668 - - uid: 2329 - components: - - type: Transform - pos: 25.5,24.5 - parent: 1668 - - uid: 2330 - components: - - type: Transform - pos: 24.5,24.5 - parent: 1668 - - uid: 2331 - components: - - type: Transform - pos: 23.5,24.5 - parent: 1668 - - uid: 2332 - components: - - type: Transform - pos: 22.5,24.5 - parent: 1668 - - uid: 2333 - components: - - type: Transform - pos: 22.5,20.5 - parent: 1668 - - uid: 2334 - components: - - type: Transform - pos: 24.5,20.5 - parent: 1668 - - uid: 2335 - components: - - type: Transform - pos: 34.5,20.5 - parent: 1668 - - uid: 2336 - components: - - type: Transform - pos: 32.5,20.5 - parent: 1668 - - uid: 2350 - components: - - type: Transform - pos: 35.5,-28.5 - parent: 1668 - - uid: 2501 - components: - - type: Transform - pos: 13.5,16.5 - parent: 1668 - - uid: 2502 - components: - - type: Transform - pos: 13.5,17.5 - parent: 1668 - - uid: 2503 - components: - - type: Transform - pos: 13.5,18.5 - parent: 1668 - - uid: 2504 - components: - - type: Transform - pos: 13.5,19.5 - parent: 1668 - - uid: 2508 - components: - - type: Transform - pos: 10.5,19.5 - parent: 1668 - - uid: 2514 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 2515 - components: - - type: Transform - pos: 6.5,16.5 - parent: 1668 - - uid: 2516 - components: - - type: Transform - pos: 10.5,20.5 - parent: 1668 - - uid: 2517 - components: - - type: Transform - pos: 13.5,20.5 - parent: 1668 - - uid: 2518 - components: - - type: Transform - pos: 14.5,20.5 - parent: 1668 - - uid: 2519 - components: - - type: Transform - pos: 15.5,20.5 - parent: 1668 - - uid: 2520 - components: - - type: Transform - pos: 16.5,20.5 - parent: 1668 - - uid: 2547 - components: - - type: Transform - pos: 7.5,20.5 - parent: 1668 - - uid: 2548 - components: - - type: Transform - pos: 6.5,20.5 - parent: 1668 - - uid: 2549 - components: - - type: Transform - pos: 5.5,20.5 - parent: 1668 - - uid: 2550 - components: - - type: Transform - pos: 4.5,20.5 - parent: 1668 - - uid: 2551 - components: - - type: Transform - pos: 7.5,17.5 - parent: 1668 - - uid: 2552 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1668 - - uid: 2559 - components: - - type: Transform - pos: 16.5,23.5 - parent: 1668 - - uid: 2560 - components: - - type: Transform - pos: 15.5,23.5 - parent: 1668 - - uid: 2561 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1668 - - uid: 2748 - components: - - type: Transform - pos: 3.5,26.5 - parent: 1668 - - uid: 2749 - components: - - type: Transform - pos: 4.5,26.5 - parent: 1668 - - uid: 2750 - components: - - type: Transform - pos: 1.5,26.5 - parent: 1668 - - uid: 2751 - components: - - type: Transform - pos: 4.5,23.5 - parent: 1668 - - uid: 2753 - components: - - type: Transform - pos: 3.5,23.5 - parent: 1668 - - uid: 2757 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1668 - - uid: 2759 - components: - - type: Transform - pos: 7.5,23.5 - parent: 1668 - - uid: 2761 - components: - - type: Transform - pos: 2.5,26.5 - parent: 1668 - - uid: 2766 - components: - - type: Transform - pos: 17.5,25.5 - parent: 1668 - - uid: 2767 - components: - - type: Transform - pos: 17.5,26.5 - parent: 1668 - - uid: 2768 - components: - - type: Transform - pos: 16.5,26.5 - parent: 1668 - - uid: 2769 - components: - - type: Transform - pos: 15.5,26.5 - parent: 1668 - - uid: 2770 - components: - - type: Transform - pos: 14.5,26.5 - parent: 1668 - - uid: 2783 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 2788 - components: - - type: Transform - pos: 11.5,30.5 - parent: 1668 - - uid: 2789 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1668 - - uid: 2793 - components: - - type: Transform - pos: 7.5,32.5 - parent: 1668 - - uid: 2794 - components: - - type: Transform - pos: 14.5,33.5 - parent: 1668 - - uid: 2795 - components: - - type: Transform - pos: 13.5,33.5 - parent: 1668 - - uid: 2796 - components: - - type: Transform - pos: 12.5,33.5 - parent: 1668 - - uid: 2797 - components: - - type: Transform - pos: 11.5,33.5 - parent: 1668 - - uid: 2798 - components: - - type: Transform - pos: 10.5,33.5 - parent: 1668 - - uid: 2799 - components: - - type: Transform - pos: 9.5,33.5 - parent: 1668 - - uid: 2800 - components: - - type: Transform - pos: 8.5,33.5 - parent: 1668 - - uid: 2801 - components: - - type: Transform - pos: 7.5,33.5 - parent: 1668 - - uid: 2802 - components: - - type: Transform - pos: 6.5,33.5 - parent: 1668 - - uid: 2803 - components: - - type: Transform - pos: 5.5,33.5 - parent: 1668 - - uid: 2804 - components: - - type: Transform - pos: 4.5,33.5 - parent: 1668 - - uid: 2805 - components: - - type: Transform - pos: 3.5,33.5 - parent: 1668 - - uid: 2806 - components: - - type: Transform - pos: 2.5,33.5 - parent: 1668 - - uid: 2807 - components: - - type: Transform - pos: 1.5,33.5 - parent: 1668 - - uid: 2814 - components: - - type: Transform - pos: 11.5,32.5 - parent: 1668 - - uid: 2833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 1668 - - uid: 2834 - components: - - type: Transform - pos: 1.5,23.5 - parent: 1668 - - uid: 2835 - components: - - type: Transform - pos: 1.5,24.5 - parent: 1668 - - uid: 2836 - components: - - type: Transform - pos: 1.5,25.5 - parent: 1668 - - uid: 2837 - components: - - type: Transform - pos: 1.5,27.5 - parent: 1668 - - uid: 2838 - components: - - type: Transform - pos: 1.5,28.5 - parent: 1668 - - uid: 2839 - components: - - type: Transform - pos: 1.5,29.5 - parent: 1668 - - uid: 2840 - components: - - type: Transform - pos: 1.5,30.5 - parent: 1668 - - uid: 2841 - components: - - type: Transform - pos: 1.5,31.5 - parent: 1668 - - uid: 2842 - components: - - type: Transform - pos: 1.5,32.5 - parent: 1668 - - uid: 2843 - components: - - type: Transform - pos: 17.5,27.5 - parent: 1668 - - uid: 2844 - components: - - type: Transform - pos: 17.5,28.5 - parent: 1668 - - uid: 2845 - components: - - type: Transform - pos: 17.5,29.5 - parent: 1668 - - uid: 2846 - components: - - type: Transform - pos: 17.5,30.5 - parent: 1668 - - uid: 2847 - components: - - type: Transform - pos: 17.5,31.5 - parent: 1668 - - uid: 2848 - components: - - type: Transform - pos: 17.5,32.5 - parent: 1668 - - uid: 2849 - components: - - type: Transform - pos: 17.5,33.5 - parent: 1668 - - uid: 2850 - components: - - type: Transform - pos: 16.5,33.5 - parent: 1668 - - uid: 2851 - components: - - type: Transform - pos: 15.5,33.5 - parent: 1668 - - uid: 2852 - components: - - type: Transform - pos: 16.5,29.5 - parent: 1668 - - uid: 2853 - components: - - type: Transform - pos: 14.5,29.5 - parent: 1668 - - uid: 2854 - components: - - type: Transform - pos: 15.5,29.5 - parent: 1668 - - uid: 2855 - components: - - type: Transform - pos: 2.5,29.5 - parent: 1668 - - uid: 2856 - components: - - type: Transform - pos: 3.5,29.5 - parent: 1668 - - uid: 2857 - components: - - type: Transform - pos: 4.5,29.5 - parent: 1668 - - uid: 2883 - components: - - type: Transform - pos: 4.5,32.5 - parent: 1668 - - uid: 2884 - components: - - type: Transform - pos: 14.5,32.5 - parent: 1668 - - uid: 2885 - components: - - type: Transform - pos: 4.5,30.5 - parent: 1668 - - uid: 2888 - components: - - type: Transform - pos: 14.5,30.5 - parent: 1668 - - uid: 3140 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 1668 - - uid: 3184 - components: - - type: Transform - pos: 0.5,26.5 - parent: 1668 - - uid: 3187 - components: - - type: Transform - pos: 0.5,27.5 - parent: 1668 - - uid: 3188 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1668 - - uid: 3189 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1668 - - uid: 3190 - components: - - type: Transform - pos: 0.5,30.5 - parent: 1668 - - uid: 3191 - components: - - type: Transform - pos: 0.5,31.5 - parent: 1668 - - uid: 3192 - components: - - type: Transform - pos: 0.5,32.5 - parent: 1668 - - uid: 3193 - components: - - type: Transform - pos: 0.5,33.5 - parent: 1668 - - uid: 3194 - components: - - type: Transform - pos: 0.5,34.5 - parent: 1668 - - uid: 3195 - components: - - type: Transform - pos: 1.5,34.5 - parent: 1668 - - uid: 3196 - components: - - type: Transform - pos: 2.5,34.5 - parent: 1668 - - uid: 3197 - components: - - type: Transform - pos: 3.5,34.5 - parent: 1668 - - uid: 3198 - components: - - type: Transform - pos: 4.5,34.5 - parent: 1668 - - uid: 3199 - components: - - type: Transform - pos: 5.5,34.5 - parent: 1668 - - uid: 3200 - components: - - type: Transform - pos: 6.5,34.5 - parent: 1668 - - uid: 3201 - components: - - type: Transform - pos: 7.5,34.5 - parent: 1668 - - uid: 3202 - components: - - type: Transform - pos: 8.5,34.5 - parent: 1668 - - uid: 3203 - components: - - type: Transform - pos: 9.5,34.5 - parent: 1668 - - uid: 3204 - components: - - type: Transform - pos: 10.5,34.5 - parent: 1668 - - uid: 3205 - components: - - type: Transform - pos: 11.5,34.5 - parent: 1668 - - uid: 3206 - components: - - type: Transform - pos: 12.5,34.5 - parent: 1668 - - uid: 3207 - components: - - type: Transform - pos: 13.5,34.5 - parent: 1668 - - uid: 3208 - components: - - type: Transform - pos: 14.5,34.5 - parent: 1668 - - uid: 3209 - components: - - type: Transform - pos: 15.5,34.5 - parent: 1668 - - uid: 3210 - components: - - type: Transform - pos: 16.5,34.5 - parent: 1668 - - uid: 3211 - components: - - type: Transform - pos: 17.5,34.5 - parent: 1668 - - uid: 3212 - components: - - type: Transform - pos: 18.5,34.5 - parent: 1668 - - uid: 3213 - components: - - type: Transform - pos: 18.5,33.5 - parent: 1668 - - uid: 3214 - components: - - type: Transform - pos: 18.5,32.5 - parent: 1668 - - uid: 3215 - components: - - type: Transform - pos: 18.5,31.5 - parent: 1668 - - uid: 3216 - components: - - type: Transform - pos: 18.5,30.5 - parent: 1668 - - uid: 3217 - components: - - type: Transform - pos: 18.5,29.5 - parent: 1668 - - uid: 3218 - components: - - type: Transform - pos: 18.5,28.5 - parent: 1668 - - uid: 3219 - components: - - type: Transform - pos: 18.5,27.5 - parent: 1668 - - uid: 3220 - components: - - type: Transform - pos: 18.5,26.5 - parent: 1668 - - uid: 3221 - components: - - type: Transform - pos: 18.5,25.5 - parent: 1668 - - uid: 3222 - components: - - type: Transform - pos: 35.5,25.5 - parent: 1668 - - uid: 3223 - components: - - type: Transform - pos: 34.5,25.5 - parent: 1668 - - uid: 3224 - components: - - type: Transform - pos: 33.5,25.5 - parent: 1668 - - uid: 3225 - components: - - type: Transform - pos: 32.5,25.5 - parent: 1668 - - uid: 3226 - components: - - type: Transform - pos: 31.5,25.5 - parent: 1668 - - uid: 3227 - components: - - type: Transform - pos: 30.5,25.5 - parent: 1668 - - uid: 3228 - components: - - type: Transform - pos: 29.5,25.5 - parent: 1668 - - uid: 3229 - components: - - type: Transform - pos: 28.5,25.5 - parent: 1668 - - uid: 3230 - components: - - type: Transform - pos: 27.5,25.5 - parent: 1668 - - uid: 3231 - components: - - type: Transform - pos: 26.5,25.5 - parent: 1668 - - uid: 3232 - components: - - type: Transform - pos: 25.5,25.5 - parent: 1668 - - uid: 3233 - components: - - type: Transform - pos: 24.5,25.5 - parent: 1668 - - uid: 3234 - components: - - type: Transform - pos: 23.5,25.5 - parent: 1668 - - uid: 3235 - components: - - type: Transform - pos: 22.5,25.5 - parent: 1668 - - uid: 3236 - components: - - type: Transform - pos: 21.5,25.5 - parent: 1668 - - uid: 3237 - components: - - type: Transform - pos: 20.5,25.5 - parent: 1668 - - uid: 3238 - components: - - type: Transform - pos: 19.5,25.5 - parent: 1668 - - uid: 3262 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 1668 - - uid: 3263 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 1668 - - uid: 3264 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 1668 - - uid: 3265 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 1668 - - uid: 3266 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 1668 - - uid: 3267 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 1668 - - uid: 3268 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 1668 - - uid: 3269 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 1668 - - uid: 3270 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 1668 - - uid: 3271 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 1668 - - uid: 3272 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 1668 - - uid: 3273 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 1668 - - uid: 3274 - components: - - type: Transform - pos: -17.5,13.5 - parent: 1668 - - uid: 3275 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1668 - - uid: 3276 - components: - - type: Transform - pos: -19.5,13.5 - parent: 1668 - - uid: 3277 - components: - - type: Transform - pos: -19.5,14.5 - parent: 1668 - - uid: 3278 - components: - - type: Transform - pos: -19.5,15.5 - parent: 1668 - - uid: 3279 - components: - - type: Transform - pos: -19.5,16.5 - parent: 1668 - - uid: 3280 - components: - - type: Transform - pos: -20.5,16.5 - parent: 1668 - - uid: 3281 - components: - - type: Transform - pos: -21.5,16.5 - parent: 1668 - - uid: 3282 - components: - - type: Transform - pos: -22.5,16.5 - parent: 1668 - - uid: 3283 - components: - - type: Transform - pos: -22.5,15.5 - parent: 1668 - - uid: 3284 - components: - - type: Transform - pos: -22.5,14.5 - parent: 1668 - - uid: 3285 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3286 - components: - - type: Transform - pos: -20.5,13.5 - parent: 1668 - - uid: 3294 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1668 - - uid: 3295 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1668 - - uid: 3296 - components: - - type: Transform - pos: -12.5,3.5 - parent: 1668 - - uid: 3297 - components: - - type: Transform - pos: -13.5,3.5 - parent: 1668 - - uid: 3298 - components: - - type: Transform - pos: -14.5,3.5 - parent: 1668 - - uid: 3299 - components: - - type: Transform - pos: -15.5,3.5 - parent: 1668 - - uid: 3300 - components: - - type: Transform - pos: -16.5,3.5 - parent: 1668 - - uid: 3301 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1668 - - uid: 3302 - components: - - type: Transform - pos: -17.5,2.5 - parent: 1668 - - uid: 3303 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 3304 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1668 - - uid: 3305 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 1668 - - uid: 3306 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1668 - - uid: 3307 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 1668 - - uid: 3308 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 3309 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 1668 - - uid: 3310 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 1668 - - uid: 3311 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 1668 - - uid: 3312 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 1668 - - uid: 3313 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 1668 - - uid: 3314 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 1668 - - uid: 3315 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 1668 - - uid: 3316 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 1668 - - uid: 3317 - components: - - type: Transform - pos: -18.5,1.5 - parent: 1668 - - uid: 3318 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1668 - - uid: 3319 - components: - - type: Transform - pos: -20.5,1.5 - parent: 1668 - - uid: 3320 - components: - - type: Transform - pos: -23.5,13.5 - parent: 1668 - - uid: 3321 - components: - - type: Transform - pos: -24.5,13.5 - parent: 1668 - - uid: 3322 - components: - - type: Transform - pos: -25.5,13.5 - parent: 1668 - - uid: 3323 - components: - - type: Transform - pos: -26.5,13.5 - parent: 1668 - - uid: 3324 - components: - - type: Transform - pos: -27.5,13.5 - parent: 1668 - - uid: 3325 - components: - - type: Transform - pos: -27.5,10.5 - parent: 1668 - - uid: 3326 - components: - - type: Transform - pos: -27.5,7.5 - parent: 1668 - - uid: 3331 - components: - - type: Transform - pos: -17.5,12.5 - parent: 1668 - - uid: 3332 - components: - - type: Transform - pos: -17.5,10.5 - parent: 1668 - - uid: 3333 - components: - - type: Transform - pos: -17.5,9.5 - parent: 1668 - - uid: 3334 - components: - - type: Transform - pos: -17.5,8.5 - parent: 1668 - - uid: 3335 - components: - - type: Transform - pos: -17.5,7.5 - parent: 1668 - - uid: 3336 - components: - - type: Transform - pos: -13.5,6.5 - parent: 1668 - - uid: 3337 - components: - - type: Transform - pos: -13.5,4.5 - parent: 1668 - - uid: 3338 - components: - - type: Transform - pos: -14.5,7.5 - parent: 1668 - - uid: 3339 - components: - - type: Transform - pos: -15.5,7.5 - parent: 1668 - - uid: 3340 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1668 - - uid: 3341 - components: - - type: Transform - pos: -17.5,4.5 - parent: 1668 - - uid: 3342 - components: - - type: Transform - pos: -17.5,6.5 - parent: 1668 - - uid: 3343 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1668 - - uid: 3344 - components: - - type: Transform - pos: -20.5,7.5 - parent: 1668 - - uid: 3345 - components: - - type: Transform - pos: -21.5,7.5 - parent: 1668 - - uid: 3346 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3347 - components: - - type: Transform - pos: -22.5,1.5 - parent: 1668 - - uid: 3348 - components: - - type: Transform - pos: -26.5,7.5 - parent: 1668 - - uid: 3349 - components: - - type: Transform - pos: -25.5,7.5 - parent: 1668 - - uid: 3350 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1668 - - uid: 3351 - components: - - type: Transform - pos: -25.5,6.5 - parent: 1668 - - uid: 3352 - components: - - type: Transform - pos: -23.5,1.5 - parent: 1668 - - uid: 3353 - components: - - type: Transform - pos: -24.5,1.5 - parent: 1668 - - uid: 3354 - components: - - type: Transform - pos: -25.5,1.5 - parent: 1668 - - uid: 3355 - components: - - type: Transform - pos: -25.5,2.5 - parent: 1668 - - uid: 3356 - components: - - type: Transform - pos: -25.5,3.5 - parent: 1668 - - uid: 3357 - components: - - type: Transform - pos: -25.5,4.5 - parent: 1668 - - uid: 3358 - components: - - type: Transform - pos: -25.5,5.5 - parent: 1668 - - uid: 3359 - components: - - type: Transform - pos: -28.5,1.5 - parent: 1668 - - uid: 3360 - components: - - type: Transform - pos: -28.5,2.5 - parent: 1668 - - uid: 3361 - components: - - type: Transform - pos: -28.5,3.5 - parent: 1668 - - uid: 3362 - components: - - type: Transform - pos: -26.5,1.5 - parent: 1668 - - uid: 3363 - components: - - type: Transform - pos: -28.5,5.5 - parent: 1668 - - uid: 3364 - components: - - type: Transform - pos: -28.5,6.5 - parent: 1668 - - uid: 3365 - components: - - type: Transform - pos: -28.5,7.5 - parent: 1668 - - uid: 3366 - components: - - type: Transform - pos: -27.5,1.5 - parent: 1668 - - uid: 3367 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 1668 - - uid: 3368 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 1668 - - uid: 3369 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 1668 - - uid: 3370 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 1668 - - uid: 3371 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 1668 - - uid: 3372 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 1668 - - uid: 3373 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 1668 - - uid: 3374 - components: - - type: Transform - pos: -18.5,-2.5 - parent: 1668 - - uid: 3375 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1668 - - uid: 3376 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1668 - - uid: 3377 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1668 - - uid: 3378 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1668 - - uid: 3379 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 1668 - - uid: 3380 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 1668 - - uid: 3381 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 1668 - - uid: 3382 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 1668 - - uid: 3383 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 1668 - - uid: 3384 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 1668 - - uid: 3443 - components: - - type: Transform - pos: -17.5,14.5 - parent: 1668 - - uid: 3444 - components: - - type: Transform - pos: -18.5,14.5 - parent: 1668 - - uid: 3780 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 3783 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 1668 - - uid: 3784 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 1668 - - uid: 3785 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 1668 - - uid: 3786 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 1668 - - uid: 3919 - components: - - type: Transform - pos: -29.5,2.5 - parent: 1668 - - uid: 3920 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 3921 - components: - - type: Transform - pos: -32.5,2.5 - parent: 1668 - - uid: 3922 - components: - - type: Transform - pos: -33.5,2.5 - parent: 1668 - - uid: 3923 - components: - - type: Transform - pos: -34.5,2.5 - parent: 1668 - - uid: 3924 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 1668 - - uid: 3925 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 1668 - - uid: 3926 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 1668 - - uid: 3927 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 1668 - - uid: 3928 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 1668 - - uid: 3929 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 1668 - - uid: 3930 - components: - - type: Transform - pos: -29.5,7.5 - parent: 1668 - - uid: 3931 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 3932 - components: - - type: Transform - pos: -34.5,7.5 - parent: 1668 - - uid: 4188 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 1668 - - uid: 4190 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 1668 - - uid: 4191 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 1668 - - uid: 4192 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 1668 - - uid: 4193 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 1668 - - uid: 4194 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 1668 - - uid: 4195 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 1668 - - uid: 4196 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 1668 - - uid: 4197 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 1668 - - uid: 4198 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 1668 - - uid: 4199 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1668 - - uid: 4202 - components: - - type: Transform - pos: -2.5,-20.5 - parent: 1668 - - uid: 4203 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1668 - - uid: 4204 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 1668 - - uid: 4205 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 1668 - - uid: 4206 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 1668 - - uid: 4207 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 1668 - - uid: 4208 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 1668 - - uid: 4209 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 1668 - - uid: 4210 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 1668 - - uid: 4211 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 1668 - - uid: 4212 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 1668 - - uid: 4213 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1668 - - uid: 4214 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 1668 - - uid: 4215 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 1668 - - uid: 4216 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1668 - - uid: 4217 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1668 - - uid: 4218 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 1668 - - uid: 4219 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 1668 - - uid: 4220 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4221 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 1668 - - uid: 4234 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 1668 - - uid: 4235 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 1668 - - uid: 4236 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 1668 - - uid: 4237 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 1668 - - uid: 4238 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 1668 - - uid: 4239 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 1668 - - uid: 4240 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 1668 - - uid: 4244 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 1668 - - uid: 4245 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 1668 - - uid: 4246 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 1668 - - uid: 4247 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 1668 - - uid: 4248 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 1668 - - uid: 4249 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 1668 - - uid: 4250 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 1668 - - uid: 4267 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 1668 - - uid: 4268 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 1668 - - uid: 4269 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 1668 - - uid: 4270 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 1668 - - uid: 4271 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 1668 - - uid: 4272 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 1668 - - uid: 4273 - components: - - type: Transform - pos: -6.5,-24.5 - parent: 1668 - - uid: 4274 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1668 - - uid: 4275 - components: - - type: Transform - pos: -8.5,-28.5 - parent: 1668 - - uid: 4276 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 1668 - - uid: 4277 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 1668 - - uid: 4278 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 1668 - - uid: 4279 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 1668 - - uid: 4280 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 1668 - - uid: 4281 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 1668 - - uid: 4282 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 1668 - - uid: 4283 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 1668 - - uid: 4284 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1668 - - uid: 4285 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 1668 - - uid: 4288 - components: - - type: Transform - pos: 11.5,-29.5 - parent: 1668 - - uid: 4289 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 1668 - - uid: 4290 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 1668 - - uid: 4291 - components: - - type: Transform - pos: 8.5,-29.5 - parent: 1668 - - uid: 4292 - components: - - type: Transform - pos: 7.5,-29.5 - parent: 1668 - - uid: 4293 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 1668 - - uid: 4294 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 1668 - - uid: 4295 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 1668 - - uid: 4296 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 1668 - - uid: 4297 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 1668 - - uid: 4298 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 1668 - - uid: 4300 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1668 - - uid: 4301 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 1668 - - uid: 4302 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 1668 - - uid: 4303 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 1668 - - uid: 4304 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 1668 - - uid: 4330 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4331 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 1668 - - uid: 4332 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 1668 - - uid: 4333 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 1668 - - uid: 4335 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 1668 - - uid: 4336 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 1668 - - uid: 4337 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 1668 - - uid: 4338 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 1668 - - uid: 4353 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 4356 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 1668 - - uid: 4357 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 1668 - - uid: 4358 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 1668 - - uid: 4362 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 1668 - - uid: 4363 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 1668 - - uid: 4364 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 1668 - - uid: 4368 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 4641 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 1668 - - uid: 4642 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1668 - - uid: 4643 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 1668 - - uid: 4644 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 1668 - - uid: 4645 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 1668 - - uid: 4646 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 1668 - - uid: 4647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 1668 - - uid: 4648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 1668 - - uid: 4654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1668 - - uid: 4655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1668 - - uid: 4656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 1668 - - uid: 4657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 1668 - - uid: 4658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1668 - - uid: 4659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 1668 - - uid: 4660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 1668 - - uid: 4661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 1668 - - uid: 4662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 1668 - - uid: 4666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 1668 - - uid: 4670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 1668 - - uid: 4674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 - - uid: 4675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 1668 - - uid: 4676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 1668 - - uid: 4677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 1668 - - uid: 4678 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 1668 - - uid: 4679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 1668 - - uid: 4680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 1668 - - uid: 4681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 1668 - - uid: 4682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-32.5 - parent: 1668 - - uid: 4683 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 1668 - - uid: 4684 - components: - - type: Transform - pos: 35.5,-18.5 - parent: 1668 - - uid: 4685 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 1668 - - uid: 4686 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 1668 - - uid: 4687 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 1668 - - uid: 4688 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 1668 - - uid: 4689 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 1668 - - uid: 4690 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 1668 - - uid: 4691 - components: - - type: Transform - pos: 35.5,-25.5 - parent: 1668 - - uid: 4692 - components: - - type: Transform - pos: 35.5,-26.5 - parent: 1668 - - uid: 4693 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 1668 - - uid: 4699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1668 - - uid: 4700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1668 - - uid: 4701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1668 - - uid: 4704 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 1668 - - uid: 4705 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 1668 - - uid: 4706 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 1668 - - uid: 4707 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 1668 - - uid: 4708 - components: - - type: Transform - pos: 26.5,-30.5 - parent: 1668 - - uid: 4709 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 1668 - - uid: 4710 - components: - - type: Transform - pos: 26.5,-28.5 - parent: 1668 - - uid: 4717 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 1668 - - uid: 4718 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 1668 - - uid: 4719 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 1668 - - uid: 4720 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 1668 - - uid: 4724 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 1668 - - uid: 4725 - components: - - type: Transform - pos: 14.5,-22.5 - parent: 1668 - - uid: 4726 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 1668 - - uid: 4727 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 1668 - - uid: 4728 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 1668 - - uid: 4729 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 1668 - - uid: 4730 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 1668 - - uid: 4731 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 1668 - - uid: 4732 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 1668 - - uid: 4733 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 1668 - - uid: 4734 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 1668 - - uid: 4735 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 1668 - - uid: 4736 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 1668 - - uid: 4737 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 4738 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 1668 - - uid: 4739 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 1668 - - uid: 4740 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 1668 - - uid: 4741 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 1668 - - uid: 4742 - components: - - type: Transform - pos: 14.5,-31.5 - parent: 1668 - - uid: 4743 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 1668 - - uid: 4744 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 1668 - - uid: 4745 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 1668 - - uid: 4747 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 1668 - - uid: 4748 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 1668 - - uid: 4758 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 1668 - - uid: 4759 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 1668 - - uid: 4760 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 4761 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 1668 - - uid: 5041 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 1668 - - uid: 5042 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 1668 - - uid: 5043 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 1668 - - uid: 5044 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 1668 - - uid: 5048 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5049 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 1668 - - uid: 5050 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 1668 - - uid: 5052 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 1668 - - uid: 5053 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 1668 - - uid: 5054 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 1668 - - uid: 5055 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 1668 - - uid: 5057 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 1668 - - uid: 5059 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 1668 - - uid: 5060 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 1668 - - uid: 5061 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 - - uid: 5062 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 1668 - - uid: 5063 - components: - - type: Transform - pos: 34.5,-27.5 - parent: 1668 - - uid: 5102 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 1668 - - uid: 5103 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5104 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 1668 - - uid: 5105 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 1668 - - uid: 5106 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 1668 - - uid: 5107 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 1668 - - uid: 5113 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 1668 - - uid: 5119 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 1668 - - uid: 5120 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 1668 - - uid: 5344 - components: - - type: Transform - pos: 33.5,-32.5 - parent: 1668 - - uid: 5355 - components: - - type: Transform - pos: 31.5,-32.5 - parent: 1668 - - uid: 5388 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 1668 - - uid: 5390 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1668 - - uid: 5392 - components: - - type: Transform - pos: 32.5,-32.5 - parent: 1668 - - uid: 5396 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 1668 - - uid: 5405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 1668 - - uid: 5409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 1668 - - uid: 5784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 1668 - - uid: 5864 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 1668 - - uid: 5879 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 1668 - - uid: 5881 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 1668 - - uid: 5882 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 1668 - - uid: 5905 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 1668 - - uid: 5909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 1668 - - uid: 5913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 1668 - - uid: 5917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 1668 - - uid: 5918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 1668 - - uid: 5919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 1668 - - uid: 5920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 1668 - - uid: 5921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1668 - - uid: 5930 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 1668 - - uid: 5931 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 1668 - - uid: 5941 - components: - - type: Transform - pos: -17.5,-27.5 - parent: 1668 - - uid: 5942 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 1668 - - uid: 5943 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 1668 - - uid: 5944 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 1668 - - uid: 5963 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 1668 - - uid: 5964 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 1668 - - uid: 5965 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 1668 - - uid: 5966 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 1668 - - uid: 5967 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 1668 - - uid: 5968 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 1668 - - uid: 5969 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 1668 - - uid: 5970 - components: - - type: Transform - pos: -17.5,-21.5 - parent: 1668 - - uid: 5971 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 1668 - - uid: 5972 - components: - - type: Transform - pos: -23.5,-28.5 - parent: 1668 - - uid: 5973 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 1668 - - uid: 5974 - components: - - type: Transform - pos: -21.5,-28.5 - parent: 1668 - - uid: 5975 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 1668 - - uid: 6101 - components: - - type: Transform - pos: 28.5,-32.5 - parent: 1668 - - uid: 6233 - components: - - type: Transform - pos: -6.5,-35.5 - parent: 1668 - - uid: 6234 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 1668 - - uid: 6235 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 1668 - - uid: 6236 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 1668 - - uid: 6237 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 1668 - - uid: 6238 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 1668 - - uid: 6241 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 1668 - - uid: 6242 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 1668 - - uid: 6246 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 1668 - - uid: 6247 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 1668 - - uid: 6248 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 1668 - - uid: 6249 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 1668 - - uid: 6250 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 1668 - - uid: 6251 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 1668 - - uid: 6271 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6272 - components: - - type: Transform - pos: 2.5,-39.5 - parent: 1668 - - uid: 6273 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 1668 - - uid: 6274 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 1668 - - uid: 6292 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 1668 - - uid: 6293 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 1668 - - uid: 6294 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 1668 - - uid: 6297 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 1668 - - uid: 6298 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 1668 - - uid: 6299 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 1668 - - uid: 6361 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 1668 - - uid: 6362 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 1668 - - uid: 6363 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 1668 - - uid: 6364 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 1668 - - uid: 6365 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 1668 - - uid: 6366 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 1668 - - uid: 6367 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 1668 - - uid: 6368 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 1668 - - uid: 6369 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 1668 - - uid: 6370 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 1668 - - uid: 6371 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 1668 - - uid: 6372 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 1668 - - uid: 6373 - components: - - type: Transform - pos: -7.5,-35.5 - parent: 1668 - - uid: 6374 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 1668 - - uid: 6375 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 1668 - - uid: 6376 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 1668 - - uid: 6377 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 1668 - - uid: 6378 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 1668 - - uid: 6379 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 1668 - - uid: 6380 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 1668 - - uid: 6381 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 1668 - - uid: 6382 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 1668 - - uid: 6383 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 1668 - - uid: 6384 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 1668 - - uid: 6385 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 1668 - - uid: 6386 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 1668 - - uid: 6387 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 1668 - - uid: 6388 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 1668 - - uid: 6389 - components: - - type: Transform - pos: -3.5,-43.5 - parent: 1668 - - uid: 6390 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 1668 - - uid: 6534 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1668 - - uid: 6535 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 1668 - - uid: 6536 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 1668 - - uid: 6537 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 1668 - - uid: 6538 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 1668 - - uid: 6539 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 1668 - - uid: 6540 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 1668 - - uid: 6541 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 1668 - - uid: 6542 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 1668 - - uid: 6543 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 1668 - - uid: 6544 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1668 - - uid: 6545 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 1668 - - uid: 6546 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 1668 - - uid: 6772 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 1668 - - uid: 6778 - components: - - type: Transform - pos: 30.5,-32.5 - parent: 1668 - - uid: 6785 - components: - - type: Transform - pos: 29.5,-32.5 - parent: 1668 - - uid: 6788 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 1668 - - uid: 6842 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 1668 -- proto: WardrobeCargoFilled - entities: - - uid: 2208 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1668 -- proto: WardrobePrisonFilled - entities: - - uid: 2765 - components: - - type: Transform - pos: 15.5,21.5 - parent: 1668 - - uid: 2773 - components: - - type: Transform - pos: 15.5,24.5 - parent: 1668 - - uid: 2871 - components: - - type: Transform - pos: 2.5,24.5 - parent: 1668 - - uid: 2872 - components: - - type: Transform - pos: 2.5,27.5 - parent: 1668 - - uid: 2873 - components: - - type: Transform - pos: 15.5,27.5 - parent: 1668 -- proto: WarpPoint - entities: - - uid: 6637 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1668 - - type: WarpPoint - location: Centcomm -- proto: WaterCooler - entities: - - uid: 5318 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 1668 -- proto: WaterTankFull - entities: - - uid: 128 - components: - - type: Transform - pos: -27.5,2.5 - parent: 1668 - - uid: 2042 - components: - - type: Transform - pos: -1.5,18.5 - parent: 1668 -- proto: WeaponAdvancedLaser - entities: - - uid: 3130 - components: - - type: Transform - pos: 10.557603,32.615883 - parent: 1668 - - uid: 3131 - components: - - type: Transform - pos: 10.604478,32.490883 - parent: 1668 - - uid: 3132 - components: - - type: Transform - pos: 10.651353,32.365883 - parent: 1668 -- proto: WeaponCapacitorRecharger - entities: - - uid: 1446 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1668 - - uid: 1447 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1668 - - uid: 1449 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1668 - - uid: 2471 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1668 - - uid: 2747 - components: - - type: Transform - pos: 8.5,17.5 - parent: 1668 - - uid: 2824 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1668 - - uid: 3261 - components: - - type: Transform - pos: 8.5,23.5 - parent: 1668 - - uid: 3734 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1668 - - uid: 3859 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1668 - - uid: 4695 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1668 -- proto: WeaponDisabler - entities: - - uid: 4697 - components: - - type: Transform - pos: 20.88646,-10.507892 - parent: 1668 -- proto: WeaponPistolN1984 - entities: - - uid: 3774 - components: - - type: Transform - pos: -12.4228115,-9.521386 - parent: 1668 - - uid: 3894 - components: - - type: Transform - pos: -12.346658,4.475792 - parent: 1668 -- proto: WeaponPulseCarbine - entities: - - uid: 2202 - components: - - type: Transform - pos: 6.5531197,32.415283 - parent: 1668 - - uid: 2203 - components: - - type: Transform - pos: 6.5062447,32.64966 - parent: 1668 - - uid: 3124 - components: - - type: Transform - pos: 12.544843,32.634033 - parent: 1668 - - uid: 3125 - components: - - type: Transform - pos: 12.669843,32.477783 - parent: 1668 -- proto: WeaponPulsePistol - entities: - - uid: 4389 - components: - - type: Transform - pos: 5.546056,32.663063 - parent: 1668 - - uid: 4390 - components: - - type: Transform - pos: 5.686681,32.522438 - parent: 1668 - - uid: 4721 - components: - - type: Transform - pos: 13.653802,32.491188 - parent: 1668 - - uid: 4722 - components: - - type: Transform - pos: 13.481927,32.663063 - parent: 1668 -- proto: WeaponRevolverMateba - entities: - - uid: 1436 - components: - - type: Transform - pos: 2.4898672,30.350563 - parent: 1668 - - uid: 1445 - components: - - type: Transform - pos: 2.6461172,30.288063 - parent: 1668 - - uid: 1456 - components: - - type: Transform - pos: 16.456459,30.319313 - parent: 1668 - - uid: 6611 - components: - - type: Transform - pos: 16.628334,30.272438 - parent: 1668 -- proto: WeaponSniperHristov - entities: - - uid: 3138 - components: - - type: Transform - pos: 8.479478,29.789814 - parent: 1668 -- proto: WeaponSubMachineGunAtreides - entities: - - uid: 6603 - components: - - type: Transform - pos: 8.51666,29.42835 - parent: 1668 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 3895 - components: - - type: Transform - pos: -13.438182,-3.4256558 - parent: 1668 -- proto: WeaponTaser - entities: - - uid: 79 - components: - - type: Transform - pos: 10.5444565,3.9803991 - parent: 1668 - - uid: 1459 - components: - - type: Transform - pos: -4.4574313,-9.606358 - parent: 1668 - - uid: 3727 - components: - - type: Transform - pos: -25.555511,12.593331 - parent: 1668 - - uid: 6780 - components: - - type: Transform - pos: 26.613934,-11.4401045 - parent: 1668 -- proto: WeaponXrayCannon - entities: - - uid: 3136 - components: - - type: Transform - pos: 8.510728,32.664814 - parent: 1668 - - uid: 3137 - components: - - type: Transform - pos: 8.526353,32.55544 - parent: 1668 -- proto: WelderExperimental - entities: - - uid: 3699 - components: - - type: Transform - pos: -16.435745,6.6259594 - parent: 1668 - - uid: 4394 - components: - - type: Transform - pos: 21.568373,-15.468605 - parent: 1668 -- proto: WelderIndustrial - entities: - - uid: 5374 - components: - - type: Transform - pos: 26.560297,-23.266705 - parent: 1668 -- proto: WelderIndustrialAdvanced - entities: - - uid: 2196 - components: - - type: Transform - pos: -1.3562617,24.407354 - parent: 1668 -- proto: WeldingFuelTankFull - entities: - - uid: 127 - components: - - type: Transform - pos: -26.5,6.5 - parent: 1668 - - uid: 2041 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1668 -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 6843 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 1668 - - uid: 6844 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 1668 -- proto: WetFloorSign - entities: - - uid: 5883 - components: - - type: Transform - pos: -17.066446,-31.95819 - parent: 1668 -- proto: Windoor - entities: - - uid: 563 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 564 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 2409 - components: - - type: Transform - pos: 25.5,20.5 - parent: 1668 - - uid: 2410 - components: - - type: Transform - pos: 31.5,20.5 - parent: 1668 - - uid: 2710 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1668 - - uid: 4255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 1668 - - uid: 6848 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1668 -- proto: WindoorBarLocked - entities: - - uid: 4410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 1668 -- proto: WindoorSecure - entities: - - uid: 2345 - components: - - type: Transform - pos: 34.5,14.5 - parent: 1668 - - uid: 3760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1668 - - uid: 3761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 2554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1668 -- proto: WindoorSecureBrigLocked - entities: - - uid: 2425 - components: - - type: Transform - pos: 28.5,20.5 - parent: 1668 -- proto: WindoorSecureCargoLocked - entities: - - uid: 1621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1668 - - uid: 1622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 -- proto: WindoorSecureCommandLocked - entities: - - uid: 4230 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1668 - - uid: 4231 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1668 - - uid: 4232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - - uid: 4233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1668 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 4757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 1668 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - - uid: 734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1668 - - uid: 1198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1668 - - uid: 561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 1668 - - uid: 562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1668 - - uid: 790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - - uid: 791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1668 - - uid: 2558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6649 - - uid: 2776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 3906 - - uid: 2832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 3723 - - uid: 2862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6602 - - uid: 2863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 3870 -- proto: WindowReinforcedDirectional - entities: - - uid: 485 - components: - - type: Transform - pos: 25.5,6.5 - parent: 1668 - - uid: 487 - components: - - type: Transform - pos: 26.5,6.5 - parent: 1668 - - uid: 488 - components: - - type: Transform - pos: 27.5,6.5 - parent: 1668 - - uid: 490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1668 - - uid: 496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 1668 - - uid: 619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1668 - - uid: 626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1668 - - uid: 1086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1668 - - uid: 1087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1668 - - uid: 1197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1668 - - uid: 2395 - components: - - type: Transform - pos: 26.5,22.5 - parent: 1668 - - uid: 2396 - components: - - type: Transform - pos: 25.5,22.5 - parent: 1668 - - uid: 2397 - components: - - type: Transform - pos: 31.5,22.5 - parent: 1668 - - uid: 2398 - components: - - type: Transform - pos: 30.5,22.5 - parent: 1668 - - uid: 2399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 1668 - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 1668 - - uid: 2401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 1668 - - uid: 2402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1668 - - uid: 2403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 1668 - - uid: 2404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1668 - - uid: 2405 - components: - - type: Transform - pos: 27.5,20.5 - parent: 1668 - - uid: 2406 - components: - - type: Transform - pos: 29.5,20.5 - parent: 1668 - - uid: 2407 - components: - - type: Transform - pos: 30.5,20.5 - parent: 1668 - - uid: 2408 - components: - - type: Transform - pos: 26.5,20.5 - parent: 1668 - - uid: 2440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1668 - - uid: 3757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 1668 - - uid: 3758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1668 - - uid: 3759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 1668 - - uid: 3892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 1668 - - uid: 3893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1668 - - uid: 4254 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1668 - - uid: 4411 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1668 - - uid: 5217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 1668 - - uid: 5219 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1668 - - uid: 5386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - - uid: 5397 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1668 - - uid: 5398 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1668 - - uid: 5410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1668 - - uid: 5411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1668 - - uid: 5416 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 5417 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 1668 - - uid: 5453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1668 - - uid: 5454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 1668 - - uid: 5928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 1668 - - uid: 5929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - - uid: 6314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 1668 - - uid: 6787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 1668 -- proto: Wrench - entities: - - uid: 6720 - components: - - type: Transform - pos: 9.506623,-4.4162817 - parent: 1668 -- proto: YellowOxygenTankFilled - entities: - - uid: 3901 - components: - - type: Transform - pos: -12.625682,-7.0710163 - parent: 1668 -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 14: FloorBar + 17: FloorBlueCircuit + 29: FloorDark + 38: FloorDarkPlastic + 47: FloorGrass + 54: FloorGreenCircuit + 60: FloorKitchen + 61: FloorLaundry + 62: FloorLino + 77: FloorReinforced + 89: FloorSteel + 104: FloorTechMaint + 108: FloorWhite + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1668 + components: + - type: MetaData + name: Central Command + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAADPgAAAAAAPgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: WQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACbAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACbAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAADeQAAAAAAPgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAdgAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: WQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADLwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADPgAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADPgAAAAAAHQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADPgAAAAAAHQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAC + version: 6 + 0,0: + ind: 0,0 + tiles: HQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAALwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAABwAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABdgAAAAAAHQAAAAADHQAAAAACHQAAAAAADgAAAAABDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAdgAAAAABHQAAAAABHQAAAAACHQAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABDgAAAAADHQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAADgAAAAADDgAAAAAAHQAAAAABHQAAAAAAHQAAAAAADgAAAAADHQAAAAACHQAAAAAAdgAAAAABdgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABDgAAAAAADgAAAAACHQAAAAAAHQAAAAAAHQAAAAAADgAAAAADHQAAAAADHQAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: HQAAAAADHQAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAJgAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACWQAAAAADWQAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAHQAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAHQAAAAABDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACDgAAAAACDgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADPAAAAAAAPAAAAAAAHQAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAABDgAAAAAADgAAAAADDgAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: HQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: WQAAAAABWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABTQAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: HQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: WQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAALwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: HQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: TQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAAAHQAAAAABWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAADWQAAAAACHQAAAAADWQAAAAACHQAAAAACWQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADWQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABWQAAAAACHQAAAAACWQAAAAADHQAAAAADWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAC + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAC + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: centcomm + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3A96' + id: Arrows + decals: + 521: 8,28 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: Arrows + decals: + 520: 10,28 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 786: 29,-22 + 787: 33,-27 + 799: 32,-14 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 400: -11,28 + 473: 15,31 + 475: 5,31 + 910: 19,-26 + 976: 3,-43 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 780: 33,-21 + 781: 31,-21 + 785: 29,-26 + 914: 17,-31 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 375: -6,15 + 399: -11,24 + 474: 3,31 + 476: 13,31 + 909: 21,-26 + 977: -5,-43 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 789: 31,-27 + - node: + angle: -3.141592653589793 rad + color: '#52B4E9C3' + id: ArrowsGreyscale + decals: + 307: 11,-15 + - node: + color: '#DE3A3A96' + id: Bot + decals: + 301: 9,6 + 302: 13,4 + 533: 8,31 + 534: 10,31 + 535: 12,31 + 537: 6,31 + 761: 22,-11 + 762: 19,-11 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 49: 31,-6 + 50: 31,-4 + 51: 30,-6 + 52: 30,-4 + 53: 31,2 + 54: 30,2 + 55: 31,4 + 56: 30,4 + 103: 14,-3 + 104: 12,-3 + 234: -3,-13 + 235: 1,-13 + 236: -1,-12 + 276: 4,0 + 277: -6,0 + 371: -4,10 + 372: -4,15 + 376: -6,16 + 377: -6,17 + 378: -6,14 + 381: -7,28 + 382: -8,28 + 383: -9,28 + 384: -7,26 + 385: -8,26 + 386: -9,26 + 387: -7,24 + 388: -8,24 + 389: -9,24 + 390: -7,22 + 391: -8,22 + 392: -9,22 + 564: 9,15 + 566: 14,13 + 567: 14,11 + 568: 6,11 + 569: 6,13 + 574: 11,25 + 575: 8,22 + 576: -1,13 + 577: -1,11 + 579: -34,1 + 580: -34,-3 + 583: -31,-2 + 584: -30,-2 + 585: -31,0 + 586: -30,0 + 618: -22,0 + 619: -21,-2 + 620: -23,-2 + 621: -14,-1 + 673: -15,-8 + 674: -15,-7 + 675: -15,-6 + 676: -12,-8 + 677: -12,-7 + 678: -12,-6 + 713: 4,25 + 714: 4,28 + 715: 14,28 + 716: 14,25 + 717: 14,22 + 782: 29,-23 + 783: 29,-25 + 790: 32,-12 + 795: 32,-13 + 796: 31,-12 + 797: 32,-11 + 798: 33,-12 + 895: 23,-24 + 896: 23,-23 + 897: 28,-14 + 898: 27,-14 + 899: 34,-19 + 900: 34,-16 + 907: 17,-26 + 908: 23,-26 + 911: 17,-32 + 912: 16,-32 + 931: -20,-27 + 932: -19,-27 + 933: -20,-25 + 934: -19,-25 + 978: -5,-41 + 979: -5,-44 + 986: 3,-41 + 987: 3,-44 + 1222: 21,-27 + 1223: 20,-27 + 1224: 19,-27 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 573: 8,25 + 791: 33,-11 + 792: 31,-13 + 982: -6,-42 + 983: -6,-43 + 984: 4,-43 + 985: 4,-42 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 793: 33,-13 + 794: 31,-11 + 1151: 13,-15 + 1152: 13,-14 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1295: -12,4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 1093: 19,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 1099: 17,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 1097: 19,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 1098: 17,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1094: 19,14 + 1095: 19,13 + 1096: 19,12 + 1107: 33,21 + 1108: 33,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 1101: 18,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 1100: 18,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1102: 17,12 + 1103: 17,13 + 1104: 17,14 + 1105: 23,21 + 1106: 23,22 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNe + decals: + 1290: 7,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNw + decals: + 1118: 3,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSe + decals: + 1119: 5,-14 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSw + decals: + 1114: 3,-14 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerNe + decals: + 1294: 7,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSe + decals: + 1141: 13,-12 + 1293: 5,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSw + decals: + 1134: 9,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineE + decals: + 1121: 5,-13 + 1138: 13,-15 + 1139: 13,-14 + 1140: 13,-13 + 1289: 7,-11 + - node: + color: '#52B4E996' + id: BrickTileSteelLineN + decals: + 1125: 15,-12 + 1126: 14,-12 + 1127: 13,-12 + 1128: 12,-12 + 1129: 11,-12 + 1130: 10,-12 + 1131: 9,-12 + 1132: 8,-12 + 1142: 16,-12 + 1291: 6,-10 + 1292: 5,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelLineS + decals: + 1120: 4,-14 + 1133: 8,-12 + 1143: 16,-12 + 1144: 15,-12 + 1145: 14,-12 + 1287: 6,-12 + 1288: 7,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineW + decals: + 1115: 3,-13 + 1116: 3,-12 + 1117: 3,-11 + 1135: 9,-13 + 1136: 9,-14 + 1137: 9,-15 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 1157: 1,-16 + 1162: 4,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1158: -3,-16 + 1161: -6,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 1159: 4,-20 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 1160: -6,-20 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 1164: 1,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 1163: -3,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1165: 1,-18 + - node: + color: '#79150096' + id: BrickTileWhiteLineN + decals: + 1220: 33,-32 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1166: 2,-19 + 1176: 0,-16 + 1177: -2,-16 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 1218: 30,-32 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineN + decals: + 1221: 32,-32 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineN + decals: + 1217: 29,-32 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1219: 31,-32 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1212: 29,-29 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1216: 33,-29 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 1167: 2,-20 + 1168: 1,-20 + 1169: 0,-20 + 1170: -2,-20 + 1171: -3,-20 + 1172: -4,-20 + 1173: -5,-20 + 1184: 3,-20 + 1214: 31,-29 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1213: 30,-29 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1215: 32,-29 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 1174: -3,-18 + 1175: -3,-17 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1233: -9,6 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 451: 10,8 + 725: 9.488686,-17.018105 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 722: -11.564524,-16.986855 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 150: 25.445843,7.7053776 + 179: 11.130266,-9.945588 + 316: -4,18 + 457: 10.845012,7.992337 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 149: 26.461468,7.8616276 + 180: 14.583391,-9.976838 + 181: 13.520891,-10.008088 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 151: 28.82894,6.877252 + 152: 23.178217,6.861627 + 315: 2,18 + 458: 9.048137,8.023587 + 1113: 17.154882,7.7859535 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 153: 18.801558,6.901756 + 154: 33.138065,6.979881 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 178: 9.755266,-9.992463 + 456: 10.782512,8.007962 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 177: 10.411516,-10.008088 + 314: -4,18 + 455: 9.141887,8.007962 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 176: 14.052141,-10.008088 + 313: 2,18 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 648: -11.486805,2.0009332 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 312: -4,18 + 459: 13.141887,8.086087 + 460: 6.0012617,8.086087 + 467: 8.798137,7.961087 + 723: -10.814524,-16.955605 + 727: 8.848061,-16.97123 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 724: -12.142649,-17.03373 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 185: 10.099016,-9.945588 + 311: 2,18 + 466: 11.282512,7.929837 + 726: 10.098061,-16.97123 + 1110: 16.470638,7.9648323 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 141: 22.818914,7.5022526 + 142: 19.100164,8.142878 + 143: 27.037664,6.330377 + 144: 29.052135,7.267877 + 145: 32.06776,8.049128 + 171: 32.98406,-8.985069 + 173: 17.014437,2.9736261 + 174: 16.998812,6.958001 + 175: 17.020891,-5.0002565 + 197: -3.9782841,6.046785 + 200: -8.985234,-13.989886 + 642: -16.924305,2.0790582 + 643: -10.93993,2.0321832 + 711: -5.975403,-22.996408 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 172: 19.006546,-8.953819 + 195: 6.9877787,-14.02815 + 196: -8.025159,5.99991 + 201: -9.047734,-10.021136 + 712: 3.9464722,-22.996408 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 644: -12.93993,1.9853082 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 170: 30.968433,-8.891319 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 169: 20.959995,-9.000694 + 461: 13.579387,8.023587 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 463: 6.5325117,8.164212 + - node: + color: '#FFFFFFFF' + id: Bushk2 + decals: + 310: 4,16 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 148: 20.972792,7.5335026 + 646: -16.03368,2.0478082 + - node: + color: '#FFFFFFFF' + id: Bushl1 + decals: + 190: 7.116846,-5.379048 + - node: + color: '#FFFFFFFF' + id: Bushl2 + decals: + 645: -15.03368,2.0165582 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 647: -12.00243,1.9853082 + 710: -6.022278,-23.574533 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 147: 31.989635,7.5335026 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 222: 3.9493294,6.054844 + 707: 4.008972,-23.668283 + - node: + color: '#FFFFFFFF' + id: Bushm3 + decals: + 146: 30.208385,7.5960026 + 223: -9.056177,3.4392257 + 708: 4.008972,-22.558908 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 709: -6.022278,-22.512033 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 199: 34.054134,-1.0223641 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 1286: 23,-27 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 68: 12,-5 + 69: 13,-5 + 70: 14,-5 + 71: 15,-5 + 72: 15,-6 + 73: 15,-7 + 74: 15,-8 + 75: 11,-5 + 76: 10,-5 + 77: 9,-5 + 78: 9,-6 + 79: 9,-7 + 80: 9,-8 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 27: 31,-3 + 28: 30,-2 + 29: 29,-1 + 30: 21,1 + 31: 22,0 + 32: 23,-1 + 1185: -1,-19 + 1186: -1,-18 + 1187: -1,-17 + 1188: 0,-18 + 1189: -2,-18 + 1190: 0,-17 + 1191: -2,-17 + 1192: -2,-19 + 1193: 0,-19 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 524: 13,32 + 525: 12,32 + 526: 6,32 + 527: 5,32 + 528: 3,32 + 529: 3,30 + 530: 15,30 + 532: 15,32 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 45: 32,4 + 46: 32,2 + 47: 32,-4 + 48: 32,-6 + 99: 12,1 + 100: 14,1 + 379: -8,17 + 380: -8,16 + 393: -10,22 + 394: -10,24 + 395: -10,26 + 396: -10,28 + 401: -14,30 + 402: -14,31 + 405: -14,22 + 406: -14,21 + 407: -14,20 + 581: -32,-2 + 582: -32,0 + 718: 6,-16 + 719: 7,-16 + 720: -9,-16 + 721: -8,-16 + 784: 29,-24 + 904: 32,-15 + 905: 16,-24 + 913: 15,-32 + 929: -21,-27 + 930: -21,-25 + 980: -6,-41 + 981: -6,-44 + 988: 4,-44 + 989: 4,-41 + 1231: 22,-26 + 1232: 18,-26 + 1242: -4,-35 + 1243: -5,-35 + 1244: -6,-35 + 1245: 2,-35 + 1246: 3,-35 + 1247: 4,-35 + 1248: 12,-30 + 1249: 13,-30 + 1250: 12,-21 + 1251: 13,-21 + 1252: -15,-21 + 1253: -14,-21 + 1254: -14,-30 + 1255: -15,-30 + 1256: -5,-6 + 1257: -5,-5 + 1258: -6,-4 + 1259: -7,-4 + 1260: -7,2 + 1261: -6,2 + 1262: -5,3 + 1263: -5,4 + 1264: 3,3 + 1265: 3,4 + 1266: 4,2 + 1267: 5,2 + 1268: 5,-4 + 1269: 4,-4 + 1270: 3,-5 + 1271: 3,-6 + 1272: -9,-12 + 1273: -14,-17 + 1279: -10,33 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 1122: 4,-7 + 1123: 17,-7 + 1124: 17,-12 + 1146: 16,-12 + 1147: 8,-12 + 1148: 16,-7 + 1149: 12,-4 + 1150: 14,-4 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 1274: 4,-8 + 1275: -6,-8 + 1276: -6,6 + 1277: 7,3 + 1278: 17,5 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 57: 32,2 + 58: 32,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 59: 31,-6 + 60: 32,3 + 61: 31,4 + 62: 29,4 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 189: 7.054346,-5.972798 + 217: -8.98181,3.039219 + 218: 4.0382257,5.992344 + 640: -12.455555,2.0009332 + 704: -5.959778,-23.277658 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 140: 25.64704,7.7835026 + 163: 21.006866,-8.969444 + 164: 21.928741,-8.985069 + 165: 32.30374,-9.031944 + 639: -17.09618,2.0009332 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 137: 31.017263,7.330377 + 138: 20.33454,7.330377 + 139: 26.99079,6.721002 + 188: 6.991846,-5.004048 + 209: -4.0670047,-7.975866 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 166: 31.131866,-9.000694 + 167: 20.241241,-8.953819 + 168: 32.80374,-9.000694 + 219: 7.0694757,4.992344 + 220: 3.9757257,7.992344 + 1156: 7,-8 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 194: 5.962157,-7.9708443 + 206: -7.8673525,-7.959863 + 641: -14.90868,2.0634332 + 705: 4.102722,-23.308908 + 706: -5.991028,-22.152658 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 134: 21.940147,6.877252 + 135: 26.987022,7.6116276 + 136: 32.829765,6.955377 + 207: -8.9611025,-5.006738 + 309: 4,16 + 1155: -9,-8 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 193: 2.0246568,-7.9552193 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 216: -8.91931,3.929844 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 221: 1.9913507,6.023594 + 703: -5.975403,-23.949533 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 129: 25.080772,6.455377 + 130: 29.596397,7.017877 + 131: 32.737022,7.9397526 + 132: 21.674522,8.017878 + 133: 19.190147,7.174127 + 161: 30.038116,-9.047569 + 162: 18.959991,-8.985069 + 182: 15.052141,-10.039338 + 183: 9.052141,-9.976838 + 184: 13.005266,-9.992463 + 208: -9.0236025,-5.991113 + 462: 6.6731367,7.961087 + 638: -13.12743,2.0009332 + 702: 4.024597,-22.012033 + 1111: 6.9923015,5.882874 + 1112: 6.0391765,5.945374 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 9: 27,-1 + 10: 26,-1 + 11: 25,-1 + 12: 27,-2 + 39: 25,0 + 679: -24,-5 + 680: -22,-5 + 681: -20,-5 + 682: -18,-5 + 683: -19,-6 + 684: -18,-7 + 685: -19,-8 + 686: -18,-9 + 687: -20,-9 + 688: -22,-9 + 689: -21,-8 + 690: -21,-6 + 691: -20,-7 + 692: -23,-8 + 693: -23,-6 + 694: -24,-7 + 695: -24,-9 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 63: 10,-7 + 64: 11,-6 + 65: 12,-7 + 66: 13,-6 + 67: 14,-7 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 479: 14,28 + 480: 14,25 + 481: 14,22 + 482: 4,25 + 483: 4,28 + 499: 9,27 + 500: 9,28 + 501: 9,29 + 502: 9,30 + 503: 9,31 + 504: 9,32 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 823: 19,-23 + 824: 20,-23 + 825: 21,-23 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 454: 14,8 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 452: 9,8 + 464: 11.391887,8.179837 + 465: 7.2825117,8.054837 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 453: 13,8 + 1109: 16.017513,8.027332 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 123: 30.685312,7.0542355 + 124: 33.18531,8.16361 + 125: 22.82111,7.9761105 + 126: 26.85236,8.13236 + 127: 24.842615,8.147985 + 128: 19.093754,6.9448605 + 160: 32.92874,-8.891319 + 635: -12.75243,1.9384332 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 192: 2.0715318,-7.9395943 + 634: -14.955555,2.0165582 + 701: 3.9620972,-23.215158 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 117: 31.288973,7.8974113 + 118: 22.757723,7.1474113 + 119: 20.210848,7.8817863 + 120: 25.163973,7.1167355 + 121: 26.195223,6.1636105 + 122: 29.242098,7.9917355 + 156: 20.2297,-9.031944 + 157: 30.694366,-8.953819 + 203: -8.907109,-5.8244467 + 212: 1.9943819,6.0206404 + 213: 3.947507,8.005015 + 636: -11.986805,1.9696832 + 700: -6.084778,-23.808908 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 113: 31.617165,7.1005363 + 114: 26.992098,6.2724113 + 115: 21.070223,7.2411613 + 116: 20.007723,6.9442863 + 187: 7.054346,-5.004048 + 204: -8.985234,-5.0900717 + 205: -3.9383593,-7.9338217 + 210: -8.996265,3.0206404 + 211: -8.965015,3.9112654 + 215: 6.954139,4.9425154 + 633: -15.861805,1.9071832 + 637: -11.049305,1.8915582 + 698: 3.9464722,-22.418283 + 699: -5.928528,-22.652658 + 1153: 7,-8 + 1154: -9,-8 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 105: 25.217262,6.1942863 + 106: 26.967262,7.3974113 + 107: 25.389137,7.8036613 + 108: 21.686012,7.6161613 + 109: 19.107887,7.5067863 + 110: 29.420387,7.0224113 + 111: 30.092262,7.5849113 + 112: 32.41404,7.2099113 + 155: 19.2922,-8.953819 + 158: 31.506866,-8.985069 + 159: 21.444366,-8.953819 + 186: 7.023096,-5.941548 + 191: 5.962157,-8.002094 + 198: 34.00726,-1.0379891 + 202: -7.9071093,-7.9963217 + 214: 4.041257,6.0675154 + 308: 4,16 + 632: -16.674305,2.0478082 + 696: 4,-24 + 697: -6,-22 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 288: -1,1 + 655: -11,-5 + 656: -12,-5 + 657: -13,-5 + 658: -14,-5 + 659: -15,-5 + 660: -16,-5 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 88: 10,1 + 361: 1,16 + 362: 0,16 + 363: -1,16 + 364: -2,16 + 365: -3,16 + 562: 7,15 + 731: 8,-20 + 734: 10,-20 + 735: 12,-20 + 740: -10,-20 + 741: -12,-20 + 742: -14,-20 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 321: -8,11 + 322: -9,11 + 323: -10,11 + 324: -11,11 + 333: -12,16 + 334: -13,16 + 335: -14,16 + 423: -7,31 + 424: -8,31 + 425: -9,31 + 426: -11,31 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 86: 13,1 + 87: 11,1 + 556: 13,15 + 557: 10,15 + 558: 8,15 + 752: 28,-9 + 753: 27,-9 + 754: 26,-9 + 755: 25,-9 + 756: 24,-9 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 617: -22,-2 + 649: -16,-9 + 650: -15,-9 + 651: -14,-9 + 652: -13,-9 + 653: -12,-9 + 654: -11,-9 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 84: 13,-3 + 85: 11,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 353: 1,8 + 354: 0,8 + 355: -1,8 + 356: -2,8 + 357: -3,8 + 547: 13,10 + 548: 12,10 + 549: 11,10 + 550: 10,10 + 551: 9,10 + 552: 8,10 + 553: 7,10 + 578: 10,-3 + 732: 9,-19 + 733: 11,-19 + 743: -11,-19 + 744: -13,-19 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 327: -8,9 + 328: -10,9 + 329: -11,9 + 330: -9,9 + 331: -13,15 + 332: -14,15 + 340: -12,15 + 440: -8,19 + 441: -9,19 + 442: -10,19 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 291: 13,3 + 292: 15,3 + 293: 11,3 + 518: 10,21 + 519: 9,21 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 817: 15,-22 + 818: 16,-22 + 819: 17,-22 + 820: 18,-22 + 821: 19,-22 + 822: 20,-22 + 826: 21,-22 + 842: 26,-27 + 843: 25,-27 + 844: 24,-27 + 865: 28,-19 + 866: 27,-19 + 867: 23,-19 + 868: 22,-19 + 869: 30,-19 + 870: 34,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 0: 28,-1 + 3: 28,1 + 4: 28,0 + 5: 28,-2 + 17: 23,1 + 18: 29,-3 + 19: 29,-2 + 33: 25,-3 + 44: 25,-2 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 96: 9,-2 + 97: 9,-1 + 98: 9,0 + 563: 6,14 + 601: -26,-1 + 738: -8,-18 + 917: -14,-24 + 919: -14,-26 + 920: -14,-28 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 326: -12,10 + 341: -4,11 + 342: -4,12 + 343: -4,13 + 428: -12,30 + 429: -12,29 + 430: -12,28 + 431: -12,27 + 432: -12,26 + 433: -12,25 + 434: -12,24 + 435: -12,23 + 436: -12,22 + 437: -12,21 + 438: -12,20 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 484: 5,24 + 485: 5,25 + 486: 5,26 + 487: 5,27 + 488: 5,28 + 489: 5,29 + 505: 11,16 + 506: 11,17 + 507: 11,18 + 508: 11,19 + 509: 11,20 + 554: 6,12 + 571: 8,22 + 572: 8,23 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 827: 23,-21 + 828: 23,-22 + 829: 23,-23 + 830: 23,-24 + 831: 23,-25 + 832: 23,-27 + 891: 19,-19 + 892: 19,-17 + 893: 19,-16 + 894: 19,-14 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 1: 24,-1 + 2: 27,1 + 6: 24,-2 + 7: 24,-3 + 8: 24,0 + 13: 23,1 + 14: 23,0 + 22: 29,-3 + 38: 27,0 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 93: 15,-2 + 94: 15,-1 + 95: 15,0 + 351: 2,9 + 359: 2,15 + 560: 14,14 + 587: -11,-1 + 729: 6,-18 + 916: -15,-23 + 918: -15,-25 + 921: -15,-27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 325: -7,10 + 412: -6,20 + 413: -6,22 + 414: -6,23 + 415: -6,24 + 416: -6,25 + 417: -6,26 + 418: -6,27 + 419: -6,28 + 420: -6,29 + 421: -6,30 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 239: -5,-14 + 240: -5,-13 + 241: -5,-12 + 242: -5,-11 + 243: -5,-10 + 366: 2,10 + 367: 2,11 + 368: 2,12 + 369: 2,13 + 370: 2,14 + 490: 13,21 + 491: 13,22 + 492: 13,23 + 493: 13,24 + 494: 13,25 + 495: 13,27 + 496: 13,26 + 497: 13,28 + 498: 13,29 + 510: 12,16 + 511: 12,17 + 512: 12,18 + 513: 12,19 + 514: 12,20 + 555: 14,12 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 833: 27,-27 + 834: 27,-26 + 835: 27,-22 + 836: 27,-21 + 837: 27,-24 + 838: 27,-23 + 839: 27,-25 + 846: 21,-21 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 373: -4,9 + 374: -4,14 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 397: -14,25 + 398: -14,27 + 403: -13,30 + 404: -13,31 + 408: -13,20 + 409: -13,21 + 410: -13,22 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 101: 14,0 + 102: 12,0 + 237: 1,-12 + 238: -3,-12 + 565: 9,14 + 906: 16,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 15: 23,0 + 35: 28,-3 + 278: -4,1 + 279: -4,-1 + 280: -4,-2 + 285: -3,1 + 286: -2,1 + 290: -4,-3 + 615: -23,0 + 972: -3,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 306: 10,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 231: -2,-10 + 256: -7,1 + 257: -7,0 + 258: -4,4 + 259: -3,4 + 260: -2,4 + 598: -26,0 + 599: -25,0 + 600: -24,0 + 624: -33,5 + 625: -32,5 + 924: -21,-23 + 939: 8,-31 + 940: 9,-31 + 941: 10,-31 + 942: 11,-31 + 943: 12,-22 + 955: 2,-32 + 956: 3,-32 + 957: 4,-32 + 958: 6,-32 + 959: 7,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 253: -7,3 + 254: -7,4 + 255: -6,4 + 346: -8,17 + 349: -8,16 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1197: 0,-20 + 1198: -1,-20 + 1199: -2,-20 + 1200: -3,-20 + 1201: -4,-20 + 1202: -5,-20 + 1203: 1,-20 + 1204: 2,-20 + 1205: 3,-20 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 232: -3,-11 + 544: 11,15 + 758: 19,-11 + 759: 20,-11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 871: 30,-16 + 872: 31,-16 + 876: 19,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 20: 29,-2 + 34: 24,1 + 960: 1,-38 + 961: 2,-38 + 962: 3,-38 + 963: 4,-38 + 970: 4,-37 + 971: 4,-36 + 973: 1,-44 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 244: 4,-6 + 245: 5,-6 + 246: 5,-5 + 303: 12,-15 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 229: 0,-14 + 271: 0,-6 + 272: 1,-6 + 273: 2,-6 + 274: 5,-3 + 275: 5,-2 + 605: -20,-2 + 606: -19,-2 + 607: -18,-2 + 608: -17,-2 + 609: -16,-2 + 610: -15,-2 + 611: -14,-2 + 612: -13,-2 + 613: -12,-2 + 614: -11,-2 + 628: -30,4 + 629: -31,4 + 737: -9,-17 + 745: -15,-19 + 746: 0,-24 + 747: 0,-23 + 748: 0,-22 + 927: -19,-29 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 344: -6,14 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 1194: -2,-16 + 1195: -1,-16 + 1196: 0,-16 + 1206: 1,-19 + 1207: 2,-19 + 1208: 3,-19 + 1209: -3,-19 + 1210: -4,-19 + 1211: -5,-19 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 294: 10,3 + 515: 12,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 807: 13,-29 + 808: 17,-28 + 809: 16,-28 + 810: 15,-28 + 811: 14,-28 + 812: 17,-27 + 840: 23,-27 + 877: 21,-27 + 928: -19,-30 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 40: 28,-3 + 964: -3,-38 + 965: -4,-38 + 966: -6,-38 + 967: -5,-38 + 968: -6,-37 + 969: -6,-36 + 974: -3,-44 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 304: 10,-15 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 228: -2,-14 + 266: -7,-2 + 267: -7,-3 + 268: -4,-6 + 269: -3,-6 + 270: -2,-6 + 602: -26,-2 + 603: -25,-2 + 604: -24,-2 + 630: -32,4 + 631: -33,4 + 728: 7,-17 + 736: 13,-19 + 749: -2,-24 + 750: -2,-23 + 751: -2,-22 + 915: -14,-22 + 925: -21,-30 + 926: -21,-29 + 944: 12,-29 + 945: 12,-28 + 946: 12,-24 + 947: 12,-25 + 948: 12,-26 + 949: 12,-27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 345: -8,14 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 247: -6,-6 + 248: -7,-6 + 249: -7,-5 + 516: 13,21 + 517: 11,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 841: 27,-27 + 878: 19,-27 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 41: 24,1 + 281: 2,-2 + 282: 2,-1 + 283: 2,1 + 284: 1,1 + 287: 0,1 + 289: 2,-3 + 616: -21,0 + 975: 1,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 233: 1,-11 + 305: 12,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 230: 0,-10 + 261: 0,4 + 262: 1,4 + 263: 2,4 + 264: 5,1 + 265: 5,0 + 588: -11,0 + 589: -12,0 + 590: -13,0 + 591: -14,0 + 592: -15,0 + 593: -16,0 + 594: -17,0 + 595: -18,0 + 596: -20,0 + 597: -19,0 + 626: -31,5 + 627: -30,5 + 922: -15,-29 + 923: -19,-23 + 935: -10,-31 + 936: -12,-31 + 937: -11,-31 + 938: -13,-31 + 950: -4,-32 + 951: -5,-32 + 952: -6,-32 + 953: -8,-32 + 954: -9,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 347: -6,17 + 348: -6,16 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 250: 5,3 + 251: 5,4 + 252: 4,4 + 295: 15,6 + 296: 14,6 + 297: 13,6 + 298: 12,6 + 299: 11,6 + 300: 10,6 + 543: 12,15 + 757: 22,-11 + 760: 21,-11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 805: 13,-22 + 806: 13,-23 + 813: 17,-25 + 814: 17,-24 + 815: 15,-24 + 816: 14,-24 + 845: 21,-22 + 873: 34,-16 + 874: 33,-16 + 875: 21,-25 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 779: 32,-21 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 91: 9,1 + 225: -3,-10 + 358: -4,16 + 561: 6,15 + 622: -34,5 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 318: -12,11 + 337: -15,16 + 427: -12,31 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 92: 15,-3 + 227: 1,-14 + 352: 2,8 + 546: 14,10 + 739: -9,-19 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 319: -7,9 + 339: -11,15 + 411: -6,19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 21: 30,-3 + 36: 25,1 + 37: 26,0 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 90: 9,-3 + 226: -3,-14 + 350: -4,8 + 545: 6,10 + 623: -34,4 + 730: 7,-19 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 320: -12,9 + 336: -15,15 + 439: -12,19 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 570: 8,21 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 16: 22,1 + 42: 27,-3 + 43: 26,-2 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 89: 15,1 + 224: 1,-10 + 360: 2,16 + 559: 14,15 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 317: -7,11 + 338: -11,16 + 422: -6,31 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 23: 34,-6 + 24: 34,-4 + 25: 34,2 + 26: 34,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1281: 20,-30 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1280: 24,-30 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 1241: 28,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 1240: 34,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 1239: 28,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 1238: 34,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 890: 21,-19 + 903: 31,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 889: 23,-19 + 902: 33,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 773: 29,-21 + 887: 21,-15 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 767: 29,-27 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 888: 23,-15 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 468: 3,30 + 469: 3,31 + 472: 3,32 + 477: 10,28 + 774: 29,-26 + 775: 29,-25 + 776: 29,-24 + 777: 29,-23 + 778: 29,-22 + 859: 29,-19 + 860: 29,-18 + 861: 29,-17 + 884: 21,-18 + 885: 21,-17 + 886: 21,-16 + 1284: 20,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1181: 1,-17 + 1236: 28,-31 + 1237: 28,-30 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1179: 3,-19 + 1180: -1,-16 + 1182: -4,-19 + 1183: -5,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 1178: -1,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1234: 34,-31 + 1235: 34,-30 + - node: + color: '#DE3A3A96' + id: WarnLineN + decals: + 522: 13,31 + 523: 5,31 + 536: 12,31 + 538: 12,31 + 539: 13,31 + 540: 5,31 + 541: 6,31 + 542: 6,31 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 667: -11,-9 + 668: -12,-9 + 669: -13,-9 + 670: -14,-9 + 671: -15,-9 + 672: -16,-9 + 768: 34,-21 + 769: 33,-21 + 770: 32,-21 + 771: 31,-21 + 772: 30,-21 + 800: 34,-14 + 801: 33,-14 + 802: 32,-14 + 803: 31,-14 + 804: 30,-14 + 853: 26,-20 + 854: 25,-20 + 855: 24,-20 + 856: 21,-20 + 857: 20,-20 + 858: 19,-20 + 882: 22,-15 + 1225: 19,-26 + 1226: 20,-26 + 1227: 21,-26 + 1282: 19,-30 + 1283: 25,-30 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 443: -14,25 + 444: -14,27 + 445: -14,26 + 446: -14,24 + 447: -14,28 + 448: -14,29 + 449: -14,23 + 470: 15,30 + 471: 15,31 + 478: 8,28 + 531: 15,32 + 862: 29,-19 + 863: 29,-18 + 864: 29,-17 + 879: 23,-18 + 880: 23,-17 + 881: 23,-16 + 1285: 24,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 81: 11,-8 + 82: 12,-8 + 83: 13,-8 + 450: -10,31 + 661: -11,-5 + 662: -12,-5 + 663: -13,-5 + 664: -14,-5 + 665: -15,-5 + 666: -16,-5 + 763: 34,-27 + 764: 33,-27 + 765: 32,-27 + 766: 30,-27 + 788: 31,-27 + 847: 26,-20 + 848: 24,-20 + 849: 25,-20 + 850: 21,-20 + 851: 20,-20 + 852: 19,-20 + 883: 22,-19 + 901: 32,-16 + 1228: 21,-26 + 1229: 20,-26 + 1230: 19,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 1030: 24,21 + 1063: -24,2 + 1091: 22,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 1031: 32,21 + 1089: 34,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 1082: -3,-28 + 1090: 22,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 1081: 1,-28 + 1092: 34,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 990: 20,19 + 991: 20,20 + 992: 20,21 + 993: 20,22 + 994: 20,18 + 1000: 18,18 + 1001: 18,19 + 1002: 18,20 + 1003: 18,21 + 1004: 18,22 + 1013: 30,18 + 1014: 30,17 + 1015: 30,16 + 1021: 24,22 + 1059: -24,3 + 1060: -24,4 + 1061: -24,5 + 1062: -24,6 + 1064: -23,10 + 1065: -23,11 + 1085: 22,11 + 1086: 22,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1008: 26,18 + 1009: 27,18 + 1010: 28,18 + 1011: 29,18 + 1012: 30,18 + 1023: 31,21 + 1024: 30,21 + 1025: 29,21 + 1026: 28,21 + 1027: 27,21 + 1028: 26,21 + 1029: 25,21 + 1043: 23,10 + 1044: 24,10 + 1045: 25,10 + 1046: 26,10 + 1047: 27,10 + 1048: 28,10 + 1049: 29,10 + 1050: 30,10 + 1051: 31,10 + 1052: 32,10 + 1053: 33,10 + 1054: -19,2 + 1055: -20,2 + 1056: -21,2 + 1057: -22,2 + 1058: -23,2 + 1073: -22,8 + 1074: -23,8 + 1075: -24,8 + 1076: -25,8 + 1077: -26,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1016: 30,16 + 1017: 29,16 + 1018: 28,16 + 1019: 27,16 + 1020: 26,16 + 1032: 33,13 + 1033: 32,13 + 1034: 31,13 + 1035: 30,13 + 1036: 29,13 + 1037: 28,13 + 1038: 27,13 + 1039: 26,13 + 1040: 23,13 + 1041: 24,13 + 1042: 25,13 + 1068: -22,12 + 1069: -23,12 + 1070: -24,12 + 1071: -25,12 + 1072: -26,12 + 1078: 0,-28 + 1079: -1,-28 + 1080: -2,-28 + 1083: 1,0 + 1084: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 995: 19,18 + 996: 19,19 + 997: 19,20 + 998: 19,21 + 999: 19,22 + 1005: 26,16 + 1006: 26,17 + 1007: 26,18 + 1022: 32,22 + 1066: -25,10 + 1067: -25,11 + 1087: 34,11 + 1088: 34,12 + - type: GridAtmosphere + version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -4,-4: + 0: 52431 + -4,-3: + 0: 65532 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 64719 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + -4,4: + 0: 61439 + -4,5: + 0: 65262 + -4,6: + 0: 65535 + -4,7: + 0: 61183 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 12287 + -1,7: + 0: 12079 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 30719 + 4,7: + 0: 30583 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 255 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 255 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 255 + -6,4: + 0: 14 + -5,4: + 0: 2185 + -5,5: + 0: 32768 + -5,6: + 0: 34952 + -5,7: + 0: 136 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 255 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 61183 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -4,8: + 0: 14 + -3,8: + 0: 4095 + -2,8: + 0: 287 + -1,8: + 0: 15 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 255 + 0,8: + 0: 4095 + 1,8: + 0: 4095 + 2,8: + 0: 4095 + 3,8: + 0: 4095 + 4,8: + 0: 1911 + -8,-1: + 0: 65535 + -8,-3: + 0: 34944 + -8,-2: + 0: 34952 + -7,-3: + 0: 65520 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-3: + 0: 65520 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-3: + 0: 65520 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -9,-1: + 0: 61166 + -9,0: + 0: 61166 + -9,1: + 0: 61166 + -4,-9: + 0: 65520 + -3,-9: + 0: 65520 + -2,-9: + 0: 65535 + -1,-9: + 0: 65535 + 0,-9: + 0: 65535 + 1,-9: + 0: 65535 + 2,-9: + 0: 65535 + 3,-9: + 0: 65535 + 4,-8: + 0: 30719 + 1: 34816 + 4,-7: + 0: 65535 + 5,-8: + 0: 61183 + 1: 4352 + 5,-7: + 0: 65535 + 6,-8: + 0: 52479 + 2: 13056 + 6,-7: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 4,-9: + 0: 65280 + 5,-9: + 0: 65280 + 6,-9: + 0: 65280 + 7,-9: + 0: 61440 + 8,-9: + 0: 61440 + -5,-4: + 0: 8 + -2,-12: + 0: 61440 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -1,-12: + 0: 65520 + -1,-11: + 0: 65535 + -1,-10: + 0: 65535 + 0,-12: + 0: 63344 + 0,-11: + 0: 65535 + 0,-10: + 0: 65535 + 1,-12: + 0: 28672 + 1,-11: + 0: 30583 + 1,-10: + 0: 30583 + -6,-9: + 0: 52352 + -5,-9: + 0: 65520 + -6,-8: + 0: 65484 + -6,-7: + 0: 65535 + -6,-6: + 0: 4095 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 36863 + -5,-5: + 0: 34952 + 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: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 1455 + components: + - type: Transform + pos: 15.537778,1.6263883 + parent: 1668 + - uid: 2742 + components: + - type: Transform + pos: 4.5448904,18.624214 + parent: 1668 +- proto: AirCanister + entities: + - uid: 3695 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: Airlock + entities: + - uid: 5314 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1668 +- proto: AirlockArmoryLocked + entities: + - uid: 2555 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1668 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 4746 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1668 + - uid: 5403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1668 + - uid: 5404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 1668 +- proto: AirlockBarLocked + entities: + - uid: 4343 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1668 +- proto: AirlockBrigGlassLocked + entities: + - uid: 2299 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1668 + - uid: 2316 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1668 + - uid: 2340 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1668 + - uid: 2342 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1668 +- proto: AirlockBrigLocked + entities: + - uid: 2300 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1668 + - uid: 2317 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1668 + - uid: 2343 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1668 + - uid: 2344 + components: + - type: Transform + pos: 21.5,18.5 + parent: 1668 +- proto: AirlockCargoGlassLocked + entities: + - uid: 1191 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1668 + - uid: 1629 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1668 + - uid: 1630 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1668 + - uid: 1631 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1668 +- proto: AirlockCargoLocked + entities: + - uid: 1192 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1668 + - uid: 1632 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1668 + - uid: 1633 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1668 +- proto: AirlockCentralCommandGlass + entities: + - uid: 48 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 1668 + - uid: 49 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 1668 + - uid: 566 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 567 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1668 + - uid: 568 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1668 + - uid: 569 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - uid: 570 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 1668 + - uid: 571 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1668 + - uid: 572 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1668 + - uid: 573 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1668 + - uid: 3861 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 1668 + - uid: 3862 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 1668 + - uid: 4287 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1668 + - uid: 4339 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1668 + - uid: 4575 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1668 + - uid: 4639 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1668 + - uid: 4640 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1668 + - uid: 5253 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1668 + - uid: 5414 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1668 + - uid: 5420 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1668 + - uid: 5853 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - uid: 5945 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - uid: 5946 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1668 + - uid: 6276 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1668 + - uid: 6278 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1668 + - uid: 6279 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1668 + - uid: 6313 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - uid: 6395 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1668 + - uid: 6396 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1668 + - uid: 6475 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1668 + - uid: 6476 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1668 + - uid: 6477 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1668 + - uid: 6478 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1668 + - uid: 6479 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1668 + - uid: 6480 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1668 + - uid: 6481 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1668 + - uid: 6482 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 1668 + - uid: 6484 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 1668 + - uid: 6485 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 1668 + - uid: 6486 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 1668 + - uid: 6487 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 1668 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 3572 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1668 +- proto: AirlockCentralCommandLocked + entities: + - uid: 3781 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1668 + - uid: 3782 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1668 + - uid: 3792 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1668 + - uid: 3793 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1668 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 5175 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1668 +- proto: AirlockEngineeringLocked + entities: + - uid: 1131 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1668 + - uid: 1177 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1668 + - uid: 1534 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1668 + - uid: 2522 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1668 + - uid: 3948 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1668 + - uid: 4258 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 1668 + - uid: 4755 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1668 + - uid: 4756 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1668 + - uid: 4763 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1668 + - uid: 6005 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 1668 +- proto: AirlockExternalGlass + entities: + - uid: 481 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1668 + - uid: 482 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1668 + - uid: 483 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1668 + - uid: 484 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1668 + - uid: 1615 + components: + - type: Transform + pos: -14.5,25.5 + parent: 1668 + - uid: 1616 + components: + - type: Transform + pos: -14.5,27.5 + parent: 1668 + - uid: 3970 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1668 + - uid: 3971 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1668 + - uid: 6284 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 1668 + - uid: 6285 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 1668 +- proto: AirlockExternalGlassLocked + entities: + - uid: 1673 + components: + - type: Transform + pos: -9.5,32.5 + parent: 1668 + - uid: 2010 + components: + - type: Transform + pos: -0.5,22.5 + parent: 1668 + - uid: 4243 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 1668 + - uid: 5961 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1668 + - uid: 5962 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 1668 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1668 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1668 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1668 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 1668 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 1668 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 1668 + - uid: 1672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,34.5 + parent: 1668 + - uid: 3968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1668 + - uid: 3969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 1668 + - uid: 5959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 1668 + - uid: 5960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 1668 + - uid: 6282 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 1668 + - uid: 6283 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1668 +- proto: AirlockExternalLocked + entities: + - uid: 777 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1668 + - uid: 2011 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1668 + - uid: 4242 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1668 +- proto: AirlockFreezer + entities: + - uid: 3419 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1668 +- proto: AirlockGlass + entities: + - uid: 3947 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1668 + - uid: 4259 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1668 + - uid: 4260 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1668 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 4342 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 1668 +- proto: AirlockKitchenLocked + entities: + - uid: 4341 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 1668 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 557 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1668 + - uid: 558 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1668 + - uid: 730 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1668 +- proto: AirlockMedicalLocked + entities: + - uid: 574 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1668 + - uid: 729 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1668 + - uid: 731 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1668 + - uid: 852 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1668 + - uid: 854 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1668 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 130 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1668 + - uid: 774 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1668 + - uid: 974 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1668 + - uid: 2497 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1668 + - uid: 2498 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1668 + - uid: 2499 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1668 + - uid: 2500 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1668 +- proto: AirlockSecurityLocked + entities: + - uid: 509 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1668 + - uid: 549 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1668 + - uid: 550 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1668 + - uid: 551 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1668 + - uid: 552 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1668 + - uid: 775 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1668 + - uid: 2825 + components: + - type: Transform + pos: 5.5,23.5 + parent: 1668 +- proto: APCBasic + entities: + - uid: 688 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1668 + - uid: 856 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 1668 + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 1668 + - uid: 977 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - uid: 978 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1668 + - uid: 979 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1668 + - uid: 1088 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 1201 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1668 + - uid: 1235 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1668 + - uid: 1341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + - uid: 1674 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1668 + - uid: 1675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1668 + - uid: 1676 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1668 + - uid: 1677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1668 + - uid: 1955 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1668 + - uid: 2013 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - uid: 2562 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1668 + - uid: 2563 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1668 + - uid: 2564 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1668 + - uid: 2565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 1668 + - uid: 2566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1668 + - uid: 2944 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1668 + - uid: 2945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1668 + - uid: 2946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1668 + - uid: 3463 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1668 + - uid: 3464 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1668 + - uid: 3465 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1668 + - uid: 3466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1668 + - uid: 3986 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1668 + - uid: 3987 + components: + - type: Transform + pos: -31.5,7.5 + parent: 1668 + - uid: 3988 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1668 + - uid: 3989 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1668 + - uid: 3990 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1668 + - uid: 4361 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1668 + - uid: 4475 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1668 + - uid: 4476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1668 + - uid: 4477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 1668 + - uid: 4478 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1668 + - uid: 4479 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1668 + - uid: 4480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1668 + - uid: 4977 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1668 + - uid: 4992 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1668 + - uid: 5133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 1668 + - uid: 5146 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1668 + - uid: 5257 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1668 + - uid: 5321 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1668 + - uid: 5423 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1668 + - uid: 5934 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 1668 + - uid: 6004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 1668 + - uid: 6103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1668 + - uid: 6180 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1668 + - uid: 6181 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1668 + - uid: 6277 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1668 + - uid: 6397 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1668 +- proto: Ash + entities: + - uid: 3828 + components: + - type: Transform + pos: -10.652057,6.7775984 + parent: 1668 +- proto: AtmosDeviceFanTiny + entities: + - uid: 438 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 1668 + - uid: 439 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 1668 + - uid: 440 + components: + - type: Transform + pos: 35.5,2.5 + parent: 1668 + - uid: 441 + components: + - type: Transform + pos: 35.5,4.5 + parent: 1668 + - uid: 553 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1668 + - uid: 554 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1668 + - uid: 555 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1668 + - uid: 556 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1668 + - uid: 763 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1668 + - uid: 1473 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1668 + - uid: 1474 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1668 + - uid: 1634 + components: + - type: Transform + pos: -16.5,25.5 + parent: 1668 + - uid: 1635 + components: + - type: Transform + pos: -16.5,27.5 + parent: 1668 + - uid: 1671 + components: + - type: Transform + pos: -9.5,33.5 + parent: 1668 + - uid: 2012 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1668 + - uid: 2921 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1668 + - uid: 4144 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 1668 + - uid: 4145 + components: + - type: Transform + pos: -34.5,0.5 + parent: 1668 + - uid: 4241 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 1668 + - uid: 5996 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1668 + - uid: 5997 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 1668 + - uid: 6286 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 1668 + - uid: 6287 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1668 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 6789 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1668 + - uid: 6963 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1668 + - uid: 6964 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1668 + - uid: 6965 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 1668 + - uid: 6966 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 1668 +- proto: AtmosFixOxygenMarker + entities: + - uid: 5051 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1668 + - uid: 6967 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1668 + - uid: 6968 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1668 + - uid: 6969 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 1668 + - uid: 6970 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1668 +- proto: Autolathe + entities: + - uid: 5310 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1668 +- proto: BarSignTheLooseGoose + entities: + - uid: 4345 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 1668 + - uid: 4346 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 1668 +- proto: BaseGasCondenser + entities: + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: Bed + entities: + - uid: 2718 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1668 + - uid: 2763 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1668 + - uid: 2774 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1668 + - uid: 2864 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1668 + - uid: 2865 + components: + - type: Transform + pos: 3.5,27.5 + parent: 1668 + - uid: 2866 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1668 + - uid: 3624 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1668 +- proto: BedsheetCentcom + entities: + - uid: 3625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,8.5 + parent: 1668 + - uid: 6643 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1668 +- proto: BedsheetHOS + entities: + - uid: 2719 + components: + - type: MetaData + name: Warden's + - type: Transform + pos: 5.5,18.5 + parent: 1668 +- proto: BedsheetMedical + entities: + - uid: 1199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 1668 + - uid: 1200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 1668 +- proto: BedsheetOrange + entities: + - uid: 2764 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1668 + - uid: 2775 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1668 + - uid: 2867 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1668 + - uid: 2868 + components: + - type: Transform + pos: 3.5,27.5 + parent: 1668 + - uid: 2869 + components: + - type: Transform + pos: 16.5,27.5 + parent: 1668 +- proto: BiomassReclaimer + entities: + - uid: 6604 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1668 +- proto: BlastDoor + entities: + - uid: 1552 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1804 + - uid: 1607 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1611 + - uid: 1608 + components: + - type: Transform + pos: -16.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1612 + - uid: 1609 + components: + - type: Transform + pos: -14.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1612 + - uid: 1610 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1611 + - uid: 2790 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2928 + - uid: 2886 + components: + - type: Transform + pos: 14.5,31.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2928 + - uid: 2925 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2927 + - uid: 2926 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2927 + - uid: 3787 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2920 + - uid: 3788 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2920 + - uid: 3789 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2920 + - uid: 4762 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 1668 +- proto: BlastDoorExterior1Open + entities: + - uid: 710 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1668 + - uid: 711 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1668 + - uid: 712 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1668 + - uid: 713 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1668 + - uid: 714 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1668 +- proto: BlastDoorExterior2Open + entities: + - uid: 716 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1668 + - uid: 717 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1668 + - uid: 718 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1668 + - uid: 719 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1668 + - uid: 720 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1668 +- proto: BlastDoorOpen + entities: + - uid: 786 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 789 + - uid: 787 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 789 + - uid: 788 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 789 + - uid: 1430 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1668 + - uid: 1431 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1668 + - uid: 1432 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1668 + - uid: 1437 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1668 + - uid: 1438 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1668 + - uid: 1439 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1668 + - uid: 1440 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1668 + - uid: 1441 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1668 + - uid: 2146 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2712 + - uid: 2147 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2712 + - uid: 2148 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2712 + - uid: 2149 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2712 + - uid: 2150 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 2712 + - uid: 3865 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1668 + - uid: 3866 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1668 + - uid: 5234 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5235 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5236 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5237 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5238 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5239 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5240 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5241 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5242 + - uid: 5951 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 1668 + - uid: 5952 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 1668 + - uid: 5953 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 1668 + - uid: 5954 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 1668 + - uid: 5955 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 1668 + - uid: 6483 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1668 + - uid: 6521 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6442 + - uid: 6522 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6442 + - uid: 6523 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6442 + - uid: 6524 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6442 + - uid: 6525 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6442 +- proto: Bookshelf + entities: + - uid: 2370 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1668 + - uid: 2371 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1668 + - uid: 2372 + components: + - type: Transform + pos: 25.5,23.5 + parent: 1668 + - uid: 2373 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1668 + - uid: 2374 + components: + - type: Transform + pos: 33.5,23.5 + parent: 1668 + - uid: 2375 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1668 + - uid: 2376 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1668 + - uid: 2377 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1668 + - uid: 2378 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1668 + - uid: 2379 + components: + - type: Transform + pos: 30.5,10.5 + parent: 1668 + - uid: 2380 + components: + - type: Transform + pos: 31.5,10.5 + parent: 1668 + - uid: 2382 + components: + - type: Transform + pos: 32.5,10.5 + parent: 1668 + - uid: 3433 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1668 + - uid: 3434 + components: + - type: Transform + pos: -26.5,10.5 + parent: 1668 + - uid: 3821 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1668 + - uid: 4185 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1668 + - uid: 4186 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1668 + - uid: 4187 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1668 +- proto: BookshelfFilled + entities: + - uid: 3631 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1668 + - uid: 3716 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1668 + - uid: 3717 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1668 + - uid: 6607 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1668 + - uid: 6650 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1668 + - uid: 6933 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1668 + - uid: 6934 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1668 + - uid: 6935 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1668 +- proto: BoozeDispenser + entities: + - uid: 4426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + - uid: 4428 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1668 +- proto: BoxFlashbang + entities: + - uid: 1450 + components: + - type: Transform + pos: 13.475631,6.6059804 + parent: 1668 +- proto: BoxFolderBlack + entities: + - uid: 2236 + components: + - type: Transform + pos: -8.478459,8.547297 + parent: 1668 + - uid: 3750 + components: + - type: Transform + pos: -20.479141,11.485098 + parent: 1668 +- proto: BoxFolderBlue + entities: + - uid: 1443 + components: + - type: Transform + pos: -0.35287756,1.4752237 + parent: 1668 + - uid: 2462 + components: + - type: Transform + pos: 30.518238,17.551378 + parent: 1668 + - uid: 2463 + components: + - type: Transform + pos: 29.486988,21.410753 + parent: 1668 + - uid: 3839 + components: + - type: Transform + pos: -24.426022,-5.7340455 + parent: 1668 +- proto: BoxFolderCentCom + entities: + - uid: 6501 + components: + - type: Transform + pos: -20.339329,11.399686 + parent: 1668 + - uid: 6987 + components: + - type: Transform + pos: 0.751516,0.4821344 + parent: 1668 + - uid: 6990 + components: + - type: Transform + pos: -20.40427,4.6069345 + parent: 1668 +- proto: BoxFolderCentComClipboard + entities: + - uid: 2198 + components: + - type: Transform + pos: -1.5118587,0.6696344 + parent: 1668 + - uid: 6991 + components: + - type: Transform + pos: -20.46677,5.55778 + parent: 1668 +- proto: BoxFolderRed + entities: + - uid: 1398 + components: + - type: Transform + pos: -3.4754791,-12.432284 + parent: 1668 + - uid: 1444 + components: + - type: Transform + pos: -0.22787756,1.6627237 + parent: 1668 + - uid: 2461 + components: + - type: Transform + pos: 27.393238,17.582628 + parent: 1668 + - uid: 3838 + components: + - type: Transform + pos: -24.551022,-5.5465455 + parent: 1668 + - uid: 6504 + components: + - type: Transform + pos: 27.483435,-7.4993086 + parent: 1668 +- proto: BoxFolderWhite + entities: + - uid: 1397 + components: + - type: Transform + pos: 2.5401459,-12.541659 + parent: 1668 +- proto: BoxFolderYellow + entities: + - uid: 2230 + components: + - type: Transform + pos: -15.424221,14.516905 + parent: 1668 + - uid: 2231 + components: + - type: Transform + pos: -8.454054,12.663795 + parent: 1668 + - uid: 2232 + components: + - type: Transform + pos: -12.532179,10.67942 + parent: 1668 + - uid: 6612 + components: + - type: Transform + pos: 2.170168,-2.5148773 + parent: 1668 + - uid: 6618 + components: + - type: Transform + pos: 2.060793,-2.4055023 + parent: 1668 +- proto: BoxHandcuff + entities: + - uid: 516 + components: + - type: Transform + pos: 21.459097,-10.359755 + parent: 1668 + - uid: 1453 + components: + - type: Transform + pos: 15.460006,6.6372304 + parent: 1668 + - uid: 3150 + components: + - type: Transform + pos: 10.465678,25.678463 + parent: 1668 + - uid: 3898 + components: + - type: Transform + pos: -12.656932,-5.6960163 + parent: 1668 +- proto: BoxLatexGloves + entities: + - uid: 4391 + components: + - type: Transform + pos: 10.34866,-7.2899737 + parent: 1668 +- proto: BoxPDA + entities: + - uid: 1457 + components: + - type: Transform + pos: 1.5702643,-2.4016738 + parent: 1668 +- proto: BoxSterileMask + entities: + - uid: 627 + components: + - type: Transform + pos: 10.430174,-7.5213776 + parent: 1668 +- proto: BoxZiptie + entities: + - uid: 4696 + components: + - type: Transform + pos: 28.527084,-11.476642 + parent: 1668 +- proto: BriefcaseBrownFilled + entities: + - uid: 2468 + components: + - type: Transform + pos: 34.408863,23.770128 + parent: 1668 + - uid: 2469 + components: + - type: Transform + pos: 34.533863,23.582628 + parent: 1668 + - uid: 2470 + components: + - type: Transform + pos: 32.486988,19.707628 + parent: 1668 +- proto: BrigTimer + entities: + - uid: 3723 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2832: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 3870 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2863: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 3906 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2776: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 6602 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2862: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 6649 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2558: + - Start: Close + - Timer: AutoClose + - Timer: Open +- proto: CableApcExtension + entities: + - uid: 857 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 + - uid: 858 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1668 + - uid: 859 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1668 + - uid: 860 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1668 + - uid: 861 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1668 + - uid: 862 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1668 + - uid: 863 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1668 + - uid: 864 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1668 + - uid: 865 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1668 + - uid: 866 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1668 + - uid: 867 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1668 + - uid: 868 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1668 + - uid: 869 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1668 + - uid: 870 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1668 + - uid: 871 + components: + - type: Transform + pos: 30.5,2.5 + parent: 1668 + - uid: 872 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1668 + - uid: 873 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1668 + - uid: 874 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1668 + - uid: 875 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1668 + - uid: 876 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1668 + - uid: 877 + components: + - type: Transform + pos: 22.5,4.5 + parent: 1668 + - uid: 878 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1668 + - uid: 879 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1668 + - uid: 880 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1668 + - uid: 881 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1668 + - uid: 882 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1668 + - uid: 883 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1668 + - uid: 884 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1668 + - uid: 885 + components: + - type: Transform + pos: 30.5,4.5 + parent: 1668 + - uid: 886 + components: + - type: Transform + pos: 31.5,4.5 + parent: 1668 + - uid: 887 + components: + - type: Transform + pos: 32.5,4.5 + parent: 1668 + - uid: 888 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1668 + - uid: 889 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1668 + - uid: 890 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1668 + - uid: 891 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1668 + - uid: 892 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1668 + - uid: 893 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1668 + - uid: 894 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1668 + - uid: 895 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1668 + - uid: 896 + components: + - type: Transform + pos: 32.5,1.5 + parent: 1668 + - uid: 897 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1668 + - uid: 899 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1668 + - uid: 900 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1668 + - uid: 901 + components: + - type: Transform + pos: 31.5,5.5 + parent: 1668 + - uid: 902 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1668 + - uid: 903 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1668 + - uid: 904 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1668 + - uid: 906 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1668 + - uid: 907 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1668 + - uid: 908 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1668 + - uid: 909 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1668 + - uid: 910 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1668 + - uid: 911 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1668 + - uid: 912 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1668 + - uid: 913 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1668 + - uid: 914 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1668 + - uid: 915 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1668 + - uid: 916 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1668 + - uid: 917 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1668 + - uid: 918 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1668 + - uid: 919 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1668 + - uid: 920 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1668 + - uid: 921 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1668 + - uid: 922 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1668 + - uid: 923 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1668 + - uid: 924 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 1668 + - uid: 925 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1668 + - uid: 926 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1668 + - uid: 927 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1668 + - uid: 928 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1668 + - uid: 929 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1668 + - uid: 930 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1668 + - uid: 931 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1668 + - uid: 932 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1668 + - uid: 933 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 1668 + - uid: 934 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 1668 + - uid: 935 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1668 + - uid: 936 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1668 + - uid: 937 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1668 + - uid: 938 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1668 + - uid: 939 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1668 + - uid: 940 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1668 + - uid: 941 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1668 + - uid: 942 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1668 + - uid: 943 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1668 + - uid: 944 + components: + - type: Transform + pos: 33.5,5.5 + parent: 1668 + - uid: 945 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1668 + - uid: 946 + components: + - type: Transform + pos: 35.5,2.5 + parent: 1668 + - uid: 947 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1668 + - uid: 948 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1668 + - uid: 949 + components: + - type: Transform + pos: 35.5,4.5 + parent: 1668 + - uid: 950 + components: + - type: Transform + pos: 35.5,5.5 + parent: 1668 + - uid: 951 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 1668 + - uid: 952 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 1668 + - uid: 953 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1668 + - uid: 954 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 1668 + - uid: 955 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1668 + - uid: 956 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1668 + - uid: 957 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1668 + - uid: 958 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1668 + - uid: 959 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1668 + - uid: 960 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1668 + - uid: 961 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1668 + - uid: 962 + components: + - type: Transform + pos: 34.5,1.5 + parent: 1668 + - uid: 964 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1668 + - uid: 965 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1668 + - uid: 966 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1668 + - uid: 967 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 1668 + - uid: 968 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1668 + - uid: 969 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 1668 + - uid: 970 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1668 + - uid: 971 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1668 + - uid: 972 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1668 + - uid: 973 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1668 + - uid: 975 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1668 + - uid: 976 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1668 + - uid: 980 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1668 + - uid: 981 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1668 + - uid: 982 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1668 + - uid: 983 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1668 + - uid: 984 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1668 + - uid: 985 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1668 + - uid: 986 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1668 + - uid: 987 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1668 + - uid: 988 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1668 + - uid: 989 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1668 + - uid: 990 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1668 + - uid: 991 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1668 + - uid: 992 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1668 + - uid: 993 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1668 + - uid: 994 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1668 + - uid: 995 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1668 + - uid: 996 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1668 + - uid: 997 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 998 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1668 + - uid: 999 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1668 + - uid: 1000 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - uid: 1001 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1668 + - uid: 1002 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1668 + - uid: 1003 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1668 + - uid: 1004 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1668 + - uid: 1005 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1668 + - uid: 1006 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1668 + - uid: 1007 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1668 + - uid: 1008 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1668 + - uid: 1009 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1668 + - uid: 1010 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1668 + - uid: 1011 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1668 + - uid: 1012 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1668 + - uid: 1013 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1668 + - uid: 1014 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1668 + - uid: 1015 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1668 + - uid: 1016 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1668 + - uid: 1017 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1668 + - uid: 1018 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1668 + - uid: 1019 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1668 + - uid: 1020 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1668 + - uid: 1021 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1668 + - uid: 1022 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1668 + - uid: 1023 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1668 + - uid: 1024 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1668 + - uid: 1025 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1668 + - uid: 1026 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1668 + - uid: 1027 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1668 + - uid: 1028 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1668 + - uid: 1029 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1668 + - uid: 1030 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1668 + - uid: 1031 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1668 + - uid: 1032 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1668 + - uid: 1033 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1668 + - uid: 1034 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1668 + - uid: 1035 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1668 + - uid: 1036 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1668 + - uid: 1037 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1668 + - uid: 1038 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1668 + - uid: 1039 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1668 + - uid: 1040 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1668 + - uid: 1041 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1668 + - uid: 1042 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1668 + - uid: 1043 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1668 + - uid: 1044 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1668 + - uid: 1045 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1668 + - uid: 1046 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1668 + - uid: 1047 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1668 + - uid: 1048 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1668 + - uid: 1049 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1668 + - uid: 1050 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1668 + - uid: 1051 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1668 + - uid: 1052 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1668 + - uid: 1053 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1668 + - uid: 1054 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1668 + - uid: 1055 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1668 + - uid: 1056 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1668 + - uid: 1057 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1668 + - uid: 1058 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1668 + - uid: 1059 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1668 + - uid: 1060 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1668 + - uid: 1061 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1668 + - uid: 1062 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1668 + - uid: 1063 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1668 + - uid: 1064 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1668 + - uid: 1068 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1668 + - uid: 1069 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1668 + - uid: 1070 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1668 + - uid: 1089 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 1090 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1668 + - uid: 1091 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1668 + - uid: 1092 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1668 + - uid: 1093 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1668 + - uid: 1094 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 1095 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1668 + - uid: 1096 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1668 + - uid: 1097 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1668 + - uid: 1098 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1668 + - uid: 1099 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1668 + - uid: 1100 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1668 + - uid: 1101 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1668 + - uid: 1102 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1668 + - uid: 1103 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 1104 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1668 + - uid: 1105 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1668 + - uid: 1106 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1668 + - uid: 1107 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1668 + - uid: 1108 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1668 + - uid: 1109 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1668 + - uid: 1110 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1668 + - uid: 1111 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1668 + - uid: 1112 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1668 + - uid: 1113 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1668 + - uid: 1114 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - uid: 1115 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1668 + - uid: 1116 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1668 + - uid: 1117 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1668 + - uid: 1118 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1668 + - uid: 1119 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1668 + - uid: 1120 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 1121 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1668 + - uid: 1122 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1668 + - uid: 1123 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1668 + - uid: 1124 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1668 + - uid: 1125 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1668 + - uid: 1126 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1668 + - uid: 1127 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1668 + - uid: 1128 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1668 + - uid: 1129 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1668 + - uid: 1137 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1668 + - uid: 1202 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1668 + - uid: 1203 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1668 + - uid: 1204 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1668 + - uid: 1205 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1668 + - uid: 1206 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1668 + - uid: 1207 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1668 + - uid: 1208 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1668 + - uid: 1209 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1668 + - uid: 1210 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1668 + - uid: 1211 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1668 + - uid: 1212 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1668 + - uid: 1213 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1668 + - uid: 1214 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1668 + - uid: 1215 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1668 + - uid: 1216 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1668 + - uid: 1217 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1668 + - uid: 1218 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1668 + - uid: 1219 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1668 + - uid: 1220 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1668 + - uid: 1221 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1668 + - uid: 1222 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1668 + - uid: 1223 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1668 + - uid: 1224 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1668 + - uid: 1225 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1668 + - uid: 1226 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1668 + - uid: 1227 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1668 + - uid: 1228 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1668 + - uid: 1229 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1668 + - uid: 1230 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1668 + - uid: 1231 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1668 + - uid: 1232 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1668 + - uid: 1233 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1668 + - uid: 1234 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1668 + - uid: 1236 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1668 + - uid: 1237 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1668 + - uid: 1238 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1668 + - uid: 1239 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1668 + - uid: 1240 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1668 + - uid: 1241 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1668 + - uid: 1242 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1668 + - uid: 1243 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1668 + - uid: 1244 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1668 + - uid: 1245 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1668 + - uid: 1246 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1668 + - uid: 1247 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1668 + - uid: 1248 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1668 + - uid: 1249 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1668 + - uid: 1250 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1668 + - uid: 1251 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1668 + - uid: 1252 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1668 + - uid: 1253 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1668 + - uid: 1254 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1668 + - uid: 1255 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1668 + - uid: 1256 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1668 + - uid: 1257 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1668 + - uid: 1258 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1668 + - uid: 1259 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1668 + - uid: 1260 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1668 + - uid: 1261 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1668 + - uid: 1262 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 1263 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1668 + - uid: 1264 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1668 + - uid: 1265 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1668 + - uid: 1266 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1668 + - uid: 1267 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1668 + - uid: 1268 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1668 + - uid: 1269 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1668 + - uid: 1270 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1668 + - uid: 1271 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1668 + - uid: 1272 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1668 + - uid: 1273 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1668 + - uid: 1274 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1668 + - uid: 1275 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1668 + - uid: 1276 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1668 + - uid: 1277 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1668 + - uid: 1278 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1668 + - uid: 1279 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1668 + - uid: 1280 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1668 + - uid: 1281 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1668 + - uid: 1282 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1668 + - uid: 1283 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1668 + - uid: 1284 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1668 + - uid: 1285 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1668 + - uid: 1286 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1668 + - uid: 1287 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1668 + - uid: 1288 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1668 + - uid: 1289 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1668 + - uid: 1290 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1668 + - uid: 1291 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1668 + - uid: 1292 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1668 + - uid: 1293 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - uid: 1294 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1668 + - uid: 1295 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1668 + - uid: 1296 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1668 + - uid: 1297 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1668 + - uid: 1298 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1668 + - uid: 1299 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1668 + - uid: 1300 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - uid: 1301 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1668 + - uid: 1302 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1668 + - uid: 1303 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1668 + - uid: 1304 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1668 + - uid: 1305 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1668 + - uid: 1306 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1668 + - uid: 1307 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1668 + - uid: 1308 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1668 + - uid: 1309 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1668 + - uid: 1310 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1668 + - uid: 1311 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1668 + - uid: 1312 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1668 + - uid: 1313 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1668 + - uid: 1314 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1668 + - uid: 1315 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1668 + - uid: 1316 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1668 + - uid: 1317 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1668 + - uid: 1318 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1668 + - uid: 1319 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1668 + - uid: 1320 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1668 + - uid: 1342 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1668 + - uid: 1343 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1668 + - uid: 1344 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1668 + - uid: 1345 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - uid: 1346 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1668 + - uid: 1347 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1668 + - uid: 1348 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1668 + - uid: 1349 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 1350 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 1351 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 1352 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 1353 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1668 + - uid: 1354 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1668 + - uid: 1355 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1668 + - uid: 1356 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1668 + - uid: 1357 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1668 + - uid: 1358 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1668 + - uid: 1359 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1668 + - uid: 1360 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1668 + - uid: 1361 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1668 + - uid: 1362 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1668 + - uid: 1363 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1668 + - uid: 1364 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1668 + - uid: 1365 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1668 + - uid: 1366 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1668 + - uid: 1367 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1668 + - uid: 1368 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1668 + - uid: 1369 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1668 + - uid: 1370 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1668 + - uid: 1371 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1668 + - uid: 1372 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1668 + - uid: 1373 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1668 + - uid: 1374 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1668 + - uid: 1375 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1668 + - uid: 1376 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1668 + - uid: 1377 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1668 + - uid: 1378 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1668 + - uid: 1379 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1668 + - uid: 1380 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1668 + - uid: 1381 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 1668 + - uid: 1382 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1668 + - uid: 1383 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1668 + - uid: 1468 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1668 + - uid: 1469 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1668 + - uid: 1470 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1668 + - uid: 1471 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1668 + - uid: 1472 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1668 + - uid: 1678 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1668 + - uid: 1679 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1668 + - uid: 1680 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1668 + - uid: 1681 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1668 + - uid: 1682 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1668 + - uid: 1683 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1668 + - uid: 1684 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1668 + - uid: 1685 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1668 + - uid: 1686 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1668 + - uid: 1687 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1668 + - uid: 1688 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1668 + - uid: 1689 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1668 + - uid: 1690 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1668 + - uid: 1691 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1668 + - uid: 1692 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1668 + - uid: 1693 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1668 + - uid: 1694 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1668 + - uid: 1695 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1668 + - uid: 1696 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1668 + - uid: 1697 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1668 + - uid: 1698 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1668 + - uid: 1699 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1668 + - uid: 1700 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1668 + - uid: 1701 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1668 + - uid: 1702 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1668 + - uid: 1703 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1668 + - uid: 1704 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1668 + - uid: 1705 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1668 + - uid: 1706 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1668 + - uid: 1707 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1668 + - uid: 1708 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - uid: 1709 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1668 + - uid: 1710 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1668 + - uid: 1711 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - uid: 1712 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1668 + - uid: 1713 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1668 + - uid: 1714 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1668 + - uid: 1715 + components: + - type: Transform + pos: -14.5,15.5 + parent: 1668 + - uid: 1716 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1668 + - uid: 1717 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1668 + - uid: 1718 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1668 + - uid: 1719 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1668 + - uid: 1720 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1668 + - uid: 1721 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1668 + - uid: 1722 + components: + - type: Transform + pos: -10.5,16.5 + parent: 1668 + - uid: 1723 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1668 + - uid: 1724 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1668 + - uid: 1725 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1668 + - uid: 1726 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1668 + - uid: 1727 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1668 + - uid: 1728 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1668 + - uid: 1729 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1668 + - uid: 1730 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1668 + - uid: 1731 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1668 + - uid: 1732 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1668 + - uid: 1733 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1668 + - uid: 1734 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1668 + - uid: 1735 + components: + - type: Transform + pos: -11.5,23.5 + parent: 1668 + - uid: 1736 + components: + - type: Transform + pos: -11.5,24.5 + parent: 1668 + - uid: 1737 + components: + - type: Transform + pos: -11.5,25.5 + parent: 1668 + - uid: 1738 + components: + - type: Transform + pos: -11.5,26.5 + parent: 1668 + - uid: 1739 + components: + - type: Transform + pos: -11.5,27.5 + parent: 1668 + - uid: 1740 + components: + - type: Transform + pos: -11.5,28.5 + parent: 1668 + - uid: 1741 + components: + - type: Transform + pos: -11.5,29.5 + parent: 1668 + - uid: 1742 + components: + - type: Transform + pos: -11.5,30.5 + parent: 1668 + - uid: 1743 + components: + - type: Transform + pos: -11.5,31.5 + parent: 1668 + - uid: 1744 + components: + - type: Transform + pos: -12.5,31.5 + parent: 1668 + - uid: 1745 + components: + - type: Transform + pos: -12.5,32.5 + parent: 1668 + - uid: 1746 + components: + - type: Transform + pos: -10.5,31.5 + parent: 1668 + - uid: 1747 + components: + - type: Transform + pos: -9.5,31.5 + parent: 1668 + - uid: 1748 + components: + - type: Transform + pos: -8.5,31.5 + parent: 1668 + - uid: 1749 + components: + - type: Transform + pos: -7.5,31.5 + parent: 1668 + - uid: 1750 + components: + - type: Transform + pos: -6.5,31.5 + parent: 1668 + - uid: 1751 + components: + - type: Transform + pos: -6.5,32.5 + parent: 1668 + - uid: 1752 + components: + - type: Transform + pos: -9.5,32.5 + parent: 1668 + - uid: 1753 + components: + - type: Transform + pos: -9.5,33.5 + parent: 1668 + - uid: 1754 + components: + - type: Transform + pos: -12.5,30.5 + parent: 1668 + - uid: 1755 + components: + - type: Transform + pos: -13.5,30.5 + parent: 1668 + - uid: 1756 + components: + - type: Transform + pos: -14.5,30.5 + parent: 1668 + - uid: 1757 + components: + - type: Transform + pos: -14.5,29.5 + parent: 1668 + - uid: 1758 + components: + - type: Transform + pos: -15.5,29.5 + parent: 1668 + - uid: 1759 + components: + - type: Transform + pos: -16.5,29.5 + parent: 1668 + - uid: 1760 + components: + - type: Transform + pos: -12.5,26.5 + parent: 1668 + - uid: 1761 + components: + - type: Transform + pos: -13.5,26.5 + parent: 1668 + - uid: 1762 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1668 + - uid: 1763 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1668 + - uid: 1764 + components: + - type: Transform + pos: -16.5,26.5 + parent: 1668 + - uid: 1765 + components: + - type: Transform + pos: -12.5,23.5 + parent: 1668 + - uid: 1766 + components: + - type: Transform + pos: -13.5,23.5 + parent: 1668 + - uid: 1767 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1668 + - uid: 1768 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1668 + - uid: 1769 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1668 + - uid: 1770 + components: + - type: Transform + pos: -14.5,22.5 + parent: 1668 + - uid: 1771 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1668 + - uid: 1772 + components: + - type: Transform + pos: -14.5,20.5 + parent: 1668 + - uid: 1773 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1668 + - uid: 1774 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1668 + - uid: 1775 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1668 + - uid: 1776 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1668 + - uid: 1777 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1668 + - uid: 1778 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1668 + - uid: 1779 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1668 + - uid: 1780 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1668 + - uid: 1781 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1668 + - uid: 1782 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1668 + - uid: 1783 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1668 + - uid: 1784 + components: + - type: Transform + pos: -6.5,27.5 + parent: 1668 + - uid: 1785 + components: + - type: Transform + pos: -6.5,28.5 + parent: 1668 + - uid: 1786 + components: + - type: Transform + pos: -6.5,29.5 + parent: 1668 + - uid: 1787 + components: + - type: Transform + pos: -6.5,30.5 + parent: 1668 + - uid: 1788 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1668 + - uid: 1789 + components: + - type: Transform + pos: -8.5,27.5 + parent: 1668 + - uid: 1790 + components: + - type: Transform + pos: -9.5,27.5 + parent: 1668 + - uid: 1791 + components: + - type: Transform + pos: -10.5,27.5 + parent: 1668 + - uid: 1956 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1668 + - uid: 1957 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1668 + - uid: 1958 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1668 + - uid: 1959 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1668 + - uid: 1960 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1668 + - uid: 1961 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1668 + - uid: 1962 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1668 + - uid: 1963 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1668 + - uid: 1964 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1668 + - uid: 1965 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1668 + - uid: 1966 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1668 + - uid: 1967 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1668 + - uid: 1968 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1668 + - uid: 1969 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1668 + - uid: 1970 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1668 + - uid: 1971 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1668 + - uid: 1972 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1668 + - uid: 1973 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1668 + - uid: 1974 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1668 + - uid: 1975 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1668 + - uid: 1976 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1668 + - uid: 1977 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1668 + - uid: 1978 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1668 + - uid: 1979 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 1980 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1668 + - uid: 1981 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1668 + - uid: 1982 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1668 + - uid: 1983 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1668 + - uid: 1984 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1668 + - uid: 1985 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1668 + - uid: 1986 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1668 + - uid: 1987 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1668 + - uid: 1988 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1668 + - uid: 1989 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1668 + - uid: 1990 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1668 + - uid: 1991 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1668 + - uid: 1992 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1668 + - uid: 1993 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 2020 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - uid: 2021 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1668 + - uid: 2022 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1668 + - uid: 2023 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1668 + - uid: 2024 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1668 + - uid: 2025 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - uid: 2026 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1668 + - uid: 2027 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1668 + - uid: 2028 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1668 + - uid: 2029 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1668 + - uid: 2030 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1668 + - uid: 2031 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1668 + - uid: 2057 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1668 + - uid: 2567 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1668 + - uid: 2568 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1668 + - uid: 2569 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1668 + - uid: 2570 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1668 + - uid: 2571 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1668 + - uid: 2572 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1668 + - uid: 2573 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1668 + - uid: 2574 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1668 + - uid: 2575 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1668 + - uid: 2576 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1668 + - uid: 2577 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1668 + - uid: 2578 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1668 + - uid: 2579 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1668 + - uid: 2580 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1668 + - uid: 2581 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1668 + - uid: 2582 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1668 + - uid: 2583 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1668 + - uid: 2584 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1668 + - uid: 2585 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1668 + - uid: 2586 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1668 + - uid: 2587 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1668 + - uid: 2588 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1668 + - uid: 2589 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1668 + - uid: 2590 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1668 + - uid: 2591 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1668 + - uid: 2592 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1668 + - uid: 2593 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1668 + - uid: 2594 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1668 + - uid: 2595 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1668 + - uid: 2596 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1668 + - uid: 2597 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1668 + - uid: 2598 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1668 + - uid: 2599 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1668 + - uid: 2600 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1668 + - uid: 2601 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1668 + - uid: 2602 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1668 + - uid: 2603 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1668 + - uid: 2604 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1668 + - uid: 2605 + components: + - type: Transform + pos: 29.5,22.5 + parent: 1668 + - uid: 2606 + components: + - type: Transform + pos: 30.5,22.5 + parent: 1668 + - uid: 2607 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1668 + - uid: 2608 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1668 + - uid: 2609 + components: + - type: Transform + pos: 33.5,22.5 + parent: 1668 + - uid: 2610 + components: + - type: Transform + pos: 34.5,22.5 + parent: 1668 + - uid: 2611 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1668 + - uid: 2612 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1668 + - uid: 2613 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1668 + - uid: 2614 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1668 + - uid: 2615 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1668 + - uid: 2616 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1668 + - uid: 2617 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1668 + - uid: 2618 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1668 + - uid: 2619 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1668 + - uid: 2620 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1668 + - uid: 2621 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1668 + - uid: 2622 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1668 + - uid: 2623 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1668 + - uid: 2624 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1668 + - uid: 2625 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1668 + - uid: 2626 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1668 + - uid: 2627 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1668 + - uid: 2628 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1668 + - uid: 2629 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1668 + - uid: 2630 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1668 + - uid: 2631 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1668 + - uid: 2632 + components: + - type: Transform + pos: 31.5,13.5 + parent: 1668 + - uid: 2633 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1668 + - uid: 2634 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1668 + - uid: 2635 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1668 + - uid: 2636 + components: + - type: Transform + pos: 31.5,14.5 + parent: 1668 + - uid: 2637 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - uid: 2638 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1668 + - uid: 2639 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1668 + - uid: 2640 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1668 + - uid: 2641 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1668 + - uid: 2642 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1668 + - uid: 2643 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1668 + - uid: 2644 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1668 + - uid: 2645 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1668 + - uid: 2646 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1668 + - uid: 2647 + components: + - type: Transform + pos: 29.5,18.5 + parent: 1668 + - uid: 2648 + components: + - type: Transform + pos: 30.5,18.5 + parent: 1668 + - uid: 2649 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1668 + - uid: 2650 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1668 + - uid: 2651 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1668 + - uid: 2652 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1668 + - uid: 2653 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1668 + - uid: 2654 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1668 + - uid: 2655 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1668 + - uid: 2656 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1668 + - uid: 2657 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1668 + - uid: 2658 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1668 + - uid: 2659 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1668 + - uid: 2660 + components: + - type: Transform + pos: 33.5,12.5 + parent: 1668 + - uid: 2661 + components: + - type: Transform + pos: 34.5,12.5 + parent: 1668 + - uid: 2662 + components: + - type: Transform + pos: 33.5,11.5 + parent: 1668 + - uid: 2663 + components: + - type: Transform + pos: 32.5,11.5 + parent: 1668 + - uid: 2664 + components: + - type: Transform + pos: 31.5,11.5 + parent: 1668 + - uid: 2665 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1668 + - uid: 2666 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1668 + - uid: 2667 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1668 + - uid: 2668 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1668 + - uid: 2669 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1668 + - uid: 2670 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1668 + - uid: 2671 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1668 + - uid: 2672 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1668 + - uid: 2673 + components: + - type: Transform + pos: 35.5,19.5 + parent: 1668 + - uid: 2674 + components: + - type: Transform + pos: 34.5,19.5 + parent: 1668 + - uid: 2675 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1668 + - uid: 2676 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1668 + - uid: 2677 + components: + - type: Transform + pos: 33.5,17.5 + parent: 1668 + - uid: 2678 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1668 + - uid: 2679 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1668 + - uid: 2680 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1668 + - uid: 2681 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1668 + - uid: 2682 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1668 + - uid: 2683 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1668 + - uid: 2684 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1668 + - uid: 2685 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1668 + - uid: 2686 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1668 + - uid: 2687 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1668 + - uid: 2688 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1668 + - uid: 2689 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1668 + - uid: 2690 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1668 + - uid: 2691 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1668 + - uid: 2692 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1668 + - uid: 2693 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1668 + - uid: 2694 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1668 + - uid: 2695 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1668 + - uid: 2696 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1668 + - uid: 2697 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1668 + - uid: 2698 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1668 + - uid: 2699 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1668 + - uid: 2700 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1668 + - uid: 2701 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - uid: 2702 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1668 + - uid: 2703 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 2704 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1668 + - uid: 2705 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 + - uid: 2706 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1668 + - uid: 2707 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1668 + - uid: 2708 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1668 + - uid: 2709 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1668 + - uid: 2711 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1668 + - uid: 2743 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1668 + - uid: 3033 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1668 + - uid: 3034 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1668 + - uid: 3035 + components: + - type: Transform + pos: 9.5,30.5 + parent: 1668 + - uid: 3036 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1668 + - uid: 3037 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1668 + - uid: 3038 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1668 + - uid: 3039 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1668 + - uid: 3040 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1668 + - uid: 3041 + components: + - type: Transform + pos: 14.5,31.5 + parent: 1668 + - uid: 3042 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1668 + - uid: 3043 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1668 + - uid: 3044 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1668 + - uid: 3045 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1668 + - uid: 3046 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1668 + - uid: 3047 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1668 + - uid: 3048 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1668 + - uid: 3049 + components: + - type: Transform + pos: 9.5,29.5 + parent: 1668 + - uid: 3050 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1668 + - uid: 3051 + components: + - type: Transform + pos: 8.5,29.5 + parent: 1668 + - uid: 3052 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1668 + - uid: 3053 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1668 + - uid: 3054 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1668 + - uid: 3055 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1668 + - uid: 3056 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1668 + - uid: 3057 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1668 + - uid: 3058 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1668 + - uid: 3059 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1668 + - uid: 3060 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1668 + - uid: 3061 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1668 + - uid: 3062 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1668 + - uid: 3063 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1668 + - uid: 3064 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1668 + - uid: 3065 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1668 + - uid: 3066 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1668 + - uid: 3067 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1668 + - uid: 3068 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1668 + - uid: 3069 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1668 + - uid: 3070 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1668 + - uid: 3071 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1668 + - uid: 3072 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1668 + - uid: 3073 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1668 + - uid: 3074 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1668 + - uid: 3075 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1668 + - uid: 3076 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1668 + - uid: 3077 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1668 + - uid: 3078 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1668 + - uid: 3080 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1668 + - uid: 3081 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1668 + - uid: 3082 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1668 + - uid: 3083 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1668 + - uid: 3084 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1668 + - uid: 3085 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1668 + - uid: 3086 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1668 + - uid: 3087 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1668 + - uid: 3088 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1668 + - uid: 3089 + components: + - type: Transform + pos: 12.5,25.5 + parent: 1668 + - uid: 3090 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1668 + - uid: 3091 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1668 + - uid: 3092 + components: + - type: Transform + pos: 15.5,25.5 + parent: 1668 + - uid: 3093 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1668 + - uid: 3094 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1668 + - uid: 3095 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1668 + - uid: 3096 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1668 + - uid: 3097 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1668 + - uid: 3098 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1668 + - uid: 3099 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1668 + - uid: 3100 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1668 + - uid: 3101 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1668 + - uid: 3102 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1668 + - uid: 3103 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1668 + - uid: 3104 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1668 + - uid: 3105 + components: + - type: Transform + pos: 5.5,28.5 + parent: 1668 + - uid: 3106 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1668 + - uid: 3107 + components: + - type: Transform + pos: 3.5,28.5 + parent: 1668 + - uid: 3108 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1668 + - uid: 3109 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1668 + - uid: 3110 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1668 + - uid: 3111 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1668 + - uid: 3112 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1668 + - uid: 3113 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - uid: 3114 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1668 + - uid: 3115 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1668 + - uid: 3116 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1668 + - uid: 3467 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1668 + - uid: 3468 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1668 + - uid: 3469 + components: + - type: Transform + pos: -21.5,12.5 + parent: 1668 + - uid: 3470 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1668 + - uid: 3471 + components: + - type: Transform + pos: -21.5,14.5 + parent: 1668 + - uid: 3472 + components: + - type: Transform + pos: -21.5,11.5 + parent: 1668 + - uid: 3473 + components: + - type: Transform + pos: -21.5,10.5 + parent: 1668 + - uid: 3474 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1668 + - uid: 3475 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1668 + - uid: 3476 + components: + - type: Transform + pos: -19.5,11.5 + parent: 1668 + - uid: 3477 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1668 + - uid: 3478 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1668 + - uid: 3479 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1668 + - uid: 3480 + components: + - type: Transform + pos: -25.5,11.5 + parent: 1668 + - uid: 3481 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1668 + - uid: 3482 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1668 + - uid: 3483 + components: + - type: Transform + pos: -27.5,12.5 + parent: 1668 + - uid: 3484 + components: + - type: Transform + pos: -25.5,10.5 + parent: 1668 + - uid: 3485 + components: + - type: Transform + pos: -25.5,9.5 + parent: 1668 + - uid: 3486 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1668 + - uid: 3487 + components: + - type: Transform + pos: -27.5,9.5 + parent: 1668 + - uid: 3488 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1668 + - uid: 3489 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1668 + - uid: 3490 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1668 + - uid: 3491 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1668 + - uid: 3492 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1668 + - uid: 3493 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1668 + - uid: 3494 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1668 + - uid: 3495 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1668 + - uid: 3496 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1668 + - uid: 3497 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1668 + - uid: 3498 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1668 + - uid: 3499 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1668 + - uid: 3500 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - uid: 3501 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1668 + - uid: 3502 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1668 + - uid: 3503 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1668 + - uid: 3504 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1668 + - uid: 3505 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - uid: 3506 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1668 + - uid: 3507 + components: + - type: Transform + pos: -12.5,6.5 + parent: 1668 + - uid: 3508 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1668 + - uid: 3509 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1668 + - uid: 3510 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1668 + - uid: 3511 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1668 + - uid: 3512 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1668 + - uid: 3513 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1668 + - uid: 3514 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1668 + - uid: 3515 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1668 + - uid: 3516 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1668 + - uid: 3517 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1668 + - uid: 3518 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1668 + - uid: 3519 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1668 + - uid: 3520 + components: + - type: Transform + pos: -19.5,9.5 + parent: 1668 + - uid: 3521 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1668 + - uid: 3522 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1668 + - uid: 3991 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1668 + - uid: 3992 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - uid: 3993 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1668 + - uid: 3994 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1668 + - uid: 3995 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 1668 + - uid: 3996 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1668 + - uid: 3997 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1668 + - uid: 3998 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 1668 + - uid: 3999 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1668 + - uid: 4000 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - uid: 4001 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1668 + - uid: 4002 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1668 + - uid: 4003 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1668 + - uid: 4004 + components: + - type: Transform + pos: -33.5,1.5 + parent: 1668 + - uid: 4005 + components: + - type: Transform + pos: -34.5,1.5 + parent: 1668 + - uid: 4006 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1668 + - uid: 4007 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1668 + - uid: 4008 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 + - uid: 4009 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 4010 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1668 + - uid: 4011 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1668 + - uid: 4012 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1668 + - uid: 4013 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1668 + - uid: 4014 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1668 + - uid: 4015 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1668 + - uid: 4016 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - uid: 4017 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1668 + - uid: 4018 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1668 + - uid: 4019 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1668 + - uid: 4020 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1668 + - uid: 4021 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1668 + - uid: 4022 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1668 + - uid: 4023 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1668 + - uid: 4024 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1668 + - uid: 4025 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1668 + - uid: 4026 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1668 + - uid: 4027 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1668 + - uid: 4028 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1668 + - uid: 4029 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1668 + - uid: 4030 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1668 + - uid: 4031 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1668 + - uid: 4032 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1668 + - uid: 4033 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1668 + - uid: 4034 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1668 + - uid: 4035 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1668 + - uid: 4036 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1668 + - uid: 4037 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1668 + - uid: 4038 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1668 + - uid: 4039 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1668 + - uid: 4040 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1668 + - uid: 4041 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1668 + - uid: 4042 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1668 + - uid: 4043 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 1668 + - uid: 4044 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1668 + - uid: 4045 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 1668 + - uid: 4046 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1668 + - uid: 4047 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1668 + - uid: 4048 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1668 + - uid: 4049 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1668 + - uid: 4050 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1668 + - uid: 4051 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1668 + - uid: 4052 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1668 + - uid: 4053 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1668 + - uid: 4054 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1668 + - uid: 4055 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1668 + - uid: 4056 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1668 + - uid: 4057 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1668 + - uid: 4058 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1668 + - uid: 4059 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1668 + - uid: 4060 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1668 + - uid: 4061 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1668 + - uid: 4062 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1668 + - uid: 4063 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1668 + - uid: 4064 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1668 + - uid: 4065 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1668 + - uid: 4066 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1668 + - uid: 4067 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1668 + - uid: 4068 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1668 + - uid: 4069 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1668 + - uid: 4070 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1668 + - uid: 4071 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1668 + - uid: 4072 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1668 + - uid: 4073 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1668 + - uid: 4074 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1668 + - uid: 4075 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1668 + - uid: 4076 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1668 + - uid: 4077 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1668 + - uid: 4078 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1668 + - uid: 4079 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1668 + - uid: 4080 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1668 + - uid: 4081 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 1668 + - uid: 4082 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 1668 + - uid: 4083 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1668 + - uid: 4084 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1668 + - uid: 4085 + components: + - type: Transform + pos: -31.5,7.5 + parent: 1668 + - uid: 4086 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1668 + - uid: 4087 + components: + - type: Transform + pos: -31.5,5.5 + parent: 1668 + - uid: 4088 + components: + - type: Transform + pos: -31.5,4.5 + parent: 1668 + - uid: 4089 + components: + - type: Transform + pos: -32.5,4.5 + parent: 1668 + - uid: 4090 + components: + - type: Transform + pos: -33.5,4.5 + parent: 1668 + - uid: 4091 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1668 + - uid: 4092 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1668 + - uid: 4093 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1668 + - uid: 4094 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1668 + - uid: 4095 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1668 + - uid: 4096 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1668 + - uid: 4097 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1668 + - uid: 4098 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1668 + - uid: 4099 + components: + - type: Transform + pos: -30.5,4.5 + parent: 1668 + - uid: 4100 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1668 + - uid: 4101 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1668 + - uid: 4102 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1668 + - uid: 4103 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1668 + - uid: 4104 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1668 + - uid: 4481 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1668 + - uid: 4482 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1668 + - uid: 4483 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1668 + - uid: 4484 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1668 + - uid: 4485 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1668 + - uid: 4486 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1668 + - uid: 4487 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1668 + - uid: 4488 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1668 + - uid: 4489 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1668 + - uid: 4490 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1668 + - uid: 4491 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 1668 + - uid: 4492 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 1668 + - uid: 4493 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1668 + - uid: 4494 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 1668 + - uid: 4495 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1668 + - uid: 4496 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 1668 + - uid: 4497 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1668 + - uid: 4498 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1668 + - uid: 4500 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1668 + - uid: 4501 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1668 + - uid: 4502 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1668 + - uid: 4503 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1668 + - uid: 4505 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1668 + - uid: 4506 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1668 + - uid: 4507 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1668 + - uid: 4508 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1668 + - uid: 4509 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1668 + - uid: 4510 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 1668 + - uid: 4511 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 1668 + - uid: 4512 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 1668 + - uid: 4513 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 1668 + - uid: 4514 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 1668 + - uid: 4515 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 1668 + - uid: 4516 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 1668 + - uid: 4517 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1668 + - uid: 4518 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1668 + - uid: 4519 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 1668 + - uid: 4520 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1668 + - uid: 4521 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 1668 + - uid: 4522 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 1668 + - uid: 4523 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 1668 + - uid: 4524 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 1668 + - uid: 4525 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1668 + - uid: 4526 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 1668 + - uid: 4527 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1668 + - uid: 4528 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1668 + - uid: 4529 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1668 + - uid: 4530 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1668 + - uid: 4531 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1668 + - uid: 4532 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1668 + - uid: 4533 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1668 + - uid: 4534 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 1668 + - uid: 4535 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 1668 + - uid: 4536 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 1668 + - uid: 4537 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 1668 + - uid: 4538 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 1668 + - uid: 4539 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 1668 + - uid: 4540 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 1668 + - uid: 4541 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 1668 + - uid: 4542 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 1668 + - uid: 4543 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1668 + - uid: 4544 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 1668 + - uid: 4545 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 1668 + - uid: 4546 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 1668 + - uid: 4547 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 1668 + - uid: 4548 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 1668 + - uid: 4549 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - uid: 4550 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - uid: 4551 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1668 + - uid: 4552 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1668 + - uid: 4553 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1668 + - uid: 4554 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1668 + - uid: 4555 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1668 + - uid: 4556 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1668 + - uid: 4557 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1668 + - uid: 4558 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 1668 + - uid: 4559 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1668 + - uid: 4560 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1668 + - uid: 4561 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1668 + - uid: 4562 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1668 + - uid: 4563 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1668 + - uid: 4564 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1668 + - uid: 4565 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1668 + - uid: 4566 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1668 + - uid: 4567 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1668 + - uid: 4898 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1668 + - uid: 4899 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1668 + - uid: 4900 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 1668 + - uid: 4901 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 1668 + - uid: 4902 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1668 + - uid: 4903 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1668 + - uid: 4904 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1668 + - uid: 4905 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 1668 + - uid: 4906 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1668 + - uid: 4907 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1668 + - uid: 4908 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1668 + - uid: 4909 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1668 + - uid: 4910 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1668 + - uid: 4911 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1668 + - uid: 4912 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1668 + - uid: 4913 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 1668 + - uid: 4914 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 1668 + - uid: 4915 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 1668 + - uid: 4916 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 1668 + - uid: 4917 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 1668 + - uid: 4918 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 1668 + - uid: 4919 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 1668 + - uid: 4920 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 1668 + - uid: 4921 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 1668 + - uid: 4922 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 1668 + - uid: 4993 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1668 + - uid: 4994 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1668 + - uid: 4995 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1668 + - uid: 4996 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1668 + - uid: 4997 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1668 + - uid: 4998 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1668 + - uid: 4999 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1668 + - uid: 5000 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1668 + - uid: 5001 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1668 + - uid: 5002 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1668 + - uid: 5003 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1668 + - uid: 5004 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1668 + - uid: 5005 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1668 + - uid: 5006 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 1668 + - uid: 5007 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1668 + - uid: 5008 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1668 + - uid: 5009 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 1668 + - uid: 5010 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 1668 + - uid: 5011 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 1668 + - uid: 5012 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - uid: 5013 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1668 + - uid: 5014 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1668 + - uid: 5015 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1668 + - uid: 5016 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1668 + - uid: 5017 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1668 + - uid: 5018 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1668 + - uid: 5019 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1668 + - uid: 5020 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 5021 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1668 + - uid: 5022 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1668 + - uid: 5023 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1668 + - uid: 5024 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1668 + - uid: 5026 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1668 + - uid: 5027 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1668 + - uid: 5028 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1668 + - uid: 5029 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1668 + - uid: 5030 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1668 + - uid: 5031 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1668 + - uid: 5032 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1668 + - uid: 5033 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1668 + - uid: 5034 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1668 + - uid: 5035 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1668 + - uid: 5036 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1668 + - uid: 5037 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1668 + - uid: 5038 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1668 + - uid: 5039 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1668 + - uid: 5040 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1668 + - uid: 5121 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1668 + - uid: 5122 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1668 + - uid: 5123 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1668 + - uid: 5124 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 1668 + - uid: 5125 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1668 + - uid: 5126 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1668 + - uid: 5127 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1668 + - uid: 5128 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1668 + - uid: 5129 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 1668 + - uid: 5130 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1668 + - uid: 5131 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 1668 + - uid: 5132 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1668 + - uid: 5134 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 5135 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 1668 + - uid: 5136 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1668 + - uid: 5137 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 1668 + - uid: 5138 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 1668 + - uid: 5139 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1668 + - uid: 5140 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 1668 + - uid: 5141 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1668 + - uid: 5142 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 1668 + - uid: 5143 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 1668 + - uid: 5144 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1668 + - uid: 5145 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1668 + - uid: 5147 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1668 + - uid: 5148 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1668 + - uid: 5149 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1668 + - uid: 5150 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1668 + - uid: 5151 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 1668 + - uid: 5152 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1668 + - uid: 5153 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 1668 + - uid: 5154 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1668 + - uid: 5155 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1668 + - uid: 5156 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1668 + - uid: 5157 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1668 + - uid: 5158 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1668 + - uid: 5159 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1668 + - uid: 5160 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1668 + - uid: 5161 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1668 + - uid: 5162 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1668 + - uid: 5163 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1668 + - uid: 5164 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1668 + - uid: 5165 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1668 + - uid: 5166 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1668 + - uid: 5171 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1668 + - uid: 5172 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1668 + - uid: 5173 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1668 + - uid: 5174 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1668 + - uid: 5258 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1668 + - uid: 5259 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1668 + - uid: 5260 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1668 + - uid: 5261 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1668 + - uid: 5262 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 1668 + - uid: 5263 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1668 + - uid: 5264 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1668 + - uid: 5265 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1668 + - uid: 5266 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 1668 + - uid: 5267 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 1668 + - uid: 5268 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 1668 + - uid: 5269 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 1668 + - uid: 5270 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 1668 + - uid: 5271 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - uid: 5272 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1668 + - uid: 5273 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1668 + - uid: 5274 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1668 + - uid: 5275 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1668 + - uid: 5276 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 1668 + - uid: 5441 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - uid: 5442 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1668 + - uid: 5443 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1668 + - uid: 5444 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1668 + - uid: 5445 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1668 + - uid: 5446 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1668 + - uid: 5447 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 1668 + - uid: 5448 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1668 + - uid: 5449 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1668 + - uid: 5450 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1668 + - uid: 5585 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1668 + - uid: 5935 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 1668 + - uid: 5936 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1668 + - uid: 5937 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1668 + - uid: 5938 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1668 + - uid: 5939 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 1668 + - uid: 5940 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 1668 + - uid: 6067 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 1668 + - uid: 6068 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 1668 + - uid: 6069 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 1668 + - uid: 6070 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 1668 + - uid: 6071 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 1668 + - uid: 6072 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 1668 + - uid: 6073 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 1668 + - uid: 6074 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 1668 + - uid: 6075 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 1668 + - uid: 6076 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 1668 + - uid: 6077 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1668 + - uid: 6078 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 1668 + - uid: 6079 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1668 + - uid: 6080 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 1668 + - uid: 6081 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1668 + - uid: 6082 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 1668 + - uid: 6083 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 1668 + - uid: 6084 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 1668 + - uid: 6085 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 1668 + - uid: 6086 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 1668 + - uid: 6087 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 1668 + - uid: 6088 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 1668 + - uid: 6089 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 1668 + - uid: 6090 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1668 + - uid: 6091 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1668 + - uid: 6092 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 1668 + - uid: 6093 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 1668 + - uid: 6094 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 1668 + - uid: 6095 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 1668 + - uid: 6096 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 1668 + - uid: 6097 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 1668 + - uid: 6098 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 1668 + - uid: 6099 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 1668 + - uid: 6100 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 1668 + - uid: 6112 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1668 + - uid: 6113 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - uid: 6114 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1668 + - uid: 6115 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1668 + - uid: 6116 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - uid: 6117 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1668 + - uid: 6118 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 1668 + - uid: 6119 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 1668 + - uid: 6120 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1668 + - uid: 6121 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1668 + - uid: 6122 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 1668 + - uid: 6123 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 1668 + - uid: 6124 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 1668 + - uid: 6125 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 1668 + - uid: 6126 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 1668 + - uid: 6127 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1668 + - uid: 6128 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1668 + - uid: 6129 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1668 + - uid: 6131 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1668 + - uid: 6132 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1668 + - uid: 6133 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1668 + - uid: 6134 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1668 + - uid: 6135 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1668 + - uid: 6136 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1668 + - uid: 6202 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1668 + - uid: 6203 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 1668 + - uid: 6204 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 1668 + - uid: 6205 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 1668 + - uid: 6206 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1668 + - uid: 6207 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 1668 + - uid: 6208 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1668 + - uid: 6209 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1668 + - uid: 6210 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 1668 + - uid: 6211 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 1668 + - uid: 6212 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 1668 + - uid: 6213 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1668 + - uid: 6214 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1668 + - uid: 6215 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1668 + - uid: 6216 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1668 + - uid: 6217 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1668 + - uid: 6218 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1668 + - uid: 6219 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1668 + - uid: 6220 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1668 + - uid: 6221 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1668 + - uid: 6222 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 1668 + - uid: 6223 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 1668 + - uid: 6224 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 1668 + - uid: 6225 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1668 + - uid: 6346 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1668 + - uid: 6347 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1668 + - uid: 6348 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 1668 + - uid: 6349 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 1668 + - uid: 6350 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 1668 + - uid: 6351 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1668 + - uid: 6352 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 1668 + - uid: 6353 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 1668 + - uid: 6354 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 1668 + - uid: 6355 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 1668 + - uid: 6356 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 1668 + - uid: 6357 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 1668 + - uid: 6358 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 1668 + - uid: 6359 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 1668 + - uid: 6360 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1668 + - uid: 6409 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1668 + - uid: 6410 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 1668 + - uid: 6411 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 1668 + - uid: 6412 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 1668 + - uid: 6413 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 1668 + - uid: 6414 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 1668 + - uid: 6415 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 1668 + - uid: 6416 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 1668 + - uid: 6417 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 1668 + - uid: 6418 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 1668 + - uid: 6419 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 1668 + - uid: 6420 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 1668 + - uid: 6421 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 1668 + - uid: 6422 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 1668 + - uid: 6423 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 1668 + - uid: 6424 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 1668 + - uid: 6425 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 1668 + - uid: 6426 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 1668 + - uid: 6427 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 1668 + - uid: 6428 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1668 + - uid: 6429 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 1668 + - uid: 6430 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 1668 + - uid: 6431 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1668 + - uid: 6432 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 1668 + - uid: 6433 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 1668 + - uid: 6434 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 1668 + - uid: 6435 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 1668 + - uid: 6436 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 1668 + - uid: 6437 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 1668 + - uid: 6438 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 1668 + - uid: 6439 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 1668 + - uid: 6774 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1668 + - uid: 6776 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1668 + - uid: 6854 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1668 + - uid: 6855 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 1668 + - uid: 6856 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 1668 + - uid: 6857 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 1668 + - uid: 6858 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 1668 + - uid: 6859 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 1668 + - uid: 6860 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 1668 + - uid: 6861 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 1668 + - uid: 6862 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 1668 + - uid: 6863 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 1668 + - uid: 6971 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1668 + - uid: 6972 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 1668 + - uid: 6973 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1668 + - uid: 6974 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1668 + - uid: 6975 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1668 + - uid: 6976 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 1668 +- proto: CableHV + entities: + - uid: 1391 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 1668 + - uid: 1465 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 1668 + - uid: 1475 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1668 + - uid: 1476 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1668 + - uid: 1477 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1668 + - uid: 1478 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 1668 + - uid: 1479 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1668 + - uid: 1480 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1668 + - uid: 1482 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 1668 + - uid: 1659 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1668 + - uid: 1864 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1668 + - uid: 1865 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1668 + - uid: 1866 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - uid: 1867 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1668 + - uid: 1868 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1668 + - uid: 1869 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1668 + - uid: 1870 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1668 + - uid: 1871 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1668 + - uid: 1872 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1668 + - uid: 1873 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1668 + - uid: 1874 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1668 + - uid: 1875 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 1876 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1668 + - uid: 1877 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 1878 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - uid: 1879 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 + - uid: 1880 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1668 + - uid: 1881 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1668 + - uid: 1882 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 1883 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - uid: 1884 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1668 + - uid: 1885 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1668 + - uid: 1886 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1668 + - uid: 1887 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1668 + - uid: 1888 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1668 + - uid: 1889 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1668 + - uid: 1890 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1668 + - uid: 1891 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1668 + - uid: 1892 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1668 + - uid: 1893 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1668 + - uid: 1894 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1668 + - uid: 1895 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1668 + - uid: 1896 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1668 + - uid: 1897 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1668 + - uid: 1898 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1668 + - uid: 1899 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1668 + - uid: 1900 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1668 + - uid: 1901 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1668 + - uid: 1902 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1668 + - uid: 1903 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1668 + - uid: 1904 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1668 + - uid: 1905 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1668 + - uid: 1906 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1668 + - uid: 1907 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1668 + - uid: 1908 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1668 + - uid: 1909 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1668 + - uid: 1910 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1668 + - uid: 1911 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1668 + - uid: 1912 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1668 + - uid: 1913 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1668 + - uid: 1914 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1668 + - uid: 1915 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1668 + - uid: 1916 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 1917 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 1918 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - uid: 1919 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - uid: 1920 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - uid: 1921 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - uid: 1922 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1668 + - uid: 1923 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1668 + - uid: 1924 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1668 + - uid: 1925 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1668 + - uid: 1926 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1668 + - uid: 1927 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1668 + - uid: 1928 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1668 + - uid: 1929 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1668 + - uid: 1930 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1668 + - uid: 1931 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1668 + - uid: 1932 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1668 + - uid: 1933 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1668 + - uid: 1934 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1668 + - uid: 1935 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1668 + - uid: 1936 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1668 + - uid: 1937 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1668 + - uid: 1938 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1668 + - uid: 1939 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1668 + - uid: 1940 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1668 + - uid: 1941 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1668 + - uid: 1942 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1668 + - uid: 1943 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1668 + - uid: 1944 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1668 + - uid: 1945 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1668 + - uid: 1946 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1668 + - uid: 1947 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1668 + - uid: 1948 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1668 + - uid: 1949 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1668 + - uid: 1950 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1668 + - uid: 1951 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 1952 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1668 + - uid: 1953 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1668 + - uid: 1954 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1668 + - uid: 2523 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1668 + - uid: 2524 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1668 + - uid: 2525 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1668 + - uid: 2526 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1668 + - uid: 2527 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1668 + - uid: 2528 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1668 + - uid: 2529 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1668 + - uid: 2530 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1668 + - uid: 2531 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1668 + - uid: 2532 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1668 + - uid: 2533 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1668 + - uid: 2534 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1668 + - uid: 2535 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1668 + - uid: 2536 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1668 + - uid: 2537 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1668 + - uid: 2538 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1668 + - uid: 2539 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1668 + - uid: 2540 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - uid: 2541 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1668 + - uid: 2542 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 2543 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1668 + - uid: 2544 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 + - uid: 2545 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1668 + - uid: 3257 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1668 + - uid: 3523 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1668 + - uid: 3524 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1668 + - uid: 3525 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1668 + - uid: 3526 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1668 + - uid: 3527 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - uid: 3528 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1668 + - uid: 3529 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1668 + - uid: 3530 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1668 + - uid: 3531 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1668 + - uid: 3532 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1668 + - uid: 3533 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1668 + - uid: 3534 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1668 + - uid: 3535 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1668 + - uid: 3536 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1668 + - uid: 3537 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1668 + - uid: 3538 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1668 + - uid: 3539 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1668 + - uid: 3540 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - uid: 3541 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1668 + - uid: 3542 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1668 + - uid: 3543 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1668 + - uid: 3544 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1668 + - uid: 3545 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1668 + - uid: 3546 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1668 + - uid: 3547 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1668 + - uid: 3548 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1668 + - uid: 3549 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1668 + - uid: 3550 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1668 + - uid: 3551 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1668 + - uid: 3552 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1668 + - uid: 3553 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1668 + - uid: 3554 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1668 + - uid: 3555 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1668 + - uid: 3556 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - uid: 3557 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1668 + - uid: 3558 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1668 + - uid: 3559 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1668 + - uid: 3560 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1668 + - uid: 3561 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1668 + - uid: 3562 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1668 + - uid: 3563 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1668 + - uid: 3564 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1668 + - uid: 3565 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - uid: 3566 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1668 + - uid: 3567 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1668 + - uid: 3568 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1668 + - uid: 3569 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1668 + - uid: 3570 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1668 + - uid: 3571 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - uid: 3574 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1668 + - uid: 3950 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1668 + - uid: 3951 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1668 + - uid: 3952 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1668 + - uid: 3953 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1668 + - uid: 3954 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1668 + - uid: 3955 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1668 + - uid: 3956 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1668 + - uid: 3957 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1668 + - uid: 3958 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1668 + - uid: 3959 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1668 + - uid: 3960 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1668 + - uid: 3961 + components: + - type: Transform + pos: -30.5,3.5 + parent: 1668 + - uid: 3962 + components: + - type: Transform + pos: -30.5,4.5 + parent: 1668 + - uid: 3963 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1668 + - uid: 3964 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1668 + - uid: 3965 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1668 + - uid: 3966 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1668 + - uid: 3967 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1668 + - uid: 4359 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1668 + - uid: 4360 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 1668 + - uid: 4577 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1668 + - uid: 4580 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1668 + - uid: 4634 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 1668 + - uid: 4667 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1668 + - uid: 4668 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 1668 + - uid: 4669 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1668 + - uid: 4764 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1668 + - uid: 4765 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1668 + - uid: 4766 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1668 + - uid: 4767 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1668 + - uid: 4768 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1668 + - uid: 4769 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1668 + - uid: 4770 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1668 + - uid: 4771 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1668 + - uid: 4772 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1668 + - uid: 4773 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - uid: 4774 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1668 + - uid: 4775 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 1668 + - uid: 4776 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1668 + - uid: 4777 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1668 + - uid: 4778 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1668 + - uid: 4779 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1668 + - uid: 4780 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 4781 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1668 + - uid: 4782 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1668 + - uid: 4783 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1668 + - uid: 4784 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1668 + - uid: 4785 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1668 + - uid: 4786 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1668 + - uid: 4787 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1668 + - uid: 4788 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1668 + - uid: 4789 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1668 + - uid: 4790 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1668 + - uid: 4791 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1668 + - uid: 4792 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1668 + - uid: 4793 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1668 + - uid: 4794 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1668 + - uid: 4795 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 1668 + - uid: 4796 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1668 + - uid: 4797 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1668 + - uid: 4798 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1668 + - uid: 4799 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1668 + - uid: 4800 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1668 + - uid: 4801 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1668 + - uid: 4802 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1668 + - uid: 4803 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1668 + - uid: 4804 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1668 + - uid: 4805 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1668 + - uid: 4806 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1668 + - uid: 4808 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1668 + - uid: 4809 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1668 + - uid: 4810 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1668 + - uid: 4811 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 4812 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 4813 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 4814 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1668 + - uid: 4856 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1668 + - uid: 4972 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 1668 + - uid: 4974 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 1668 + - uid: 4975 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 1668 + - uid: 5071 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1668 + - uid: 5072 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1668 + - uid: 5073 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1668 + - uid: 5074 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 1668 + - uid: 5081 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1668 + - uid: 5082 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1668 + - uid: 5083 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1668 + - uid: 5084 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - uid: 5085 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1668 + - uid: 5086 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1668 + - uid: 5087 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1668 + - uid: 5088 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1668 + - uid: 5089 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1668 + - uid: 5090 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1668 + - uid: 5091 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 1668 + - uid: 5092 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 1668 + - uid: 5093 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1668 + - uid: 5094 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1668 + - uid: 5095 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1668 + - uid: 5096 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1668 + - uid: 5097 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1668 + - uid: 5098 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1668 + - uid: 5099 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1668 + - uid: 5100 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1668 + - uid: 5101 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1668 + - uid: 5185 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1668 + - uid: 5186 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1668 + - uid: 5187 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1668 + - uid: 5188 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1668 + - uid: 5189 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 1668 + - uid: 5190 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1668 + - uid: 5191 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 1668 + - uid: 5192 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1668 + - uid: 5193 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1668 + - uid: 5194 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1668 + - uid: 5195 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1668 + - uid: 5196 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1668 + - uid: 5341 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1668 + - uid: 5342 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1668 + - uid: 5343 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1668 + - uid: 5370 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1668 + - uid: 5393 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1668 + - uid: 5807 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 1668 + - uid: 5808 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 1668 + - uid: 5809 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 1668 + - uid: 5810 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 1668 + - uid: 5811 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 1668 + - uid: 5812 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1668 + - uid: 5813 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1668 + - uid: 6006 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1668 + - uid: 6007 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1668 + - uid: 6008 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1668 + - uid: 6009 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1668 + - uid: 6010 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - uid: 6011 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1668 + - uid: 6012 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1668 + - uid: 6013 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 1668 + - uid: 6014 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 1668 + - uid: 6015 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 1668 + - uid: 6016 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1668 + - uid: 6017 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1668 + - uid: 6018 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1668 + - uid: 6019 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 1668 + - uid: 6020 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 1668 + - uid: 6021 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 1668 + - uid: 6022 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1668 + - uid: 6023 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1668 + - uid: 6026 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1668 + - uid: 6027 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 1668 + - uid: 6028 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 1668 + - uid: 6029 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 1668 + - uid: 6030 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1668 + - uid: 6031 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 1668 + - uid: 6032 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 1668 + - uid: 6033 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 1668 + - uid: 6034 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 1668 + - uid: 6035 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 1668 + - uid: 6036 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 1668 + - uid: 6037 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1668 + - uid: 6038 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 1668 + - uid: 6039 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 1668 + - uid: 6040 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1668 + - uid: 6041 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - uid: 6042 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 1668 + - uid: 6043 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1668 + - uid: 6044 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 1668 + - uid: 6045 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 1668 + - uid: 6046 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 1668 + - uid: 6047 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 1668 + - uid: 6048 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1668 + - uid: 6049 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1668 + - uid: 6050 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1668 + - uid: 6051 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1668 + - uid: 6052 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1668 + - uid: 6053 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 1668 + - uid: 6054 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 1668 + - uid: 6166 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 1668 + - uid: 6167 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1668 + - uid: 6168 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1668 + - uid: 6169 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 1668 + - uid: 6170 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 1668 + - uid: 6171 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1668 + - uid: 6172 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1668 + - uid: 6173 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1668 + - uid: 6174 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1668 + - uid: 6175 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1668 + - uid: 6176 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 1668 + - uid: 6177 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1668 + - uid: 6178 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1668 + - uid: 6179 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1668 + - uid: 6253 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1668 + - uid: 6254 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1668 + - uid: 6255 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 1668 + - uid: 6256 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1668 + - uid: 6257 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 1668 + - uid: 6258 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 1668 + - uid: 6259 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 1668 + - uid: 6260 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 1668 + - uid: 6261 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 1668 + - uid: 6262 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 1668 + - uid: 6263 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 1668 + - uid: 6264 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1668 + - uid: 6265 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1668 + - uid: 6266 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1668 + - uid: 6594 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 1668 + - uid: 6631 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1668 + - uid: 6773 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1668 + - uid: 6777 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 1668 + - uid: 6786 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1668 +- proto: CableMV + entities: + - uid: 1146 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1668 + - uid: 1147 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1668 + - uid: 1148 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1668 + - uid: 1149 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1668 + - uid: 1150 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1668 + - uid: 1151 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1668 + - uid: 1153 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1668 + - uid: 1154 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1668 + - uid: 1155 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1668 + - uid: 1156 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1668 + - uid: 1157 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1668 + - uid: 1158 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1668 + - uid: 1159 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1668 + - uid: 1160 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1668 + - uid: 1161 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1668 + - uid: 1162 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1668 + - uid: 1163 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1668 + - uid: 1164 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1668 + - uid: 1165 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1668 + - uid: 1166 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1668 + - uid: 1167 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1668 + - uid: 1168 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1668 + - uid: 1169 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1668 + - uid: 1170 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1668 + - uid: 1171 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1668 + - uid: 1172 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1668 + - uid: 1173 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1668 + - uid: 1174 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1668 + - uid: 1175 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1668 + - uid: 1176 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - uid: 1182 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1668 + - uid: 1321 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - uid: 1323 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1668 + - uid: 1324 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1668 + - uid: 1325 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1668 + - uid: 1326 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1668 + - uid: 1327 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1668 + - uid: 1328 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1668 + - uid: 1329 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1668 + - uid: 1330 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1668 + - uid: 1331 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1668 + - uid: 1332 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1668 + - uid: 1333 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1668 + - uid: 1334 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1668 + - uid: 1335 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1668 + - uid: 1336 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1668 + - uid: 1337 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1668 + - uid: 1338 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1668 + - uid: 1339 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1668 + - uid: 1340 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1668 + - uid: 1483 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 1668 + - uid: 1486 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 1668 + - uid: 1487 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 1668 + - uid: 1658 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 1668 + - uid: 1805 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1668 + - uid: 1806 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1668 + - uid: 1807 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1668 + - uid: 1808 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1668 + - uid: 1809 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1668 + - uid: 1810 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1668 + - uid: 1811 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1668 + - uid: 1812 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1668 + - uid: 1813 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1668 + - uid: 1814 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1668 + - uid: 1815 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1668 + - uid: 1816 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1668 + - uid: 1817 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1668 + - uid: 1818 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1668 + - uid: 1819 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1668 + - uid: 1820 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1668 + - uid: 1821 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1668 + - uid: 1822 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1668 + - uid: 1823 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1668 + - uid: 1824 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1668 + - uid: 1825 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1668 + - uid: 1826 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1668 + - uid: 1827 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1668 + - uid: 1828 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1668 + - uid: 1829 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1668 + - uid: 1830 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1668 + - uid: 1831 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1668 + - uid: 1832 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1668 + - uid: 1833 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1668 + - uid: 1834 + components: + - type: Transform + pos: -11.5,17.5 + parent: 1668 + - uid: 1835 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1668 + - uid: 1836 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1668 + - uid: 1837 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1668 + - uid: 1838 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1668 + - uid: 1839 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1668 + - uid: 1840 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1668 + - uid: 1841 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1668 + - uid: 1842 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1668 + - uid: 1843 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1668 + - uid: 1844 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1668 + - uid: 1845 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1668 + - uid: 1846 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1668 + - uid: 1847 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 1848 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1668 + - uid: 1849 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 1850 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - uid: 1851 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 + - uid: 1852 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1668 + - uid: 1853 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1668 + - uid: 1854 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 1855 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - uid: 1856 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1668 + - uid: 1857 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1668 + - uid: 1858 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1668 + - uid: 1859 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1668 + - uid: 1860 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1668 + - uid: 1862 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1668 + - uid: 1863 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 2014 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1668 + - uid: 2015 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1668 + - uid: 2016 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1668 + - uid: 2017 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1668 + - uid: 2018 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1668 + - uid: 2019 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - uid: 2056 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1668 + - uid: 2947 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1668 + - uid: 2948 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 + - uid: 2949 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1668 + - uid: 2950 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 2951 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1668 + - uid: 2952 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - uid: 2953 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1668 + - uid: 2954 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1668 + - uid: 2955 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1668 + - uid: 2956 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1668 + - uid: 2957 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1668 + - uid: 2958 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1668 + - uid: 2959 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1668 + - uid: 2960 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1668 + - uid: 2961 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1668 + - uid: 2962 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1668 + - uid: 2963 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1668 + - uid: 2964 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1668 + - uid: 2965 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1668 + - uid: 2966 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1668 + - uid: 2967 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1668 + - uid: 2968 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1668 + - uid: 2969 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1668 + - uid: 2970 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1668 + - uid: 2971 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1668 + - uid: 2972 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1668 + - uid: 2973 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1668 + - uid: 2974 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1668 + - uid: 2975 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1668 + - uid: 2976 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1668 + - uid: 2977 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1668 + - uid: 2978 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1668 + - uid: 2979 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1668 + - uid: 2980 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1668 + - uid: 2981 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1668 + - uid: 2982 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1668 + - uid: 2983 + components: + - type: Transform + pos: 25.5,12.5 + parent: 1668 + - uid: 2984 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1668 + - uid: 2985 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1668 + - uid: 2986 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1668 + - uid: 2987 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1668 + - uid: 2988 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1668 + - uid: 2989 + components: + - type: Transform + pos: 31.5,12.5 + parent: 1668 + - uid: 2990 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1668 + - uid: 2991 + components: + - type: Transform + pos: 33.5,12.5 + parent: 1668 + - uid: 2992 + components: + - type: Transform + pos: 34.5,12.5 + parent: 1668 + - uid: 2993 + components: + - type: Transform + pos: 34.5,13.5 + parent: 1668 + - uid: 2994 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1668 + - uid: 2995 + components: + - type: Transform + pos: 34.5,15.5 + parent: 1668 + - uid: 2996 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1668 + - uid: 2997 + components: + - type: Transform + pos: 34.5,17.5 + parent: 1668 + - uid: 2998 + components: + - type: Transform + pos: 34.5,18.5 + parent: 1668 + - uid: 2999 + components: + - type: Transform + pos: 34.5,19.5 + parent: 1668 + - uid: 3000 + components: + - type: Transform + pos: 35.5,19.5 + parent: 1668 + - uid: 3001 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1668 + - uid: 3002 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1668 + - uid: 3003 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1668 + - uid: 3004 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1668 + - uid: 3005 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1668 + - uid: 3006 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1668 + - uid: 3007 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1668 + - uid: 3008 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1668 + - uid: 3009 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1668 + - uid: 3010 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1668 + - uid: 3011 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1668 + - uid: 3012 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1668 + - uid: 3013 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1668 + - uid: 3014 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1668 + - uid: 3015 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1668 + - uid: 3016 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1668 + - uid: 3017 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1668 + - uid: 3018 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1668 + - uid: 3019 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1668 + - uid: 3020 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1668 + - uid: 3021 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1668 + - uid: 3022 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1668 + - uid: 3023 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1668 + - uid: 3024 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1668 + - uid: 3025 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1668 + - uid: 3026 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1668 + - uid: 3027 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1668 + - uid: 3028 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1668 + - uid: 3029 + components: + - type: Transform + pos: 9.5,29.5 + parent: 1668 + - uid: 3030 + components: + - type: Transform + pos: 9.5,30.5 + parent: 1668 + - uid: 3031 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1668 + - uid: 3032 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1668 + - uid: 3575 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - uid: 3576 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1668 + - uid: 3578 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - uid: 3579 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1668 + - uid: 3580 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1668 + - uid: 3581 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1668 + - uid: 3582 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1668 + - uid: 3583 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1668 + - uid: 3584 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - uid: 3585 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1668 + - uid: 3586 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1668 + - uid: 3587 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1668 + - uid: 3588 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1668 + - uid: 3589 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1668 + - uid: 3590 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1668 + - uid: 3591 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1668 + - uid: 3592 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1668 + - uid: 3593 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1668 + - uid: 3594 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1668 + - uid: 3595 + components: + - type: Transform + pos: -21.5,11.5 + parent: 1668 + - uid: 3596 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1668 + - uid: 3597 + components: + - type: Transform + pos: -19.5,11.5 + parent: 1668 + - uid: 3598 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1668 + - uid: 3599 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1668 + - uid: 3600 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1668 + - uid: 3601 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1668 + - uid: 3602 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1668 + - uid: 4105 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1668 + - uid: 4106 + components: + - type: Transform + pos: -31.5,3.5 + parent: 1668 + - uid: 4107 + components: + - type: Transform + pos: -31.5,4.5 + parent: 1668 + - uid: 4108 + components: + - type: Transform + pos: -31.5,5.5 + parent: 1668 + - uid: 4109 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1668 + - uid: 4110 + components: + - type: Transform + pos: -30.5,4.5 + parent: 1668 + - uid: 4111 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1668 + - uid: 4112 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1668 + - uid: 4113 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1668 + - uid: 4114 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1668 + - uid: 4115 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1668 + - uid: 4116 + components: + - type: Transform + pos: -31.5,7.5 + parent: 1668 + - uid: 4117 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - uid: 4118 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1668 + - uid: 4119 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1668 + - uid: 4120 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1668 + - uid: 4121 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1668 + - uid: 4122 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 + - uid: 4123 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1668 + - uid: 4124 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 4125 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1668 + - uid: 4126 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1668 + - uid: 4127 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1668 + - uid: 4128 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1668 + - uid: 4129 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1668 + - uid: 4130 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1668 + - uid: 4131 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1668 + - uid: 4132 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1668 + - uid: 4133 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - uid: 4134 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1668 + - uid: 4135 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1668 + - uid: 4136 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1668 + - uid: 4137 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1668 + - uid: 4138 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1668 + - uid: 4139 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1668 + - uid: 4140 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1668 + - uid: 4141 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1668 + - uid: 4142 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1668 + - uid: 4143 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1668 + - uid: 4257 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 1668 + - uid: 4807 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1668 + - uid: 4817 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1668 + - uid: 4818 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1668 + - uid: 4819 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1668 + - uid: 4820 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1668 + - uid: 4821 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1668 + - uid: 4822 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1668 + - uid: 4823 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 4824 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1668 + - uid: 4825 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1668 + - uid: 4826 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1668 + - uid: 4827 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1668 + - uid: 4828 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1668 + - uid: 4829 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1668 + - uid: 4830 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1668 + - uid: 4831 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 1668 + - uid: 4832 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 1668 + - uid: 4833 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1668 + - uid: 4834 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1668 + - uid: 4835 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1668 + - uid: 4836 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1668 + - uid: 4837 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1668 + - uid: 4838 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1668 + - uid: 4839 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1668 + - uid: 4840 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1668 + - uid: 4841 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1668 + - uid: 4842 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 1668 + - uid: 4843 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 1668 + - uid: 4844 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1668 + - uid: 4845 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1668 + - uid: 4846 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1668 + - uid: 4847 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1668 + - uid: 4848 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1668 + - uid: 4849 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1668 + - uid: 4850 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1668 + - uid: 4851 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1668 + - uid: 4852 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1668 + - uid: 4853 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1668 + - uid: 4854 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1668 + - uid: 4855 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1668 + - uid: 4857 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1668 + - uid: 4858 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1668 + - uid: 4859 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1668 + - uid: 4860 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 4861 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 4862 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 4863 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 4864 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 4865 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - uid: 4866 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1668 + - uid: 4867 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1668 + - uid: 4868 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1668 + - uid: 4869 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1668 + - uid: 4870 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1668 + - uid: 4871 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1668 + - uid: 4872 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1668 + - uid: 4873 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1668 + - uid: 4874 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - uid: 4875 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - uid: 4876 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 1668 + - uid: 4877 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1668 + - uid: 4878 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1668 + - uid: 4879 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1668 + - uid: 4880 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1668 + - uid: 4881 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 1668 + - uid: 4882 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 1668 + - uid: 4883 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 1668 + - uid: 4884 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 1668 + - uid: 4885 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 1668 + - uid: 4886 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 1668 + - uid: 4887 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1668 + - uid: 4888 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1668 + - uid: 4889 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1668 + - uid: 4890 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1668 + - uid: 4891 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1668 + - uid: 4892 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 1668 + - uid: 4893 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1668 + - uid: 4894 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 1668 + - uid: 4895 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1668 + - uid: 4896 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1668 + - uid: 4897 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1668 + - uid: 4966 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1668 + - uid: 4967 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1668 + - uid: 4976 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1668 + - uid: 4978 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 1668 + - uid: 4979 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 1668 + - uid: 4980 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 1668 + - uid: 4981 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1668 + - uid: 4982 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1668 + - uid: 4983 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1668 + - uid: 4984 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1668 + - uid: 4985 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1668 + - uid: 4986 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1668 + - uid: 4987 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1668 + - uid: 4988 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1668 + - uid: 4989 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - uid: 4990 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 1668 + - uid: 4991 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1668 + - uid: 5277 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1668 + - uid: 5278 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1668 + - uid: 5279 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1668 + - uid: 5280 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1668 + - uid: 5281 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1668 + - uid: 5282 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1668 + - uid: 5283 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1668 + - uid: 5284 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 1668 + - uid: 5285 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 1668 + - uid: 5286 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1668 + - uid: 5287 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1668 + - uid: 5288 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1668 + - uid: 5289 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1668 + - uid: 5290 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1668 + - uid: 5291 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1668 + - uid: 5292 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1668 + - uid: 5293 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 1668 + - uid: 5294 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1668 + - uid: 5295 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1668 + - uid: 5296 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 1668 + - uid: 5297 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1668 + - uid: 5298 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1668 + - uid: 5299 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1668 + - uid: 5300 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1668 + - uid: 5301 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 5302 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 1668 + - uid: 5303 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1668 + - uid: 5304 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1668 + - uid: 5305 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1668 + - uid: 5306 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1668 + - uid: 5307 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1668 + - uid: 5424 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1668 + - uid: 5425 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1668 + - uid: 5426 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1668 + - uid: 5427 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1668 + - uid: 5428 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1668 + - uid: 5429 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1668 + - uid: 5430 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1668 + - uid: 5431 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1668 + - uid: 5432 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1668 + - uid: 5433 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1668 + - uid: 5434 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1668 + - uid: 5435 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1668 + - uid: 5436 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 1668 + - uid: 5437 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1668 + - uid: 5438 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1668 + - uid: 5439 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1668 + - uid: 5440 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1668 + - uid: 5832 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1668 + - uid: 5833 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1668 + - uid: 5834 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1668 + - uid: 5835 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1668 + - uid: 5836 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1668 + - uid: 5837 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1668 + - uid: 5838 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1668 + - uid: 5839 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1668 + - uid: 5840 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1668 + - uid: 5841 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1668 + - uid: 5842 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1668 + - uid: 5843 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1668 + - uid: 5844 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1668 + - uid: 5845 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1668 + - uid: 5846 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1668 + - uid: 5854 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 + - uid: 5855 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1668 + - uid: 5856 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1668 + - uid: 5857 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1668 + - uid: 5858 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1668 + - uid: 5859 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1668 + - uid: 5860 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1668 + - uid: 5861 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1668 + - uid: 5862 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1668 + - uid: 5863 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1668 + - uid: 5865 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1668 + - uid: 5866 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1668 + - uid: 5867 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1668 + - uid: 5868 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1668 + - uid: 5869 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1668 + - uid: 5870 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1668 + - uid: 5871 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1668 + - uid: 5872 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1668 + - uid: 5873 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1668 + - uid: 5874 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1668 + - uid: 5875 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1668 + - uid: 6055 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 1668 + - uid: 6056 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 1668 + - uid: 6057 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 1668 + - uid: 6058 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1668 + - uid: 6059 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1668 + - uid: 6060 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1668 + - uid: 6061 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1668 + - uid: 6062 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1668 + - uid: 6063 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 1668 + - uid: 6064 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 1668 + - uid: 6065 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 1668 + - uid: 6066 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 1668 + - uid: 6104 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 1668 + - uid: 6105 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 1668 + - uid: 6106 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 1668 + - uid: 6107 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1668 + - uid: 6108 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 1668 + - uid: 6109 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - uid: 6110 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - uid: 6111 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1668 + - uid: 6182 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1668 + - uid: 6183 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 1668 + - uid: 6184 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - uid: 6185 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1668 + - uid: 6186 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 1668 + - uid: 6187 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 1668 + - uid: 6188 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 1668 + - uid: 6189 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1668 + - uid: 6190 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1668 + - uid: 6191 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1668 + - uid: 6192 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1668 + - uid: 6193 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1668 + - uid: 6194 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1668 + - uid: 6195 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - uid: 6196 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1668 + - uid: 6197 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1668 + - uid: 6198 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1668 + - uid: 6199 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1668 + - uid: 6200 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1668 + - uid: 6201 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1668 + - uid: 6336 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 1668 + - uid: 6337 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 1668 + - uid: 6338 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1668 + - uid: 6339 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 1668 + - uid: 6340 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1668 + - uid: 6341 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 1668 + - uid: 6342 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 1668 + - uid: 6343 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1668 + - uid: 6344 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1668 + - uid: 6345 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1668 + - uid: 6398 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1668 + - uid: 6399 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 1668 + - uid: 6400 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 1668 + - uid: 6401 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 1668 + - uid: 6402 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 1668 + - uid: 6403 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 1668 + - uid: 6404 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 1668 + - uid: 6405 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 1668 + - uid: 6406 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 1668 + - uid: 6407 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 1668 + - uid: 6408 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1668 + - uid: 6849 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 1668 + - uid: 6850 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 1668 + - uid: 6851 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 1668 + - uid: 6852 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 1668 + - uid: 6853 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1668 +- proto: CableTerminal + entities: + - uid: 2191 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 1668 + - uid: 5075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 1668 + - uid: 5076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1668 + - uid: 5077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1668 +- proto: CargoPallet + entities: + - uid: 6924 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1668 + - uid: 6925 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1668 + - uid: 6926 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1668 + - uid: 6927 + components: + - type: Transform + pos: -6.5,28.5 + parent: 1668 + - uid: 6928 + components: + - type: Transform + pos: -7.5,28.5 + parent: 1668 + - uid: 6929 + components: + - type: Transform + pos: -8.5,28.5 + parent: 1668 +- proto: Carpet + entities: + - uid: 2714 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1668 + - uid: 2715 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1668 + - uid: 2716 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1668 + - uid: 2717 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1668 +- proto: CarpetGreen + entities: + - uid: 148 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1668 + - uid: 149 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1668 + - uid: 204 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1668 + - uid: 205 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1668 + - uid: 207 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1668 + - uid: 1428 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 3728 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1668 + - uid: 3729 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1668 + - uid: 3730 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1668 + - uid: 3731 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1668 + - uid: 3732 + components: + - type: Transform + pos: -19.5,11.5 + parent: 1668 + - uid: 3733 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1668 + - uid: 3735 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1668 + - uid: 3736 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1668 + - uid: 3738 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1668 + - uid: 3739 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1668 + - uid: 3740 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1668 + - uid: 3741 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1668 +- proto: Catwalk + entities: + - uid: 347 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1668 + - uid: 1065 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 1668 + - uid: 1066 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 1668 + - uid: 1067 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1668 + - uid: 1179 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1668 + - uid: 2032 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1668 + - uid: 2033 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1668 + - uid: 2034 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1668 + - uid: 2035 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1668 + - uid: 2036 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1668 + - uid: 2037 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - uid: 2038 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1668 + - uid: 2046 + components: + - type: Transform + pos: -0.5,23.5 + parent: 1668 + - uid: 2047 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1668 + - uid: 2048 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1668 + - uid: 2049 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1668 + - uid: 3239 + components: + - type: Transform + pos: -2.5,26.5 + parent: 1668 + - uid: 3240 + components: + - type: Transform + pos: -2.5,27.5 + parent: 1668 + - uid: 3241 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1668 + - uid: 3242 + components: + - type: Transform + pos: -2.5,29.5 + parent: 1668 + - uid: 3243 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1668 + - uid: 3244 + components: + - type: Transform + pos: -2.5,31.5 + parent: 1668 + - uid: 3246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 1668 + - uid: 3251 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 3252 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1668 + - uid: 3253 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 + - uid: 3709 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1668 + - uid: 3710 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1668 + - uid: 3711 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1668 + - uid: 3712 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - uid: 4146 + components: + - type: Transform + pos: -33.5,0.5 + parent: 1668 + - uid: 4147 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 1668 + - uid: 4181 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1668 + - uid: 4182 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1668 + - uid: 4183 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1668 + - uid: 4568 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 1668 + - uid: 4569 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 1668 + - uid: 4570 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 1668 + - uid: 4571 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 1668 + - uid: 4572 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 1668 + - uid: 4573 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 1668 + - uid: 4574 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1668 + - uid: 5197 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1668 + - uid: 5198 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1668 + - uid: 5199 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1668 + - uid: 5200 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1668 + - uid: 5201 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1668 + - uid: 5202 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1668 + - uid: 5203 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 1668 + - uid: 5204 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1668 + - uid: 5205 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1668 + - uid: 5206 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 1668 + - uid: 5207 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1668 + - uid: 5208 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1668 + - uid: 5209 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1668 + - uid: 5210 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1668 + - uid: 5211 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1668 + - uid: 5212 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1668 + - uid: 5213 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1668 + - uid: 5323 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - uid: 5324 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1668 + - uid: 5325 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1668 + - uid: 5326 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1668 + - uid: 6142 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 1668 + - uid: 6143 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1668 + - uid: 6440 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 1668 + - uid: 6441 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 1668 +- proto: CentcomIDCard + entities: + - uid: 3721 + components: + - type: Transform + pos: -16.521366,8.567018 + parent: 1668 +- proto: CentcomPDA + entities: + - uid: 6617 + components: + - type: Transform + pos: -20.428675,10.647655 + parent: 1668 +- proto: Chair + entities: + - uid: 517 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1668 + - uid: 518 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1668 + - uid: 519 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1668 + - uid: 520 + components: + - type: Transform + pos: 28.5,5.5 + parent: 1668 + - uid: 521 + components: + - type: Transform + pos: 29.5,5.5 + parent: 1668 + - uid: 522 + components: + - type: Transform + pos: 30.5,5.5 + parent: 1668 + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 1668 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 1668 + - uid: 534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-6.5 + parent: 1668 + - uid: 535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 1668 + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + - uid: 537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 1668 + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1668 + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1668 + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1668 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1668 + - uid: 634 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1668 + - uid: 635 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1668 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1668 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1668 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1668 + - uid: 639 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1668 + - uid: 1644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + - uid: 1645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1668 + - uid: 2168 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1668 + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1668 + - uid: 2171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1668 + - uid: 2172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1668 + - uid: 2173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1668 + - uid: 2174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1668 + - uid: 2175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1668 + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1668 + - uid: 2415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1668 + - uid: 2416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 1668 + - uid: 2417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 1668 + - uid: 2418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1668 + - uid: 2419 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1668 + - uid: 2420 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1668 + - uid: 2427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1668 + - uid: 2428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1668 + - uid: 2429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1668 + - uid: 2430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1668 + - uid: 2431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1668 + - uid: 2432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1668 + - uid: 2433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 1668 + - uid: 2434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 1668 + - uid: 2441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1668 + - uid: 2472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1668 + - uid: 2473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1668 + - uid: 2474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 1668 + - uid: 2475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1668 + - uid: 2476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 1668 + - uid: 2477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 1668 + - uid: 2478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 1668 + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 1668 + - uid: 2480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 1668 + - uid: 2481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 1668 + - uid: 2482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1668 + - uid: 2483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 1668 + - uid: 2484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 1668 + - uid: 2485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 1668 + - uid: 2827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1668 + - uid: 2828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1668 + - uid: 3172 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1668 + - uid: 3173 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1668 + - uid: 3174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1668 + - uid: 3175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1668 + - uid: 3176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1668 + - uid: 3177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1668 + - uid: 3827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 1668 + - uid: 4152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1668 + - uid: 4153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 + - uid: 4154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1668 + - uid: 4155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 1668 + - uid: 4156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + - uid: 4157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1668 + - uid: 4160 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1668 + - uid: 4161 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1668 + - uid: 4162 + components: + - type: Transform + pos: -33.5,6.5 + parent: 1668 + - uid: 4163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 1668 + - uid: 4164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 1668 + - uid: 4165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + - uid: 5246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 1668 + - uid: 5249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 1668 + - uid: 5308 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 1668 + - uid: 5309 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1668 + - uid: 5384 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1668 + - uid: 5385 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1668 + - uid: 6148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 1668 + - uid: 6149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1668 + - uid: 6152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 1668 + - uid: 6153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 1668 + - uid: 6240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 1668 + - uid: 6243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 1668 + - uid: 6391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1668 + - uid: 6392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 1668 + - uid: 6393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 1668 + - uid: 6394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1668 + - uid: 6567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 1668 + - uid: 6568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 1668 + - uid: 6569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 1668 + - uid: 6570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-33.5 + parent: 1668 + - uid: 6579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 1668 + - uid: 6580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1668 + - uid: 6585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1668 + - uid: 6586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 1668 + - uid: 6587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1668 + - uid: 6588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1668 + - uid: 6589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 1668 + - uid: 6590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 1668 + - uid: 6748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1668 +- proto: ChairOfficeDark + entities: + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 1668 + - uid: 507 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1668 + - uid: 604 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1668 + - uid: 605 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1668 + - uid: 817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1668 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1668 + - uid: 1401 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1668 + - uid: 1402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1668 + - uid: 1403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1668 + - uid: 1404 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1668 + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1668 + - uid: 1646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1668 + - uid: 1647 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1668 + - uid: 1648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 1668 + - uid: 1649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1668 + - uid: 2744 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1668 + - uid: 3621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1668 + - uid: 3622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + - uid: 3623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + - uid: 3880 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1668 + - uid: 3881 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1668 + - uid: 3882 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1668 + - uid: 3883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 1668 + - uid: 3884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 1668 + - uid: 3885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 1668 + - uid: 3886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-8.5 + parent: 1668 + - uid: 3887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-8.5 + parent: 1668 + - uid: 3888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1668 + - uid: 5243 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1668 + - uid: 5336 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1668 + - uid: 5337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1668 + - uid: 6939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 1668 + - uid: 6940 + components: + - type: Transform + pos: -10.5,30.5 + parent: 1668 + - uid: 6941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1668 +- proto: ChairWood + entities: + - uid: 4617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1668 +- proto: chem_master + entities: + - uid: 825 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1668 + - uid: 4425 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1668 +- proto: ChemDispenser + entities: + - uid: 824 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1668 +- proto: ChemistryHotplate + entities: + - uid: 254 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1668 +- proto: ChessBoard + entities: + - uid: 3762 + components: + - type: Transform + pos: -23.529772,4.584259 + parent: 1668 +- proto: CigarGold + entities: + - uid: 2465 + components: + - type: Transform + pos: 30.393238,23.676378 + parent: 1668 + - uid: 2466 + components: + - type: Transform + pos: 30.502613,23.598253 + parent: 1668 + - uid: 3746 + components: + - type: Transform + pos: -23.553053,10.781973 + parent: 1668 + - uid: 3747 + components: + - type: Transform + pos: -23.443678,10.672598 + parent: 1668 + - uid: 3877 + components: + - type: Transform + pos: -26.36634,-3.4881558 + parent: 1668 + - uid: 3878 + components: + - type: Transform + pos: -26.30384,-3.5194058 + parent: 1668 +- proto: CloningPod + entities: + - uid: 722 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 575 + - type: Construction + containers: + - machine_parts + - machine_board +- proto: ClosetChefFilled + entities: + - uid: 4579 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 1668 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1071 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1668 + - uid: 1072 + components: + - type: Transform + pos: 34.5,5.5 + parent: 1668 + - uid: 2044 + components: + - type: Transform + pos: -3.5,24.5 + parent: 1668 + - uid: 4148 + components: + - type: Transform + pos: -33.5,1.5 + parent: 1668 + - uid: 4149 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 1668 + - uid: 4159 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1668 + - uid: 5352 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 1668 + - uid: 6147 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 1668 + - uid: 6252 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 1668 +- proto: ClosetFireFilled + entities: + - uid: 1073 + components: + - type: Transform + pos: 34.5,1.5 + parent: 1668 + - uid: 1074 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1668 + - uid: 4158 + components: + - type: Transform + pos: -29.5,6.5 + parent: 1668 + - uid: 5356 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1668 + - uid: 6146 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 1668 +- proto: ClosetL3JanitorFilled + entities: + - uid: 6229 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1668 +- proto: ClosetLegalFilled + entities: + - uid: 2490 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1668 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 2442 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1668 + - uid: 5331 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 1668 + - uid: 5332 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 1668 +- proto: ClosetSteelBase + entities: + - uid: 2491 + components: + - type: Transform + pos: 20.5,23.5 + parent: 1668 +- proto: ClosetToolFilled + entities: + - uid: 3254 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1668 +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 6932 + components: + - type: Transform + pos: -5.4863143,25.64425 + parent: 1668 +- proto: ClothingBackpackERTSecurity + entities: + - uid: 2901 + components: + - type: Transform + pos: 16.642612,32.410297 + parent: 1668 + - uid: 2902 + components: + - type: Transform + pos: 16.439487,32.566547 + parent: 1668 + - uid: 2903 + components: + - type: Transform + pos: 2.6113625,32.457172 + parent: 1668 + - uid: 2904 + components: + - type: Transform + pos: 2.4551125,32.613422 + parent: 1668 +- proto: ClothingBackpackSatchelHolding + entities: + - uid: 3737 + components: + - type: Transform + pos: -26.540686,12.537982 + parent: 1668 +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 6956 + components: + - type: Transform + pos: 20.568373,-22.468605 + parent: 1668 +- proto: ClothingBeltSecurityFilled + entities: + - uid: 1460 + components: + - type: Transform + pos: -6.4730563,-12.590733 + parent: 1668 + - uid: 3151 + components: + - type: Transform + pos: 9.512553,25.678463 + parent: 1668 + - uid: 3152 + components: + - type: Transform + pos: 9.637553,25.537838 + parent: 1668 +- proto: ClothingBeltSheathFilled + entities: + - uid: 3725 + components: + - type: Transform + pos: -15.72449,12.605259 + parent: 1668 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 2241 + components: + - type: Transform + pos: -9.339353,8.480244 + parent: 1668 + - uid: 3909 + components: + - type: Transform + pos: -13.494019,-9.4266615 + parent: 1668 + - uid: 5345 + components: + - type: Transform + pos: 25.530863,-26.462372 + parent: 1668 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 6846 + components: + - type: Transform + pos: 3.5108106,-10.103214 + parent: 1668 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 2204 + components: + - type: Transform + pos: 16.59961,30.616188 + parent: 1668 + - uid: 2205 + components: + - type: Transform + pos: 16.490234,30.741188 + parent: 1668 + - uid: 4173 + components: + - type: Transform + pos: 2.5571308,30.616188 + parent: 1668 + - uid: 4388 + components: + - type: Transform + pos: 2.4477558,30.694313 + parent: 1668 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 2449 + components: + - type: Transform + pos: -15.8832245,12.471813 + parent: 1668 + - uid: 6947 + components: + - type: Transform + pos: -27.440563,-8.922831 + parent: 1668 + - uid: 6948 + components: + - type: Transform + pos: -27.440563,-8.922831 + parent: 1668 + - uid: 6949 + components: + - type: Transform + pos: -27.440563,-8.922831 + parent: 1668 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 5371 + components: + - type: Transform + pos: 26.529047,-22.34483 + parent: 1668 +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 6950 + components: + - type: Transform + pos: -26.706188,-9.407206 + parent: 1668 + - uid: 6951 + components: + - type: Transform + pos: -26.706188,-9.407206 + parent: 1668 + - uid: 6952 + components: + - type: Transform + pos: -26.706188,-9.407206 + parent: 1668 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 255 + components: + - type: Transform + pos: 2.4165058,30.959938 + parent: 1668 + - uid: 297 + components: + - type: Transform + pos: 2.6508808,30.850563 + parent: 1668 + - uid: 823 + components: + - type: Transform + pos: 16.41518,30.975563 + parent: 1668 + - uid: 833 + components: + - type: Transform + pos: 16.57143,30.913063 + parent: 1668 + - uid: 3724 + components: + - type: Transform + pos: -16.552616,8.708888 + parent: 1668 +- proto: ClothingHeadHatHairflower + entities: + - uid: 6605 + components: + - type: Transform + pos: -11.182456,6.7149878 + parent: 1668 +- proto: ClothingHeadHatWelding + entities: + - uid: 2197 + components: + - type: Transform + pos: -1.4187617,24.501104 + parent: 1668 + - uid: 3700 + components: + - type: Transform + pos: -16.435745,6.5478344 + parent: 1668 + - uid: 5372 + components: + - type: Transform + pos: 27.357172,-22.34483 + parent: 1668 + - uid: 5373 + components: + - type: Transform + pos: 27.544672,-22.46983 + parent: 1668 +- proto: ClothingHeadsetAltCentCom + entities: + - uid: 1435 + components: + - type: Transform + pos: 0.47396702,1.5393463 + parent: 1668 + - uid: 3823 + components: + - type: Transform + pos: 2.6429226,32.7473 + parent: 1668 + - uid: 3824 + components: + - type: Transform + pos: 2.7522976,32.637924 + parent: 1668 + - uid: 3825 + components: + - type: Transform + pos: 16.661858,32.6848 + parent: 1668 + - uid: 3826 + components: + - type: Transform + pos: 16.771233,32.575424 + parent: 1668 +- proto: ClothingMaskGas + entities: + - uid: 2224 + components: + - type: Transform + pos: -11.500146,17.576977 + parent: 1668 +- proto: ClothingMaskGasAtmos + entities: + - uid: 5346 + components: + - type: Transform + pos: 21.493792,-17.470217 + parent: 1668 +- proto: ClothingMaskGasDeathSquad + entities: + - uid: 299 + components: + - type: Transform + pos: 16.360958,32.006813 + parent: 1668 + - uid: 821 + components: + - type: Transform + pos: 2.59024,31.975563 + parent: 1668 + - uid: 822 + components: + - type: Transform + pos: 2.34024,32.022438 + parent: 1668 + - uid: 1434 + components: + - type: Transform + pos: 16.595333,31.897438 + parent: 1668 +- proto: ClothingNeckBronzeheart + entities: + - uid: 4377 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1668 +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 2452 + components: + - type: Transform + pos: -27.456188,-9.313456 + parent: 1668 + - uid: 2737 + components: + - type: Transform + pos: -27.456188,-9.313456 + parent: 1668 + - uid: 4266 + components: + - type: Transform + pos: -27.456188,-9.313456 + parent: 1668 + - uid: 4615 + components: + - type: Transform + pos: -27.456188,-9.313456 + parent: 1668 +- proto: ClothingNeckGoldmedal + entities: + - uid: 4378 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1668 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 4379 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 1668 + - uid: 6936 + components: + - type: Transform + pos: 19.539907,21.362776 + parent: 1668 +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 3771 + components: + - type: Transform + pos: -12.455681,6.5291095 + parent: 1668 +- proto: ClothingOuterHardsuitDeathsquad + entities: + - uid: 2897 + components: + - type: Transform + pos: 3.403695,32.551796 + parent: 1668 + - uid: 2898 + components: + - type: Transform + pos: 3.653695,32.69242 + parent: 1668 + - uid: 2899 + components: + - type: Transform + pos: 15.372445,32.53617 + parent: 1668 + - 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=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null + - uid: 2900 + components: + - type: Transform + pos: 15.653695,32.676796 + parent: 1668 + - 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=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingShoesBootsLaceup + entities: + - uid: 3722 + components: + - type: Transform + pos: -16.568241,9.145143 + parent: 1668 + - uid: 6953 + components: + - type: Transform + pos: -27.518688,-8.610331 + parent: 1668 + - uid: 6954 + components: + - type: Transform + pos: -27.518688,-8.610331 + parent: 1668 + - uid: 6955 + components: + - type: Transform + pos: -27.518688,-8.610331 + parent: 1668 +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 2909 + components: + - type: Transform + pos: 3.4296377,30.58716 + parent: 1668 + - uid: 2910 + components: + - type: Transform + pos: 3.6171377,30.446535 + parent: 1668 + - uid: 2911 + components: + - type: Transform + pos: 15.407025,30.634035 + parent: 1668 + - uid: 2912 + components: + - type: Transform + pos: 15.6414,30.415285 + parent: 1668 +- proto: ClothingShoesLeather + entities: + - uid: 3775 + components: + - type: Transform + pos: -10.574664,4.498021 + parent: 1668 +- proto: ClothingUniformJumpsuitDeathSquad + entities: + - uid: 2206 + components: + - type: Transform + pos: 15.35466,32.444313 + parent: 1668 + - uid: 2722 + components: + - type: Transform + pos: 3.637115,32.584938 + parent: 1668 + - uid: 4398 + components: + - type: Transform + pos: 3.40274,32.428688 + parent: 1668 + - uid: 4723 + components: + - type: Transform + pos: 15.651535,32.600563 + parent: 1668 +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 2446 + components: + - type: Transform + pos: -27.362438,-9.485331 + parent: 1668 + - uid: 2451 + components: + - type: Transform + pos: -27.362438,-9.485331 + parent: 1668 + - uid: 2453 + components: + - type: Transform + pos: -27.362438,-9.485331 + parent: 1668 + - uid: 2728 + components: + - type: Transform + pos: -27.362438,-9.485331 + parent: 1668 +- proto: ComfyChair + entities: + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + - uid: 2194 + components: + - type: Transform + pos: -0.5,24.5 + parent: 1668 + - uid: 2421 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1668 + - uid: 2447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + - uid: 2450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1668 + - uid: 2492 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1668 + - uid: 2493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,19.5 + parent: 1668 + - uid: 2494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 1668 + - uid: 3171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1668 + - uid: 3611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1668 + - uid: 3612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 1668 + - uid: 3613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 1668 + - uid: 3614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,11.5 + parent: 1668 + - uid: 3615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1668 + - uid: 3616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1668 + - uid: 3617 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1668 + - uid: 3618 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1668 + - uid: 3619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 1668 + - uid: 3620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 1668 + - uid: 3718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + - uid: 3879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 1668 + - uid: 4189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1668 + - uid: 4437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1668 + - uid: 4441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1668 + - uid: 4442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1668 + - uid: 4443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + - uid: 4444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1668 + - uid: 4445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + - uid: 4446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + - uid: 4447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + - uid: 4448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + - uid: 4449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + - uid: 4450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1668 + - uid: 4451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 1668 + - uid: 4453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1668 + - uid: 4458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1668 + - uid: 4470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1668 + - uid: 4472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1668 + - uid: 5422 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1668 + - uid: 6614 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1668 + - uid: 6616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1668 +- proto: ComputerAlert + entities: + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1668 + - uid: 4973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 1668 + - uid: 5338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 1668 +- proto: computerBodyScanner + entities: + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1668 +- proto: ComputerCargoBounty + entities: + - uid: 6923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 1668 +- proto: ComputerCargoOrders + entities: + - uid: 1624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1668 + - uid: 1650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 1668 + - uid: 1653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 1668 +- proto: ComputerCargoShuttle + entities: + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1668 + - uid: 1651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1668 + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 1668 + - uid: 3818 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1668 +- proto: ComputerCloningConsole + entities: + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 722: + - CloningPodSender: CloningPodReceiver +- proto: ComputerComms + entities: + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1668 + - uid: 3447 + components: + - type: Transform + pos: -19.5,12.5 + parent: 1668 + - uid: 3629 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1668 + - uid: 3630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 1668 + - uid: 3837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-7.5 + parent: 1668 +- proto: ComputerCrewMonitoring + entities: + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1668 + - uid: 608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 1668 + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1668 +- proto: ComputerCriminalRecords + entities: + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1668 + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1668 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1668 + - uid: 813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 1668 + - uid: 2426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 1668 + - uid: 3258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 1668 +- proto: ComputerId + entities: + - uid: 589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1668 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1668 + - uid: 3448 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1668 + - uid: 3907 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1668 +- proto: ComputerMedicalRecords + entities: + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1668 +- proto: ComputerPalletConsole + entities: + - uid: 6930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 1668 +- proto: ComputerPowerMonitoring + entities: + - uid: 3256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1668 + - uid: 3573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1668 + - uid: 4971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1668 +- proto: ComputerShuttleCargo + entities: + - uid: 3719 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1668 +- proto: ComputerStationRecords + entities: + - uid: 3720 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1668 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 1668 + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1668 + - uid: 814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-13.5 + parent: 1668 + - uid: 2250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1668 + - uid: 2745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1668 +- proto: ComputerTelevision + entities: + - uid: 3715 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1668 +- proto: ConveyorBelt + entities: + - uid: 1576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1588 + - uid: 1577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1588 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1588 + - uid: 1579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1588 + - uid: 1580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1588 + - uid: 1581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1588 + - uid: 1582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1589 + - uid: 1583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1589 + - uid: 1584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1589 + - uid: 1585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1589 + - uid: 1586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1589 + - uid: 1587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 1589 + - uid: 5902 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5906 + - uid: 5903 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5906 + - uid: 5904 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5906 +- proto: CrateArmoryLaser + entities: + - uid: 6533 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1668 +- proto: CrateArmoryShotgun + entities: + - uid: 6532 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1668 +- proto: CrateArmorySMG + entities: + - uid: 6531 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1668 +- proto: CrateEmergencyRadiation + entities: + - uid: 5379 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1668 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 792 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1668 +- proto: CrateEngineeringCableBulk + entities: + - uid: 5328 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1668 +- proto: CrateEngineeringCableLV + entities: + - uid: 5380 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1668 +- proto: CrateEngineeringCableMV + entities: + - uid: 5381 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1668 +- proto: CrateEngineeringShuttle + entities: + - uid: 2144 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1668 +- proto: CrateFoodPizza + entities: + - uid: 6528 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1668 +- proto: CrateFunPlushie + entities: + - uid: 6530 + components: + - type: Transform + pos: -8.5,28.5 + parent: 1668 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 6527 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1668 +- proto: CrateMedicalSurgery + entities: + - uid: 629 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1668 +- proto: CrateMousetrapBoxes + entities: + - uid: 6529 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1668 +- proto: CrowbarRed + entities: + - uid: 515 + components: + - type: Transform + pos: 20.552847,-10.547255 + parent: 1668 + - uid: 1451 + components: + - type: Transform + pos: 14.506881,6.5434804 + parent: 1668 + - uid: 2225 + components: + - type: Transform + pos: -11.468896,17.467602 + parent: 1668 + - uid: 2467 + components: + - type: Transform + pos: 22.533863,23.410753 + parent: 1668 + - uid: 2870 + components: + - type: Transform + pos: 4.561338,19.119057 + parent: 1668 + - uid: 3899 + components: + - type: Transform + pos: -12.531932,-6.3835163 + parent: 1668 + - uid: 5347 + components: + - type: Transform + pos: 21.478167,-17.501467 + parent: 1668 +- proto: CryogenicSleepUnit + entities: + - uid: 3154 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1668 + - uid: 3633 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1668 +- proto: CryoPod + entities: + - uid: 6642 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: DeathsquadPDA + entities: + - uid: 298 + components: + - type: Transform + pos: 2.579019,31.366188 + parent: 1668 + - uid: 579 + components: + - type: Transform + pos: 16.399555,31.459938 + parent: 1668 + - uid: 820 + components: + - type: Transform + pos: 16.587055,31.366188 + parent: 1668 + - uid: 834 + components: + - type: Transform + pos: 2.407144,31.491188 + parent: 1668 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 2914 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1668 + - uid: 3123 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1668 + - uid: 3133 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1668 + - uid: 3139 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1668 + - uid: 6644 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 +- proto: DeployableBarrier + entities: + - uid: 3144 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1668 + - uid: 3145 + components: + - type: Transform + pos: 5.5,29.5 + parent: 1668 + - uid: 3146 + components: + - type: Transform + pos: 12.5,29.5 + parent: 1668 + - uid: 3147 + components: + - type: Transform + pos: 13.5,29.5 + parent: 1668 +- proto: DiceBag + entities: + - uid: 3763 + components: + - type: Transform + pos: -24.498522,4.631134 + parent: 1668 +- proto: DisposalBend + entities: + - uid: 2059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1668 + - uid: 2073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1668 + - uid: 2074 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1668 + - uid: 2076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + - uid: 2086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + - uid: 2091 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1668 + - uid: 2093 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1668 + - uid: 2117 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1668 + - uid: 2118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-5.5 + parent: 1668 + - uid: 2125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1668 + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + - uid: 2179 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 2180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1668 + - uid: 3639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1668 + - uid: 3852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + - uid: 4649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1668 + - uid: 4650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 1668 + - uid: 4925 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 1668 + - uid: 4949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1668 + - uid: 4951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1668 + - uid: 4952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1668 + - uid: 5897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1668 +- proto: DisposalJunction + entities: + - uid: 2082 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1668 + - uid: 4948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1668 +- proto: DisposalJunctionFlipped + entities: + - uid: 2080 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1668 + - uid: 2081 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1668 + - uid: 2120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1668 + - uid: 2134 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 3640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1668 + - uid: 4927 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 1668 +- proto: DisposalPipe + entities: + - uid: 2060 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1668 + - uid: 2061 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1668 + - uid: 2062 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1668 + - uid: 2063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + - uid: 2064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1668 + - uid: 2065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1668 + - uid: 2066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1668 + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1668 + - uid: 2068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1668 + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1668 + - uid: 2070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1668 + - uid: 2071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1668 + - uid: 2072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1668 + - uid: 2077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + - uid: 2078 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1668 + - uid: 2079 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1668 + - uid: 2083 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1668 + - uid: 2084 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1668 + - uid: 2085 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1668 + - uid: 2087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + - uid: 2088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + - uid: 2089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + - uid: 2090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + - uid: 2094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1668 + - uid: 2095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 1668 + - uid: 2096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 1668 + - uid: 2097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 1668 + - uid: 2098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 1668 + - uid: 2099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 1668 + - uid: 2100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 1668 + - uid: 2101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 1668 + - uid: 2102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1668 + - uid: 2103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 1668 + - uid: 2104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 1668 + - uid: 2105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 1668 + - uid: 2106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 1668 + - uid: 2107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1668 + - uid: 2108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1668 + - uid: 2109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1668 + - uid: 2110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1668 + - uid: 2111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1668 + - uid: 2112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 1668 + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1668 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1668 + - uid: 2115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1668 + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1668 + - uid: 2121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + - uid: 2122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + - uid: 2123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + - uid: 2124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + - uid: 2126 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1668 + - uid: 2127 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1668 + - uid: 2128 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1668 + - uid: 2130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1668 + - uid: 2131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1668 + - uid: 2132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1668 + - uid: 2133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1668 + - uid: 2135 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - uid: 2136 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - uid: 2137 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - uid: 2138 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - uid: 2139 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 2140 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 2141 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 2181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1668 + - uid: 2182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1668 + - uid: 2183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1668 + - uid: 2184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1668 + - uid: 2185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1668 + - uid: 2186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1668 + - uid: 2187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1668 + - uid: 2188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + - uid: 2189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1668 + - uid: 2190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + - uid: 3641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1668 + - uid: 3642 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1668 + - uid: 3643 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1668 + - uid: 3644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + - uid: 3645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + - uid: 3646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + - uid: 3647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + - uid: 3648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + - uid: 3649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + - uid: 3650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + - uid: 3651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + - uid: 3652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + - uid: 3653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + - uid: 3654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + - uid: 3655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + - uid: 3656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + - uid: 3657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + - uid: 3658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1668 + - uid: 3844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 1668 + - uid: 3845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 1668 + - uid: 3846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 1668 + - uid: 3847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 1668 + - uid: 3848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 1668 + - uid: 3849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 1668 + - uid: 3850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1668 + - uid: 3851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 1668 + - uid: 4926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1668 + - uid: 4928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 1668 + - uid: 4929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-20.5 + parent: 1668 + - uid: 4930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 1668 + - uid: 4931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1668 + - uid: 4932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1668 + - uid: 4933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 1668 + - uid: 4934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1668 + - uid: 4935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1668 + - uid: 4936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1668 + - uid: 4937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1668 + - uid: 4938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1668 + - uid: 4939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1668 + - uid: 4940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1668 + - uid: 4941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + - uid: 4942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1668 + - uid: 4943 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1668 + - uid: 4944 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1668 + - uid: 4945 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1668 + - uid: 4946 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 4947 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 4953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1668 + - uid: 4954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1668 + - uid: 4955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 1668 + - uid: 4956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 1668 + - uid: 4957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 1668 + - uid: 4958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1668 + - uid: 4959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1668 + - uid: 4960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1668 + - uid: 4961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + - uid: 4962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + - uid: 4963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + - uid: 4964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + - uid: 4965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + - uid: 5785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 1668 + - uid: 5888 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 1668 + - uid: 5889 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 1668 + - uid: 5890 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 1668 + - uid: 5891 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1668 + - uid: 5892 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1668 + - uid: 5893 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1668 + - uid: 5894 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1668 + - uid: 5895 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - uid: 5896 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1668 + - uid: 5898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + - uid: 5899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 1668 + - uid: 5900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 1668 +- proto: DisposalTrunk + entities: + - uid: 2058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1668 + - uid: 2075 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 2092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1668 + - uid: 2119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1668 + - uid: 2178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1668 + - uid: 3638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1668 + - uid: 3843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 1668 + - uid: 4924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 1668 + - uid: 4950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1668 + - uid: 5901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 1668 +- proto: DisposalUnit + entities: + - uid: 531 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1668 + - uid: 630 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1668 + - uid: 836 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1668 + - uid: 1407 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 1663 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1668 + - uid: 2177 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1668 + - uid: 3462 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1668 + - uid: 3842 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 1668 + - uid: 4923 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 1668 +- proto: Dresser + entities: + - uid: 3435 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1668 +- proto: DrinkFlask + entities: + - uid: 3773 + components: + - type: Transform + pos: -11.533806,6.6228595 + parent: 1668 +- proto: DrinkGoldenCup + entities: + - uid: 3769 + components: + - type: Transform + pos: -26.535545,11.773157 + parent: 1668 + - uid: 4375 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 1668 + - uid: 4376 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1668 +- proto: DrinkHotCoffee + entities: + - uid: 5464 + components: + - type: Transform + pos: 16.572073,-29.470444 + parent: 1668 +- proto: DrinkMugHeart + entities: + - uid: 1399 + components: + - type: Transform + pos: 2.5713959,-11.619784 + parent: 1668 +- proto: DrinkShaker + entities: + - uid: 6621 + components: + - type: Transform + pos: 10.4809675,-21.408005 + parent: 1668 +- proto: DrinkShotGlass + entities: + - uid: 3889 + components: + - type: Transform + pos: -24.572554,-3.3475308 + parent: 1668 + - uid: 3890 + components: + - type: Transform + pos: -24.400679,-3.4725308 + parent: 1668 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 3875 + components: + - type: Transform + pos: -27.52259,-4.144406 + parent: 1668 +- proto: EmergencyLight + entities: + - uid: 3155 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,29.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3158 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3159 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3160 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3161 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3165 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3166 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3168 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 3170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1668 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight +- proto: EpinephrineChemistryBottle + entities: + - uid: 1462 + components: + - type: Transform + pos: 13.808971,-12.626007 + parent: 1668 + - uid: 1463 + components: + - type: Transform + pos: 13.818524,-12.297882 + parent: 1668 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 628 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1668 + - uid: 2237 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1668 + - uid: 3908 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1668 + - uid: 3910 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1668 + - uid: 3911 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1668 + - uid: 3912 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1668 + - uid: 3913 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1668 + - uid: 3914 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1668 + - uid: 3915 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1668 + - uid: 3916 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1668 + - uid: 3917 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1668 + - uid: 3918 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1668 + - uid: 4150 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1668 +- proto: FaxMachineCentcom + entities: + - uid: 76 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - type: FaxMachine + name: CentComm +- proto: filingCabinet + entities: + - uid: 594 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1668 + - uid: 595 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1668 + - uid: 650 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1668 + - uid: 816 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1668 + - uid: 3840 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 1668 + - uid: 3841 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 1668 +- proto: filingCabinetDrawer + entities: + - uid: 1628 + components: + - type: Transform + pos: -12.5,12.5 + parent: 1668 + - uid: 1660 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1668 +- proto: filingCabinetTall + entities: + - uid: 1626 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1668 + - uid: 1627 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1668 + - uid: 1661 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1668 +- proto: FireAxeCabinetFilled + entities: + - uid: 6647 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1668 +- proto: FirelockGlass + entities: + - uid: 15 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1668 + - uid: 16 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1668 + - uid: 17 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1668 + - uid: 18 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1668 + - uid: 19 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1668 + - uid: 20 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1668 + - uid: 21 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1668 + - uid: 22 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1668 + - uid: 23 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1668 + - uid: 24 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1668 + - uid: 25 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1668 + - uid: 26 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1668 + - uid: 27 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1668 + - uid: 28 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1668 + - uid: 29 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1668 + - uid: 125 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1668 + - uid: 131 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1668 + - uid: 492 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1668 + - uid: 493 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1668 + - uid: 495 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1668 + - uid: 559 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1668 + - uid: 560 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1668 + - uid: 733 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1668 + - uid: 735 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1668 + - uid: 772 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1668 + - uid: 773 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1668 + - uid: 1619 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1668 + - uid: 1620 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1668 + - uid: 4299 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1668 + - uid: 4404 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 1668 + - uid: 4405 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 1668 + - uid: 4406 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 1668 + - uid: 4407 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1668 + - uid: 4408 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1668 + - uid: 4409 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1668 + - uid: 4630 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 1668 + - uid: 4631 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 1668 + - uid: 4632 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 1668 + - uid: 4633 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1668 + - uid: 4754 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 4968 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1668 + - uid: 4969 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1668 + - uid: 5045 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 1668 + - uid: 5046 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - uid: 5047 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1668 + - uid: 5222 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1668 + - uid: 5224 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1668 + - uid: 5233 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1668 + - uid: 5254 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 1668 + - uid: 5255 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1668 + - uid: 5256 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1668 + - uid: 5876 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1668 + - uid: 5877 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1668 + - uid: 6239 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 1668 + - uid: 6244 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 1668 + - uid: 6245 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 1668 + - uid: 6267 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 1668 + - uid: 6268 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1668 + - uid: 6269 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1668 +- proto: Fireplace + entities: + - uid: 3393 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1668 +- proto: Flash + entities: + - uid: 1452 + components: + - type: Transform + pos: 10.538131,4.4341054 + parent: 1668 + - uid: 3748 + components: + - type: Transform + pos: -26.453917,8.594473 + parent: 1668 + - uid: 4698 + components: + - type: Transform + pos: 24.48021,-8.554767 + parent: 1668 +- proto: FloorDrain + entities: + - uid: 3421 + components: + - type: Transform + pos: -20.5,15.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 6622 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 6623 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 6718 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 6876 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1668 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 2227 + components: + - type: Transform + pos: -14.517971,17.62628 + parent: 1668 + - uid: 3905 + components: + - type: Transform + pos: -13.406932,-7.1178913 + parent: 1668 +- proto: FoodBoxDonut + entities: + - uid: 1400 + components: + - type: Transform + pos: -3.5536041,-11.463534 + parent: 1668 + - uid: 2496 + components: + - type: Transform + pos: 28.583382,10.652384 + parent: 1668 + - uid: 3745 + components: + - type: Transform + pos: -23.474928,11.563223 + parent: 1668 + - uid: 3752 + components: + - type: Transform + pos: -19.463516,4.614471 + parent: 1668 + - uid: 3874 + components: + - type: Transform + pos: -27.444466,-3.3787808 + parent: 1668 + - uid: 3891 + components: + - type: Transform + pos: -22.447554,-6.441281 + parent: 1668 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 4592 + components: + - type: Transform + pos: -11.611271,-26.1594 + parent: 1668 + - uid: 4593 + components: + - type: Transform + pos: -11.470646,-26.268776 + parent: 1668 +- proto: FoodCondimentPacketPepper + entities: + - uid: 4619 + components: + - type: Transform + pos: 2.4944715,-29.54472 + parent: 1668 +- proto: FoodCondimentPacketSalt + entities: + - uid: 4618 + components: + - type: Transform + pos: 2.4007215,-29.404095 + parent: 1668 +- proto: FoodMeat + entities: + - uid: 5459 + components: + - type: Transform + parent: 5458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5460 + components: + - type: Transform + parent: 5458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5461 + components: + - type: Transform + parent: 5458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5462 + components: + - type: Transform + parent: 5458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5848 + components: + - type: Transform + parent: 5458 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPlateSmall + entities: + - uid: 6627 + components: + - type: Transform + pos: 0.5503339,-25.456686 + parent: 1668 + - uid: 6628 + components: + - type: Transform + pos: 0.5503339,-25.394186 + parent: 1668 + - uid: 6629 + components: + - type: Transform + pos: 0.5503339,-25.316061 + parent: 1668 +- proto: FoodSaladColeslaw + entities: + - uid: 6937 + components: + - type: Transform + pos: 19.664907,20.706526 + parent: 1668 +- proto: FoodTartGapple + entities: + - uid: 4380 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1668 +- proto: ForkPlastic + entities: + - uid: 4200 + components: + - type: Transform + pos: 0.20438054,-25.436565 + parent: 1668 + - uid: 4252 + components: + - type: Transform + pos: 0.20438054,-25.436565 + parent: 1668 + - uid: 5451 + components: + - type: Transform + pos: 0.20438054,-25.436565 + parent: 1668 +- proto: GasFilter + entities: + - uid: 6652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMinerNitrogenStation + entities: + - uid: 4715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: GasMinerOxygenStation + entities: + - uid: 4703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: GasMixer + entities: + - uid: 5070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: GasPassiveVent + entities: + - uid: 3430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 5399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 6141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 6312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: GasPipeBend + entities: + - uid: 3660 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1668 + - uid: 3670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 1668 + - uid: 3674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 1668 + - uid: 3675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1668 + - uid: 3676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1668 + - uid: 3684 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1668 + - uid: 3686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1668 + - uid: 4712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-32.5 + parent: 1668 + - uid: 4714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 1668 + - uid: 5067 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1668 + - uid: 5069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 1668 + - uid: 5389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5513 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5540 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5598 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5661 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6311 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 1668 + - uid: 6656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 1668 + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1668 + - uid: 6660 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6664 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6679 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6681 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6712 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 3678 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1668 + - uid: 5492 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5571 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6310 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 3664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1668 + - uid: 3665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1668 + - uid: 3666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + - uid: 3667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 1668 + - uid: 3668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + - uid: 3669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1668 + - uid: 3672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1668 + - uid: 3673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,8.5 + parent: 1668 + - uid: 3677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 1668 + - uid: 3679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1668 + - uid: 3680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1668 + - uid: 3681 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1668 + - uid: 3682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1668 + - uid: 3683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 1668 + - uid: 3685 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1668 + - uid: 3690 + components: + - type: Transform + pos: -21.5,10.5 + parent: 1668 + - uid: 3691 + components: + - type: Transform + pos: -21.5,11.5 + parent: 1668 + - uid: 3692 + components: + - type: Transform + pos: -21.5,12.5 + parent: 1668 + - uid: 3693 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1668 + - uid: 4702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 1668 + - uid: 4711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-30.5 + parent: 1668 + - uid: 4713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-29.5 + parent: 1668 + - uid: 5068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 1668 + - uid: 5387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + - uid: 5418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5466 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5467 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5468 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5469 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5486 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5487 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5488 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5489 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5490 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5491 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5504 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5545 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5546 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5547 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5548 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5549 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5550 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5561 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5562 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5586 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5587 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5588 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5589 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5590 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5591 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5618 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5619 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5620 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5621 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5622 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5623 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5653 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5654 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5655 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5656 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5657 + components: + - type: Transform + pos: -30.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5662 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5672 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5673 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5674 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5675 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5676 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5677 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5680 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5701 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5702 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5703 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5704 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5705 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5706 + components: + - type: Transform + pos: -10.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5708 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5709 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5710 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5718 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5719 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5720 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5721 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5722 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5745 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5746 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5747 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5748 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5749 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5750 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5751 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5752 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5753 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5754 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5755 + components: + - type: Transform + pos: 11.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5757 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5758 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5759 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5760 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5761 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5762 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5790 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5791 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5792 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5793 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5794 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5796 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + - uid: 6138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1668 + - uid: 6139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 1668 + - uid: 6226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6327 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6328 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6329 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6330 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6331 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6332 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6333 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6674 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6675 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6676 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6677 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 1668 + - uid: 6714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 3671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1668 + - uid: 5465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5473 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5542 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5572 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5592 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5627 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5643 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5679 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5698 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5772 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5805 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5815 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1668 + - uid: 6653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1668 + - uid: 6654 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1668 + - uid: 6708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 3577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 3659 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 3662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 6655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 6705 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6706 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressurePump + entities: + - uid: 3663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 5395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasThermoMachineFreezer + entities: + - uid: 6641 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: GasVentPump + entities: + - uid: 3687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 3688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 3689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 3694 + components: + - type: Transform + pos: -21.5,14.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 5474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5475 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5506 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5521 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5538 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5658 + components: + - type: Transform + pos: -30.5,4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5666 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5667 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5671 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5742 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5744 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5756 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5763 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-25.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6334 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 6140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: GeneratorBasic15kW + entities: + - uid: 5176 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1668 + - uid: 5177 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1668 + - uid: 5178 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1668 + - uid: 5179 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1668 + - uid: 5180 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 1668 + - uid: 5181 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1668 + - uid: 5455 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1668 + - uid: 5456 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1668 + - uid: 6596 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1668 + - uid: 6597 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1668 + - uid: 6598 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1668 + - uid: 6599 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 1668 + - uid: 6635 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1668 + - uid: 6636 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1668 +- proto: GeneratorRTG + entities: + - uid: 5182 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1668 + - uid: 5183 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1668 + - uid: 5184 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1668 +- proto: GravityGenerator + entities: + - uid: 1140 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1668 +- proto: Grille + entities: + - uid: 30 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 31 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1668 + - uid: 32 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1668 + - uid: 33 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1668 + - uid: 34 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1668 + - uid: 35 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1668 + - uid: 36 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1668 + - uid: 37 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1668 + - uid: 38 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1668 + - uid: 39 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1668 + - uid: 40 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1668 + - uid: 41 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1668 + - uid: 42 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1668 + - uid: 43 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1668 + - uid: 44 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1668 + - uid: 45 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1668 + - uid: 46 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1668 + - uid: 47 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1668 + - uid: 80 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1668 + - uid: 81 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1668 + - uid: 82 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1668 + - uid: 83 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1668 + - uid: 84 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1668 + - uid: 85 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1668 + - uid: 105 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1668 + - uid: 106 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1668 + - uid: 107 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 108 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1668 + - uid: 132 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1668 + - uid: 133 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1668 + - uid: 154 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1668 + - uid: 155 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1668 + - uid: 156 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1668 + - uid: 157 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1668 + - uid: 158 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1668 + - uid: 159 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1668 + - uid: 160 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1668 + - uid: 186 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1668 + - uid: 189 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1668 + - uid: 191 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1668 + - uid: 192 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1668 + - uid: 193 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1668 + - uid: 194 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1668 + - uid: 195 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1668 + - uid: 196 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1668 + - uid: 197 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1668 + - uid: 198 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1668 + - uid: 199 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1668 + - uid: 200 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1668 + - uid: 201 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1668 + - uid: 202 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1668 + - uid: 203 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1668 + - uid: 212 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1668 + - uid: 223 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1668 + - uid: 224 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1668 + - uid: 225 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1668 + - uid: 238 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1668 + - uid: 239 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1668 + - uid: 240 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1668 + - uid: 241 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1668 + - uid: 242 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1668 + - uid: 245 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1668 + - uid: 246 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1668 + - uid: 278 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1668 + - uid: 279 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1668 + - uid: 280 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1668 + - uid: 281 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1668 + - uid: 282 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1668 + - uid: 283 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1668 + - uid: 284 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1668 + - uid: 285 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1668 + - uid: 286 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1668 + - uid: 287 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1668 + - uid: 288 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1668 + - uid: 289 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1668 + - uid: 290 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1668 + - uid: 291 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1668 + - uid: 292 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1668 + - uid: 304 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1668 + - uid: 305 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1668 + - uid: 306 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1668 + - uid: 311 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1668 + - uid: 312 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1668 + - uid: 313 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1668 + - uid: 314 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1668 + - uid: 341 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1668 + - uid: 342 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1668 + - uid: 343 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1668 + - uid: 344 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1668 + - uid: 345 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1668 + - uid: 448 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1668 + - uid: 449 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1668 + - uid: 450 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 1668 + - uid: 451 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1668 + - uid: 452 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1668 + - uid: 453 + components: + - type: Transform + pos: 35.5,5.5 + parent: 1668 + - uid: 454 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1668 + - uid: 455 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1668 + - uid: 456 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1668 + - uid: 457 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1668 + - uid: 458 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1668 + - uid: 459 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1668 + - uid: 460 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1668 + - uid: 461 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1668 + - uid: 473 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1668 + - uid: 474 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1668 + - uid: 475 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1668 + - uid: 476 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1668 + - uid: 477 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1668 + - uid: 478 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1668 + - uid: 479 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1668 + - uid: 480 + components: + - type: Transform + pos: 33.5,5.5 + parent: 1668 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1668 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1668 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1668 + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1668 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1668 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1668 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + - uid: 725 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1668 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1668 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1668 + - uid: 765 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1668 + - uid: 766 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1668 + - uid: 767 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1668 + - uid: 768 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1668 + - uid: 769 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 1668 + - uid: 782 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1668 + - uid: 783 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1668 + - uid: 784 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1668 + - uid: 785 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1668 + - uid: 845 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1668 + - uid: 846 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1668 + - uid: 847 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1668 + - uid: 848 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1668 + - uid: 849 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1668 + - uid: 850 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1668 + - uid: 853 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1668 + - uid: 855 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1668 + - uid: 1424 + components: + - type: Transform + pos: -10.5,32.5 + parent: 1668 + - uid: 1425 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1668 + - uid: 1467 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1668 + - uid: 1488 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1668 + - uid: 1489 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1668 + - uid: 1513 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1668 + - uid: 1514 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1668 + - uid: 1515 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1668 + - uid: 1516 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1668 + - uid: 1517 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - uid: 1594 + components: + - type: Transform + pos: -14.5,20.5 + parent: 1668 + - uid: 1595 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1668 + - uid: 1596 + components: + - type: Transform + pos: -14.5,22.5 + parent: 1668 + - uid: 1597 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1668 + - uid: 1598 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1668 + - uid: 1599 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1668 + - uid: 1600 + components: + - type: Transform + pos: -16.5,26.5 + parent: 1668 + - uid: 1601 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1668 + - uid: 1602 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1668 + - uid: 1603 + components: + - type: Transform + pos: -16.5,29.5 + parent: 1668 + - uid: 1604 + components: + - type: Transform + pos: -15.5,29.5 + parent: 1668 + - uid: 1605 + components: + - type: Transform + pos: -14.5,29.5 + parent: 1668 + - uid: 1606 + components: + - type: Transform + pos: -14.5,30.5 + parent: 1668 + - uid: 1667 + components: + - type: Transform + pos: -8.5,32.5 + parent: 1668 + - uid: 1669 + components: + - type: Transform + pos: -6.5,32.5 + parent: 1668 + - uid: 1670 + components: + - type: Transform + pos: -12.5,32.5 + parent: 1668 + - uid: 2002 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1668 + - uid: 2003 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1668 + - uid: 2004 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1668 + - uid: 2246 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1668 + - uid: 2247 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1668 + - uid: 2248 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1668 + - uid: 2284 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1668 + - uid: 2285 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1668 + - uid: 2286 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1668 + - uid: 2287 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1668 + - uid: 2288 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1668 + - uid: 2289 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - uid: 2290 + components: + - type: Transform + pos: 31.5,14.5 + parent: 1668 + - uid: 2291 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1668 + - uid: 2346 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1668 + - uid: 2347 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1668 + - uid: 2348 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1668 + - uid: 2349 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1668 + - uid: 2510 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1668 + - uid: 2511 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1668 + - uid: 2512 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1668 + - uid: 2513 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1668 + - uid: 2546 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1668 + - uid: 2557 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1668 + - uid: 2754 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1668 + - uid: 2756 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1668 + - uid: 2758 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1668 + - uid: 2772 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1668 + - uid: 2792 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1668 + - uid: 2808 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1668 + - uid: 2809 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1668 + - uid: 2810 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1668 + - uid: 2811 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1668 + - uid: 2815 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - uid: 2816 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1668 + - uid: 2817 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1668 + - uid: 2818 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1668 + - uid: 2819 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1668 + - uid: 2860 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1668 + - uid: 2861 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1668 + - uid: 2880 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1668 + - uid: 2887 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1668 + - uid: 2907 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1668 + - uid: 3134 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1668 + - uid: 3141 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1668 + - uid: 3247 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1668 + - uid: 3387 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 3388 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 + - uid: 3389 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1668 + - uid: 3390 + components: + - type: Transform + pos: -27.5,12.5 + parent: 1668 + - uid: 3391 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1668 + - uid: 3392 + components: + - type: Transform + pos: -27.5,9.5 + parent: 1668 + - uid: 3436 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1668 + - uid: 3437 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1668 + - uid: 3438 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1668 + - uid: 3439 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1668 + - uid: 3440 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1668 + - uid: 3441 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1668 + - uid: 3442 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1668 + - uid: 3936 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1668 + - uid: 3937 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1668 + - uid: 3938 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1668 + - uid: 3943 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1668 + - uid: 3944 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1668 + - uid: 3945 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1668 + - uid: 3946 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1668 + - uid: 3979 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - uid: 3980 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1668 + - uid: 3981 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1668 + - uid: 3982 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1668 + - uid: 3983 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1668 + - uid: 3984 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1668 + - uid: 3985 + components: + - type: Transform + pos: -34.5,1.5 + parent: 1668 + - uid: 4201 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1668 + - uid: 4226 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1668 + - uid: 4227 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 1668 + - uid: 4228 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 1668 + - uid: 4229 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1668 + - uid: 4264 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1668 + - uid: 4317 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1668 + - uid: 4318 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1668 + - uid: 4319 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1668 + - uid: 4320 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1668 + - uid: 4321 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1668 + - uid: 4322 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1668 + - uid: 4323 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1668 + - uid: 4324 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1668 + - uid: 4325 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1668 + - uid: 4326 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1668 + - uid: 4327 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1668 + - uid: 4328 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1668 + - uid: 4366 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1668 + - uid: 4602 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1668 + - uid: 4671 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1668 + - uid: 4672 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1668 + - uid: 4673 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1668 + - uid: 4750 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - uid: 4751 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1668 + - uid: 5025 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1668 + - uid: 5064 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1668 + - uid: 5065 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1668 + - uid: 5114 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1668 + - uid: 5115 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1668 + - uid: 5116 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1668 + - uid: 5117 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1668 + - uid: 5118 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1668 + - uid: 5169 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1668 + - uid: 5170 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1668 + - uid: 5320 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1668 + - uid: 5412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + - uid: 5781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1668 + - uid: 5782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1668 + - uid: 5783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1668 + - uid: 5922 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 1668 + - uid: 5923 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 1668 + - uid: 5924 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 1668 + - uid: 5925 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 1668 + - uid: 5926 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 1668 + - uid: 5927 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 1668 + - uid: 5949 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 1668 + - uid: 5950 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 1668 + - uid: 5983 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 1668 + - uid: 5984 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1668 + - uid: 5985 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 1668 + - uid: 5986 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 1668 + - uid: 5987 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 1668 + - uid: 5988 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 1668 + - uid: 5989 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 1668 + - uid: 5993 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 1668 + - uid: 5994 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 1668 + - uid: 5995 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 1668 + - uid: 6160 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1668 + - uid: 6161 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 1668 + - uid: 6162 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1668 + - uid: 6163 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1668 + - uid: 6164 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1668 + - uid: 6165 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1668 + - uid: 6280 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1668 + - uid: 6281 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1668 + - uid: 6301 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 1668 + - uid: 6302 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 1668 + - uid: 6303 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 1668 + - uid: 6304 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1668 + - uid: 6305 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 1668 + - uid: 6306 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 1668 + - uid: 6307 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 1668 + - uid: 6505 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1668 + - uid: 6575 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 1668 + - uid: 6576 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1668 + - uid: 6768 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1668 + - uid: 6769 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1668 + - uid: 6779 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1668 +- proto: GroundTobacco + entities: + - uid: 3755 + components: + - type: Transform + pos: -18.558027,8.843213 + parent: 1668 + - uid: 3756 + components: + - type: Transform + pos: -18.370527,8.827588 + parent: 1668 +- proto: GunSafeShotgunKammerer + entities: + - uid: 6526 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1668 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2923 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1668 +- proto: Handcuffs + entities: + - uid: 3751 + components: + - type: Transform + pos: -25.604141,8.625723 + parent: 1668 +- proto: HandheldCrewMonitor + entities: + - uid: 1461 + components: + - type: Transform + pos: 13.504195,-12.438507 + parent: 1668 +- proto: HandLabeler + entities: + - uid: 2228 + components: + - type: Transform + pos: -14.611721,14.56378 + parent: 1668 + - uid: 2229 + components: + - type: Transform + pos: -9.361721,12.50128 + parent: 1668 + - uid: 2240 + components: + - type: Transform + pos: -3.4985683,16.513187 + parent: 1668 +- proto: HighSecArmoryLocked + entities: + - uid: 2553 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1668 + - uid: 2784 + components: + - type: Transform + pos: 7.5,28.5 + parent: 1668 + - uid: 2785 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1668 +- proto: HighSecCentralCommandLocked + entities: + - uid: 3791 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1668 + - uid: 3794 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1668 + - uid: 3795 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1668 + - uid: 3797 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1668 + - uid: 3860 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1668 + - uid: 3863 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 1668 + - uid: 3864 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 1668 +- proto: HighSecCommandLocked + entities: + - uid: 123 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1668 +- proto: HighSecDoor + entities: + - uid: 565 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1668 + - uid: 5932 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 1668 +- proto: HospitalCurtainsOpen + entities: + - uid: 3422 + components: + - type: Transform + pos: -20.5,15.5 + parent: 1668 +- proto: JanitorialTrolley + entities: + - uid: 2881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 1668 +- proto: JawsOfLife + entities: + - uid: 4261 + components: + - type: Transform + pos: 21.501507,-22.363987 + parent: 1668 +- proto: KitchenMicrowave + entities: + - uid: 2226 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - uid: 4585 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1668 + - uid: 4589 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 1668 +- proto: KitchenReagentGrinder + entities: + - uid: 2922 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1668 + - uid: 4590 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 1668 + - uid: 4591 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 1668 +- proto: KitchenSpike + entities: + - uid: 4581 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 1668 +- proto: KnifePlastic + entities: + - uid: 3726 + components: + - type: Transform + pos: 0.9231305,-25.45219 + parent: 1668 + - uid: 4253 + components: + - type: Transform + pos: 0.9231305,-25.45219 + parent: 1668 + - uid: 5214 + components: + - type: Transform + pos: 0.9231305,-25.45219 + parent: 1668 +- proto: Lamp + entities: + - uid: 1442 + components: + - type: Transform + pos: -0.93100256,1.9752237 + parent: 1668 + - uid: 2829 + components: + - type: Transform + pos: 5.496662,21.877665 + parent: 1668 + - uid: 3626 + components: + - type: Transform + pos: -20.472635,6.7337127 + parent: 1668 + - uid: 3627 + components: + - type: Transform + pos: -20.48826,12.764963 + parent: 1668 +- proto: LampGold + entities: + - uid: 3628 + components: + - type: Transform + pos: -16.37576,12.926986 + parent: 1668 +- proto: LargeBeaker + entities: + - uid: 5066 + components: + - type: Transform + pos: -10.010703,-28.243814 + parent: 1668 +- proto: Lighter + entities: + - uid: 3754 + components: + - type: Transform + pos: -18.379215,8.381029 + parent: 1668 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3790 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1668 +- proto: LockerBoozeFilled + entities: + - uid: 4417 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1668 +- proto: LockerChemistryFilled + entities: + - uid: 2876 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1668 +- proto: LockerChiefEngineerFilled + entities: + - uid: 6491 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1668 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 6495 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1668 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 1178 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1668 + - uid: 2039 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1668 + - uid: 5322 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 1668 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 3796 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 1668 + - uid: 5252 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 1668 +- proto: LockerEvidence + entities: + - uid: 3148 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1668 +- proto: LockerFreezer + entities: + - uid: 5458 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 1668 + - 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: + - 5459 + - 5460 + - 5461 + - 5462 + - 5848 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 3153 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1668 +- proto: LockerQuarterMasterFilled + entities: + - uid: 2235 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1668 +- proto: LockerResearchDirectorFilled + entities: + - uid: 6494 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1668 +- proto: LockerSecurityFilled + entities: + - uid: 511 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1668 + - uid: 512 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1668 + - uid: 815 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1668 +- proto: LockerWardenFilled + entities: + - uid: 2713 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1668 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 129 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1668 + - uid: 2040 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1668 + - uid: 5319 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 1668 +- proto: MachineCentrifuge + entities: + - uid: 1426 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1668 +- proto: MachineElectrolysisUnit + entities: + - uid: 6506 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1668 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 3896 + components: + - type: Transform + pos: -13.453807,-3.1600308 + parent: 1668 +- proto: MaterialBiomass + entities: + - uid: 2495 + components: + - type: Transform + pos: 13.210049,-12.580112 + parent: 1668 +- proto: MedalCase + entities: + - uid: 6922 + components: + - type: Transform + pos: -18.47654,4.596927 + parent: 1668 +- proto: MedicalBed + entities: + - uid: 612 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1668 + - uid: 1195 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1668 + - uid: 1196 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1668 +- proto: MedicalScanner + entities: + - uid: 723 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1668 +- proto: MedicalTechFab + entities: + - uid: 616 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1668 +- proto: MedkitBruteFilled + entities: + - uid: 622 + components: + - type: Transform + pos: 14.703841,-7.3571634 + parent: 1668 +- proto: MedkitBurnFilled + entities: + - uid: 621 + components: + - type: Transform + pos: 14.594466,-7.4821634 + parent: 1668 +- proto: MedkitFilled + entities: + - uid: 620 + components: + - type: Transform + pos: 14.516341,-7.5759134 + parent: 1668 + - uid: 1454 + components: + - type: Transform + pos: 15.537778,-2.524952 + parent: 1668 + - uid: 3897 + components: + - type: Transform + pos: -13.438182,-5.5085163 + parent: 1668 +- proto: MedkitOxygenFilled + entities: + - uid: 625 + components: + - type: Transform + pos: 15.547591,-7.3884134 + parent: 1668 +- proto: MedkitRadiationFilled + entities: + - uid: 623 + components: + - type: Transform + pos: 15.266341,-7.6071634 + parent: 1668 +- proto: MedkitToxinFilled + entities: + - uid: 624 + components: + - type: Transform + pos: 15.406966,-7.4977884 + parent: 1668 +- proto: Mirror + entities: + - uid: 3426 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1668 + - uid: 6845 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1668 +- proto: MopItem + entities: + - uid: 6230 + components: + - type: Transform + pos: -17.485325,-31.461966 + parent: 1668 +- proto: NitrogenCanister + entities: + - uid: 5413 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: NTFlag + entities: + - uid: 1190 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1668 + - uid: 2143 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 1668 + - uid: 2249 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 1668 +- proto: NTHandyFlag + entities: + - uid: 1187 + components: + - type: Transform + pos: 31.51589,5.5499916 + parent: 1668 +- proto: Omnitool + entities: + - uid: 4393 + components: + - type: Transform + pos: 24.630873,-13.468605 + parent: 1668 +- proto: OperatingTable + entities: + - uid: 610 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1668 +- proto: OxygenCanister + entities: + - uid: 5415 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 + - uid: 6719 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: PaintingAmogusTriptych + entities: + - uid: 3766 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1668 + - uid: 6942 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1668 +- proto: PaintingHelloWorld + entities: + - uid: 3767 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1668 +- proto: PaintingNightHawks + entities: + - uid: 3779 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1668 +- proto: PaintingSadClown + entities: + - uid: 6943 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1668 +- proto: PaintingSaturn + entities: + - uid: 3776 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1668 +- proto: PaintingTheGreatWave + entities: + - uid: 3743 + components: + - type: Transform + pos: -20.5,13.5 + parent: 1668 +- proto: PaintingTheSonOfMan + entities: + - uid: 3744 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1668 +- proto: Paper + entities: + - uid: 2915 + components: + - type: Transform + pos: 0.536467,0.64872134 + parent: 1668 + - uid: 2916 + components: + - type: Transform + pos: 0.44271702,0.72684634 + parent: 1668 + - uid: 2919 + components: + - type: Transform + pos: 0.645842,0.55497134 + parent: 1668 +- proto: PaperBin10 + entities: + - uid: 6630 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1668 +- proto: ParchisBoard + entities: + - uid: 3764 + components: + - type: Transform + pos: -23.482897,2.599884 + parent: 1668 +- proto: PenCentcom + entities: + - uid: 2905 + components: + - type: Transform + pos: -20.468134,12.0128975 + parent: 1668 + - uid: 2924 + components: + - type: Transform + pos: 0.16146702,1.3987213 + parent: 1668 + - uid: 6600 + components: + - type: Transform + pos: -1.4166579,1.6018463 + parent: 1668 +- proto: PercentileDie + entities: + - uid: 3765 + components: + - type: Transform + pos: -18.522638,2.6762333 + parent: 1668 +- proto: PhoneInstrument + entities: + - uid: 2464 + components: + - type: Transform + pos: 29.471363,23.660753 + parent: 1668 + - uid: 3742 + components: + - type: Transform + pos: -19.555511,10.655831 + parent: 1668 + - uid: 3876 + components: + - type: Transform + pos: -26.67884,-3.3787808 + parent: 1668 +- proto: PianoInstrument + entities: + - uid: 4474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1668 +- proto: PlaqueAtmos + entities: + - uid: 4383 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1668 + - uid: 6646 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1668 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1590 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1668 + - uid: 1591 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1668 + - uid: 1592 + components: + - type: Transform + pos: -16.5,28.5 + parent: 1668 + - uid: 1593 + components: + - type: Transform + pos: -14.5,28.5 + parent: 1668 + - uid: 1623 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1668 +- proto: PlushieAtmosian + entities: + - uid: 6890 + components: + - type: Transform + pos: 17.549469,-29.409344 + parent: 1668 +- proto: PortableScrubber + entities: + - uid: 3696 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1668 + - uid: 5764 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1668 + - uid: 5765 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 1668 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 6638 + components: + - type: MetaData + desc: A picture depicting a woman at the beach. Neat. + name: Beach Star Bratton! + - type: Transform + pos: 15.5,33.5 + parent: 1668 +- proto: PosterContrabandC20r + entities: + - uid: 6734 + components: + - type: Transform + pos: 9.5,33.5 + parent: 1668 +- proto: PosterContrabandEAT + entities: + - uid: 6737 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1668 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 4576 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1668 +- proto: PosterContrabandMissingGloves + entities: + - uid: 6945 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 1668 +- proto: PosterContrabandRedRum + entities: + - uid: 6918 + components: + - type: Transform + pos: -4.5,25.5 + parent: 1668 +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 6958 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1668 +- proto: PosterContrabandSpaceUp + entities: + - uid: 6746 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 1668 +- proto: PosterContrabandTools + entities: + - uid: 6731 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1668 +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 6917 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1668 +- proto: PosterContrabandVoteWeh + entities: + - uid: 6745 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1668 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 6733 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1668 +- proto: PosterLegitCarpMount + entities: + - uid: 6740 + components: + - type: Transform + pos: 8.5,33.5 + parent: 1668 + - uid: 6915 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1668 +- proto: PosterLegitCleanliness + entities: + - uid: 6735 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 1668 + - uid: 6736 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 1668 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 6732 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 1668 +- proto: PosterLegitEnlist + entities: + - uid: 6633 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1668 + - uid: 6639 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1668 +- proto: PosterLegitHelpOthers + entities: + - uid: 6738 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 1668 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 6959 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1668 +- proto: PosterLegitHighClassMartini + entities: + - uid: 6739 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1668 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 6741 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1668 +- proto: PosterLegitLoveIan + entities: + - uid: 6957 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 1668 + - uid: 6960 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1668 +- proto: PosterLegitNanomichiAd + entities: + - uid: 3778 + components: + - type: Transform + pos: -25.5,6.5 + parent: 1668 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 469 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1668 + - uid: 797 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1668 + - uid: 798 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1668 + - uid: 799 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1668 + - uid: 800 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1668 + - uid: 801 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1668 + - uid: 802 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1668 + - uid: 1464 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1668 + - uid: 1861 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1668 + - uid: 2053 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1668 + - uid: 2054 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1668 + - uid: 2055 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1668 + - uid: 2454 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1668 + - uid: 2455 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1668 + - uid: 2456 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1668 + - uid: 2457 + components: + - type: Transform + pos: 30.5,24.5 + parent: 1668 + - uid: 2458 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1668 + - uid: 2459 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1668 + - uid: 2460 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1668 + - uid: 2918 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1668 + - uid: 3450 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1668 + - uid: 3603 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1668 + - uid: 3604 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1668 + - uid: 3605 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1668 + - uid: 3606 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1668 + - uid: 3777 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1668 + - uid: 3867 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1668 + - uid: 4395 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1668 + - uid: 4635 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1668 + - uid: 4636 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1668 + - uid: 6446 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 1668 + - uid: 6447 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 1668 + - uid: 6448 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 1668 + - uid: 6557 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 1668 + - uid: 6558 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 1668 + - uid: 6559 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1668 + - uid: 6560 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1668 + - uid: 6613 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1668 + - uid: 6632 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1668 + - uid: 6721 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1668 + - uid: 6722 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1668 + - uid: 6882 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1668 +- proto: PosterLegitNTTGC + entities: + - uid: 6884 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1668 +- proto: PosterLegitPeriodicTable + entities: + - uid: 6913 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1668 +- proto: PosterLegitRenault + entities: + - uid: 6962 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1668 +- proto: PosterLegitReportCrimes + entities: + - uid: 6743 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1668 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 6914 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1668 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 6912 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1668 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 6910 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1668 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 6911 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 6909 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1668 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 6887 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1668 +- proto: PosterLegitSafetyReport + entities: + - uid: 6747 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1668 +- proto: PosterLegitSecWatch + entities: + - uid: 6781 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 1668 +- proto: PosterLegitUeNo + entities: + - uid: 6744 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1668 +- proto: PosterLegitVacation + entities: + - uid: 6885 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1668 + - uid: 6886 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1668 + - uid: 6919 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1668 + - uid: 6946 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 1668 +- proto: PosterLegitWalk + entities: + - uid: 6961 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1668 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 6742 + components: + - type: Transform + pos: 10.5,33.5 + parent: 1668 + - uid: 6916 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1668 +- proto: PosterMapBagel + entities: + - uid: 6749 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1668 +- proto: PosterMapDelta + entities: + - uid: 6750 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1668 +- proto: PosterMapLighthouse + entities: + - uid: 6754 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 1668 +- proto: PosterMapMarathon + entities: + - uid: 6751 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1668 +- proto: PosterMapMetaRight + entities: + - uid: 6752 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1668 +- proto: PosterMapMoose + entities: + - uid: 6755 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1668 +- proto: PosterMapOrigin + entities: + - uid: 6759 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1668 +- proto: PosterMapPillar + entities: + - uid: 6753 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 1668 +- proto: PosterMapSaltern + entities: + - uid: 6756 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 1668 +- proto: PosterMapSplit + entities: + - uid: 6757 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1668 +- proto: PosterMapWaystation + entities: + - uid: 6758 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1668 +- proto: PottedPlant15 + entities: + - uid: 3459 + components: + - type: Transform + pos: -24.5,12.5 + parent: 1668 +- proto: PottedPlant21 + entities: + - uid: 508 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1668 + - uid: 542 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1668 + - uid: 543 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1668 + - uid: 602 + components: + - type: MetaData + name: security plant + - type: Transform + pos: 9.5,6.5 + parent: 1668 + - uid: 606 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1668 + - uid: 607 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1668 + - uid: 708 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1668 + - uid: 709 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1668 + - uid: 803 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1668 + - uid: 2160 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1668 + - uid: 2161 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1668 + - uid: 2162 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1668 + - uid: 2381 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1668 + - uid: 2383 + components: + - type: Transform + pos: 34.5,10.5 + parent: 1668 + - uid: 2384 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1668 + - uid: 2385 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1668 + - uid: 2386 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1668 + - uid: 2422 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1668 + - uid: 3178 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1668 + - uid: 3179 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1668 + - uid: 3456 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1668 + - uid: 3457 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1668 + - uid: 3458 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1668 + - uid: 3460 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1668 + - uid: 3461 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1668 + - uid: 3856 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1668 + - uid: 3857 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1668 + - uid: 3858 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1668 + - uid: 4624 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1668 + - uid: 4625 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 1668 + - uid: 4626 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1668 + - uid: 4627 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1668 + - uid: 4628 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1668 + - uid: 4629 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1668 + - uid: 5375 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1668 + - uid: 5382 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 1668 + - uid: 6561 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1668 + - uid: 6562 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 1668 + - uid: 6563 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 1668 +- proto: PottedPlant22 + entities: + - uid: 544 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1668 + - uid: 603 + components: + - type: MetaData + name: security plant + - type: Transform + pos: 13.5,4.5 + parent: 1668 + - uid: 706 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1668 + - uid: 707 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1668 + - uid: 804 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1668 + - uid: 2193 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1668 + - uid: 2387 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1668 + - uid: 2388 + components: + - type: Transform + pos: 33.5,10.5 + parent: 1668 + - uid: 2389 + components: + - type: Transform + pos: 34.5,21.5 + parent: 1668 + - uid: 2390 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1668 + - uid: 2391 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1668 + - uid: 2392 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1668 + - uid: 2393 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1668 + - uid: 2394 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1668 + - uid: 3180 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1668 + - uid: 3181 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1668 + - uid: 3453 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1668 + - uid: 3454 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1668 + - uid: 3455 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1668 + - uid: 3853 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1668 + - uid: 3854 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1668 + - uid: 3855 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1668 + - uid: 4620 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1668 + - uid: 4621 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1668 + - uid: 4622 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1668 + - uid: 4623 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 1668 + - uid: 5377 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1668 + - uid: 5383 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 1668 + - uid: 6564 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 1668 + - uid: 6565 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1668 +- proto: PottedPlantBioluminscent + entities: + - uid: 6566 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 1668 +- proto: PowerCellRecharger + entities: + - uid: 1448 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1668 + - uid: 1458 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1668 + - uid: 5376 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1668 + - uid: 5378 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1668 + - uid: 6498 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1668 +- proto: PowerDrill + entities: + - uid: 3698 + components: + - type: Transform + pos: -16.54512,6.5009594 + parent: 1668 +- proto: Poweredlight + entities: + - uid: 510 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 525 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 526 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 527 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 576 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 582 + components: + - type: Transform + pos: 34.5,5.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 583 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 584 + components: + - type: Transform + pos: 29.5,5.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 739 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1384 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1385 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1386 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1388 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1390 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1396 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2152 + components: + - type: Transform + pos: -11.5,17.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2154 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2219 + components: + - type: Transform + pos: -11.5,31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2220 + components: + - type: Transform + pos: -7.5,31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1668 + - uid: 2723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2724 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2725 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2726 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2908 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1668 + - uid: 2931 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2932 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2933 + components: + - type: Transform + pos: 9.5,32.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2939 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1668 + - uid: 3701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3705 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3707 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3708 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4170 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4171 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4176 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4177 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1668 + - uid: 4334 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1668 + - uid: 4340 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1668 + - uid: 4392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1668 + - uid: 4396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1668 + - uid: 4397 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1668 + - uid: 4399 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1668 + - uid: 4400 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1668 + - uid: 4402 + components: + - type: Transform + pos: 34.5,23.5 + parent: 1668 + - uid: 4499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1668 + - uid: 4596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4597 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4598 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4600 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4601 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1668 + - uid: 5353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5354 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5359 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5360 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5364 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-32.5 + parent: 1668 + - uid: 5452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1668 + - uid: 5582 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5827 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5830 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5831 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5849 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5850 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5852 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5884 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5885 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5933 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6102 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-29.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + - uid: 6463 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6464 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6469 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6470 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6471 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6472 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-37.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1668 + - uid: 6609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6723 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1668 + - uid: 6724 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1668 + - uid: 6725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1668 + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 1668 + - uid: 6760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1668 + - uid: 6761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1668 + - uid: 6766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1668 + - uid: 6784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1668 + - uid: 6874 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 1668 + - uid: 6875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 1668 + - uid: 6883 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1668 + - uid: 6920 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1668 + - uid: 6921 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1668 + - uid: 6944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1668 +- proto: PoweredlightLED + entities: + - uid: 5584 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightSodium + entities: + - uid: 3245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5229 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 2050 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2051 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2052 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2217 + components: + - type: Transform + pos: -15.5,28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2740 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2762 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2935 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2936 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2937 + components: + - type: Transform + pos: 2.5,28.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2938 + components: + - type: Transform + pos: 2.5,25.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2943 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 1668 + - uid: 5368 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 1668 +- proto: Protolathe + entities: + - uid: 5311 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1668 +- proto: Rack + entities: + - uid: 1662 + components: + - type: Transform + pos: -11.5,17.5 + parent: 1668 + - uid: 2167 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1668 + - uid: 2195 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1668 + - uid: 2200 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1668 + - uid: 2201 + components: + - type: Transform + pos: 3.5,30.5 + parent: 1668 + - uid: 2889 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1668 + - uid: 2890 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1668 + - uid: 3117 + components: + - type: Transform + pos: 5.5,32.5 + parent: 1668 + - uid: 3118 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1668 + - uid: 3119 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1668 + - uid: 3120 + components: + - type: Transform + pos: 13.5,32.5 + parent: 1668 + - uid: 5327 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1668 + - uid: 5340 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1668 + - uid: 6449 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 1668 + - uid: 6450 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 1668 + - uid: 6451 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 1668 + - uid: 6452 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 1668 +- proto: RadioHandheld + entities: + - uid: 3903 + components: + - type: Transform + pos: -13.516307,-6.3210163 + parent: 1668 + - uid: 3904 + components: + - type: Transform + pos: -13.344432,-6.4147663 + parent: 1668 +- proto: Railing + entities: + - uid: 1075 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 1668 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-4.5 + parent: 1668 + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 1668 + - uid: 1078 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1668 + - uid: 4434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + - uid: 4435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + - uid: 4436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + - uid: 4438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + - uid: 4439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1668 + - uid: 4440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + - uid: 4454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1668 + - uid: 4455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 1668 + - uid: 4456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1668 + - uid: 4457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1668 + - uid: 4460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1668 + - uid: 4461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1668 + - uid: 4462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1668 + - uid: 4463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1668 + - uid: 4464 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1668 + - uid: 4465 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1668 + - uid: 4468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + - uid: 4469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1668 + - uid: 5216 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1668 + - uid: 5218 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1668 + - uid: 5220 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1668 + - uid: 5221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 1668 + - uid: 5223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 1668 + - uid: 5225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-26.5 + parent: 1668 + - uid: 5226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 1668 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1668 + - uid: 5230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 1668 + - uid: 6144 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 1668 + - uid: 6145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 1668 +- proto: RailingCornerSmall + entities: + - uid: 4471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1668 + - uid: 4473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 1668 + - uid: 5231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 1668 + - uid: 5232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-20.5 + parent: 1668 +- proto: RandomDrinkBottle + entities: + - uid: 4607 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1668 + - uid: 4610 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1668 +- proto: RandomDrinkGlass + entities: + - uid: 4611 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1668 + - uid: 4612 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1668 + - uid: 4613 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 1668 + - uid: 4614 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1668 +- proto: RandomFoodBakedSingle + entities: + - uid: 4616 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1668 +- proto: RandomFoodMeal + entities: + - uid: 4608 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 1668 + - uid: 4609 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 1668 +- proto: RandomFoodSingle + entities: + - uid: 4605 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1668 + - uid: 4606 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1668 +- proto: ReagentContainerFlour + entities: + - uid: 4594 + components: + - type: Transform + pos: -10.626896,-28.3469 + parent: 1668 + - uid: 4595 + components: + - type: Transform + pos: -10.376896,-28.50315 + parent: 1668 +- proto: Recycler + entities: + - uid: 5908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 5907 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 2791 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - uid: 2812 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1668 + - uid: 2813 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1668 + - uid: 2877 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1668 + - uid: 5108 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1668 + - uid: 5109 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1668 + - uid: 5110 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1668 + - uid: 5111 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1668 + - uid: 5112 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1668 + - uid: 5167 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1668 + - uid: 5168 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1668 +- proto: ReinforcedWindow + entities: + - uid: 50 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1668 + - uid: 51 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1668 + - uid: 52 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1668 + - uid: 53 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1668 + - uid: 54 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1668 + - uid: 55 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1668 + - uid: 56 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1668 + - uid: 57 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1668 + - uid: 58 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1668 + - uid: 59 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1668 + - uid: 60 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1668 + - uid: 61 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1668 + - uid: 62 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1668 + - uid: 63 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1668 + - uid: 64 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1668 + - uid: 65 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1668 + - uid: 66 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1668 + - uid: 67 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1668 + - uid: 68 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1668 + - uid: 69 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 77 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1668 + - uid: 92 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1668 + - uid: 93 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1668 + - uid: 94 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1668 + - uid: 95 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1668 + - uid: 103 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1668 + - uid: 104 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1668 + - uid: 109 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1668 + - uid: 110 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1668 + - uid: 111 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 112 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1668 + - uid: 124 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1668 + - uid: 134 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1668 + - uid: 135 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1668 + - uid: 136 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1668 + - uid: 150 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1668 + - uid: 151 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1668 + - uid: 152 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1668 + - uid: 153 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1668 + - uid: 161 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1668 + - uid: 162 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1668 + - uid: 163 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1668 + - uid: 164 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1668 + - uid: 165 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1668 + - uid: 166 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1668 + - uid: 167 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1668 + - uid: 168 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1668 + - uid: 169 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1668 + - uid: 170 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1668 + - uid: 171 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1668 + - uid: 172 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1668 + - uid: 173 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1668 + - uid: 183 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1668 + - uid: 190 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1668 + - uid: 214 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1668 + - uid: 215 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1668 + - uid: 220 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1668 + - uid: 221 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1668 + - uid: 222 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1668 + - uid: 226 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1668 + - uid: 227 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1668 + - uid: 228 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1668 + - uid: 243 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1668 + - uid: 244 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1668 + - uid: 247 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1668 + - uid: 259 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1668 + - uid: 260 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1668 + - uid: 261 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1668 + - uid: 262 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1668 + - uid: 263 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1668 + - uid: 264 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1668 + - uid: 265 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1668 + - uid: 266 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1668 + - uid: 267 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1668 + - uid: 268 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1668 + - uid: 269 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1668 + - uid: 270 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1668 + - uid: 271 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1668 + - uid: 272 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1668 + - uid: 275 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1668 + - uid: 301 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1668 + - uid: 302 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1668 + - uid: 303 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1668 + - uid: 307 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1668 + - uid: 308 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1668 + - uid: 309 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1668 + - uid: 310 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1668 + - uid: 336 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1668 + - uid: 337 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1668 + - uid: 338 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1668 + - uid: 339 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1668 + - uid: 340 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1668 + - uid: 348 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1668 + - uid: 355 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1668 + - uid: 360 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1668 + - uid: 361 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1668 + - uid: 393 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1668 + - uid: 396 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1668 + - uid: 401 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1668 + - uid: 408 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1668 + - uid: 442 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1668 + - uid: 443 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1668 + - uid: 444 + components: + - type: Transform + pos: 35.5,5.5 + parent: 1668 + - uid: 445 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 1668 + - uid: 446 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1668 + - uid: 447 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1668 + - uid: 462 + components: + - type: Transform + pos: 33.5,5.5 + parent: 1668 + - uid: 463 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1668 + - uid: 464 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1668 + - uid: 465 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1668 + - uid: 466 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1668 + - uid: 467 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1668 + - uid: 471 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1668 + - uid: 472 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1668 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1668 + - uid: 677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1668 + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1668 + - uid: 684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + - uid: 685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1668 + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1668 + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1668 + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + - uid: 741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1668 + - uid: 744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1668 + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1668 + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 1668 + - uid: 760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1668 + - uid: 761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1668 + - uid: 762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1668 + - uid: 778 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1668 + - uid: 779 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1668 + - uid: 780 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1668 + - uid: 781 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1668 + - uid: 819 + components: + - type: Transform + pos: -10.5,32.5 + parent: 1668 + - uid: 828 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1668 + - uid: 829 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1668 + - uid: 830 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1668 + - uid: 831 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1668 + - uid: 1193 + components: + - type: Transform + pos: -8.5,32.5 + parent: 1668 + - uid: 1417 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1668 + - uid: 1418 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1668 + - uid: 1419 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1668 + - uid: 1420 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1668 + - uid: 1421 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1668 + - uid: 1422 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1668 + - uid: 1423 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1668 + - uid: 1429 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1668 + - uid: 1466 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1668 + - uid: 1518 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1668 + - uid: 1519 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1668 + - uid: 1520 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - uid: 1521 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1668 + - uid: 1522 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1668 + - uid: 1539 + components: + - type: Transform + pos: -14.5,20.5 + parent: 1668 + - uid: 1540 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1668 + - uid: 1541 + components: + - type: Transform + pos: -14.5,22.5 + parent: 1668 + - uid: 1542 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1668 + - uid: 1543 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1668 + - uid: 1544 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1668 + - uid: 1545 + components: + - type: Transform + pos: -14.5,29.5 + parent: 1668 + - uid: 1546 + components: + - type: Transform + pos: -15.5,29.5 + parent: 1668 + - uid: 1547 + components: + - type: Transform + pos: -16.5,29.5 + parent: 1668 + - uid: 1548 + components: + - type: Transform + pos: -14.5,30.5 + parent: 1668 + - uid: 1549 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1668 + - uid: 1550 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1668 + - uid: 1551 + components: + - type: Transform + pos: -16.5,26.5 + parent: 1668 + - uid: 1566 + components: + - type: Transform + pos: -12.5,32.5 + parent: 1668 + - uid: 1572 + components: + - type: Transform + pos: -6.5,32.5 + parent: 1668 + - uid: 1999 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1668 + - uid: 2000 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1668 + - uid: 2001 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1668 + - uid: 2242 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1668 + - uid: 2243 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1668 + - uid: 2244 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1668 + - uid: 2276 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1668 + - uid: 2277 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1668 + - uid: 2278 + components: + - type: Transform + pos: 31.5,14.5 + parent: 1668 + - uid: 2279 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - uid: 2280 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1668 + - uid: 2281 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1668 + - uid: 2282 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1668 + - uid: 2283 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1668 + - uid: 2337 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1668 + - uid: 2338 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1668 + - uid: 2339 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1668 + - uid: 2341 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1668 + - uid: 2505 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1668 + - uid: 2506 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1668 + - uid: 2507 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1668 + - uid: 2509 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1668 + - uid: 2556 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1668 + - uid: 2755 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1668 + - uid: 2771 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1668 + - uid: 2777 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1668 + - uid: 2778 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1668 + - uid: 2779 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1668 + - uid: 2780 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1668 + - uid: 2781 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1668 + - uid: 2782 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1668 + - uid: 2786 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1668 + - uid: 2787 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1668 + - uid: 2858 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1668 + - uid: 2859 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1668 + - uid: 2906 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1668 + - uid: 3122 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1668 + - uid: 3126 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1668 + - uid: 3127 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1668 + - uid: 3128 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1668 + - uid: 3248 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1668 + - uid: 3249 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1668 + - uid: 3250 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1668 + - uid: 3287 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1668 + - uid: 3288 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1668 + - uid: 3289 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1668 + - uid: 3290 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1668 + - uid: 3291 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1668 + - uid: 3292 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1668 + - uid: 3293 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1668 + - uid: 3327 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1668 + - uid: 3328 + components: + - type: Transform + pos: -27.5,9.5 + parent: 1668 + - uid: 3329 + components: + - type: Transform + pos: -27.5,12.5 + parent: 1668 + - uid: 3330 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1668 + - uid: 3385 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 + - uid: 3386 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 3933 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1668 + - uid: 3934 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1668 + - uid: 3935 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1668 + - uid: 3939 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1668 + - uid: 3940 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1668 + - uid: 3941 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1668 + - uid: 3942 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1668 + - uid: 3972 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1668 + - uid: 3973 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1668 + - uid: 3974 + components: + - type: Transform + pos: -34.5,1.5 + parent: 1668 + - uid: 3975 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1668 + - uid: 3976 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1668 + - uid: 3977 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - uid: 3978 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1668 + - uid: 4222 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 1668 + - uid: 4223 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 1668 + - uid: 4224 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1668 + - uid: 4225 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1668 + - uid: 4265 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1668 + - uid: 4305 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1668 + - uid: 4306 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1668 + - uid: 4307 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1668 + - uid: 4308 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1668 + - uid: 4309 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1668 + - uid: 4310 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1668 + - uid: 4311 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1668 + - uid: 4312 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1668 + - uid: 4313 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1668 + - uid: 4314 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1668 + - uid: 4315 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1668 + - uid: 4316 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1668 + - uid: 4354 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 1668 + - uid: 4355 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1668 + - uid: 4365 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1668 + - uid: 4367 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1668 + - uid: 4651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1668 + - uid: 4652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1668 + - uid: 4653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1668 + - uid: 4663 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1668 + - uid: 4664 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1668 + - uid: 4665 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1668 + - uid: 4752 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1668 + - uid: 4753 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - uid: 5333 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1668 + - uid: 5334 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1668 + - uid: 5335 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1668 + - uid: 5880 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1668 + - uid: 5910 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 1668 + - uid: 5911 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 1668 + - uid: 5912 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 1668 + - uid: 5914 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 1668 + - uid: 5915 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 1668 + - uid: 5916 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 1668 + - uid: 5947 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 1668 + - uid: 5948 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 1668 + - uid: 5976 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1668 + - uid: 5977 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 1668 + - uid: 5978 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 1668 + - uid: 5979 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 1668 + - uid: 5980 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 1668 + - uid: 5981 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 1668 + - uid: 5982 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 1668 + - uid: 5990 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 1668 + - uid: 5991 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 1668 + - uid: 5992 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 1668 + - uid: 6024 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1668 + - uid: 6025 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 1668 + - uid: 6156 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1668 + - uid: 6157 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1668 + - uid: 6158 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1668 + - uid: 6159 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1668 + - uid: 6275 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1668 + - uid: 6288 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 1668 + - uid: 6289 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1668 + - uid: 6290 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 1668 + - uid: 6291 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 1668 + - uid: 6295 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 1668 + - uid: 6296 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 1668 + - uid: 6300 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 1668 + - uid: 6707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + - uid: 6770 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1668 + - uid: 6771 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1668 + - uid: 6783 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1668 + - uid: 6847 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1668 +- proto: RubberStampApproved + entities: + - uid: 6489 + components: + - type: Transform + pos: 25.503832,-7.398362 + parent: 1668 +- proto: RubberStampCentcom + entities: + - uid: 2917 + components: + - type: Transform + pos: 0.630217,1.1330963 + parent: 1668 + - uid: 3749 + components: + - type: Transform + pos: -20.5068,11.16328 + parent: 1668 +- proto: RubberStampDenied + entities: + - uid: 590 + components: + - type: Transform + pos: 25.691332,-7.585862 + parent: 1668 +- proto: RubberStampQm + entities: + - uid: 2234 + components: + - type: Transform + pos: -12.516554,9.632545 + parent: 1668 +- proto: RubberStampTrader + entities: + - uid: 2233 + components: + - type: Transform + pos: -12.532179,11.55442 + parent: 1668 +- proto: Screen + entities: + - uid: 6988 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1668 + - uid: 6989 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1668 +- proto: SecurityTechFab + entities: + - uid: 2874 + components: + - type: Transform + pos: 9.5,32.5 + parent: 1668 +- proto: SeismicCharge + entities: + - uid: 1079 + components: + - type: Transform + pos: -12.4071865,-3.4493918 + parent: 1668 + - uid: 3129 + components: + - type: Transform + pos: -12.5634365,-3.3712668 + parent: 1668 +- proto: ShowcaseRobotAntique + entities: + - uid: 6931 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1668 +- proto: ShuttersRadiationOpen + entities: + - uid: 6879 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1668 + - uid: 6880 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1668 + - uid: 6881 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1668 +- proto: SignalButton + entities: + - uid: 789 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 786: + - Pressed: Toggle + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + - uid: 1611 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1607: + - Pressed: Toggle + 1610: + - Pressed: Toggle + - uid: 1612 + components: + - type: Transform + pos: -14.5,29.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1608: + - Pressed: Toggle + 1609: + - Pressed: Toggle + - uid: 1804 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1552: + - Pressed: Toggle + - uid: 2712 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2150: + - Pressed: Toggle + 2149: + - Pressed: Toggle + 2148: + - Pressed: Toggle + 2147: + - Pressed: Toggle + 2146: + - Pressed: Toggle + - uid: 2920 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 3789: + - Pressed: Toggle + 3788: + - Pressed: Toggle + 3787: + - Pressed: Toggle + - uid: 2927 + components: + - type: MetaData + name: le funny admin button + - type: Transform + pos: 4.5,32.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2926: + - Pressed: Toggle + 2925: + - Pressed: Toggle + - uid: 2928 + components: + - type: MetaData + name: le funny admin button + - type: Transform + pos: 14.5,32.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2886: + - Pressed: Toggle + 2790: + - Pressed: Toggle + - uid: 5242 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 5238: + - Pressed: Toggle + 5237: + - Pressed: Toggle + 5236: + - Pressed: Toggle + 5235: + - Pressed: Toggle + 5234: + - Pressed: Toggle + 5239: + - Pressed: Toggle + 5241: + - Pressed: Toggle + 5240: + - Pressed: Toggle + - uid: 6442 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 6521: + - Pressed: Toggle + 6525: + - Pressed: Toggle + 6524: + - Pressed: Toggle + 6523: + - Pressed: Toggle + 6522: + - Pressed: Toggle +- proto: SignalButtonExt1 + entities: + - uid: 715 + components: + - type: MetaData + name: East Checkpoint Doors + - type: Transform + pos: 16.5,4.5 + parent: 1668 +- proto: SignalButtonExt2 + entities: + - uid: 721 + components: + - type: MetaData + name: West Checkpoint Doors + - type: Transform + pos: 8.5,4.5 + parent: 1668 +- proto: SignAtmosMinsky + entities: + - uid: 6888 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1668 +- proto: SignCargo + entities: + - uid: 2207 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1668 +- proto: SignChemistry1 + entities: + - uid: 6764 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1668 +- proto: SignCloning + entities: + - uid: 6763 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1668 +- proto: SignDirectionalEng + entities: + - uid: 2882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1668 + - uid: 6593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1668 +- proto: SignDoors + entities: + - uid: 545 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1668 + - uid: 546 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1668 + - uid: 547 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 548 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1668 + - uid: 795 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1668 + - uid: 796 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1668 + - uid: 2269 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1668 + - uid: 2270 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1668 + - uid: 2271 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1668 + - uid: 2272 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1668 + - uid: 2273 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1668 + - uid: 3607 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1668 + - uid: 3608 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1668 + - uid: 3609 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 3610 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 +- proto: SignElectricalMed + entities: + - uid: 1533 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - uid: 5351 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1668 +- proto: SignEngineering + entities: + - uid: 4970 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1668 +- proto: SignGravity + entities: + - uid: 5215 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 1668 +- proto: SignInterrogation + entities: + - uid: 2830 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1668 +- proto: SignKiddiePlaque + entities: + - uid: 4384 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1668 + - uid: 4385 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1668 + - uid: 4386 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1668 + - uid: 4387 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1668 +- proto: SignMedical + entities: + - uid: 736 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1668 + - uid: 6762 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1668 +- proto: SignPlaque + entities: + - uid: 3770 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1668 + - uid: 4381 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 1668 + - uid: 4382 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1668 + - uid: 6645 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1668 +- proto: SignRadiationMed + entities: + - uid: 5348 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1668 + - uid: 5349 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 1668 + - uid: 5350 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1668 +- proto: SignSecureMed + entities: + - uid: 776 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1668 + - uid: 3451 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1668 + - uid: 3713 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1668 + - uid: 3714 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1668 + - uid: 3871 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1668 + - uid: 3872 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1668 + - uid: 3873 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1668 + - uid: 4151 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1668 + - uid: 6443 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 1668 + - uid: 6444 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 1668 + - uid: 6445 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 1668 +- proto: SignSecureSmall + entities: + - uid: 3868 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1668 + - uid: 3869 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1668 +- proto: SignSpace + entities: + - uid: 1792 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1668 + - uid: 1793 + components: + - type: Transform + pos: -15.5,29.5 + parent: 1668 + - uid: 2741 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1668 + - uid: 5956 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 1668 + - uid: 5957 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 1668 + - uid: 6231 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - uid: 6232 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 1668 +- proto: Sink + entities: + - uid: 3425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1668 +- proto: SinkWide + entities: + - uid: 6619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1668 + - uid: 6620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 1668 + - uid: 6877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 1668 + - uid: 6878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 1668 +- proto: SMESBasic + entities: + - uid: 327 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 1668 + - uid: 5078 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1668 + - uid: 5079 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 1668 + - uid: 5080 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1668 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 3753 + components: + - type: Transform + pos: -18.510391,8.646521 + parent: 1668 +- proto: SoapDeluxe + entities: + - uid: 3424 + components: + - type: Transform + pos: -20.47715,15.560694 + parent: 1668 +- proto: soda_dispenser + entities: + - uid: 4427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1668 + - uid: 4429 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1668 +- proto: SpawnVehicleSecway + entities: + - uid: 2823 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1668 +- proto: SS13Memorial + entities: + - uid: 486 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1668 +- proto: StasisBed + entities: + - uid: 609 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1668 +- proto: StatueVenusBlue + entities: + - uid: 4180 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 1668 +- proto: StatueVenusRed + entities: + - uid: 4179 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 1668 +- proto: Stool + entities: + - uid: 2913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1668 +- proto: StoolBar + entities: + - uid: 4412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1668 + - uid: 4413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1668 + - uid: 4414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 1668 +- proto: StorageCanister + entities: + - uid: 3661 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - type: AtmosDevice + joinedGrid: 1668 +- proto: Stunbaton + entities: + - uid: 2746 + components: + - type: Transform + pos: 4.4667654,19.499214 + parent: 1668 +- proto: SubstationBasic + entities: + - uid: 1130 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1668 + - uid: 1802 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1668 + - uid: 1803 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1668 + - uid: 2199 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 1668 + - uid: 2521 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1668 + - uid: 3432 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - uid: 3949 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1668 + - uid: 4815 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1668 + - uid: 4816 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1668 + - uid: 5958 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 1668 +- proto: SuitStorageBasic + entities: + - uid: 1185 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1668 + - uid: 1188 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1668 + - uid: 3431 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1668 +- proto: SuitStorageCaptain + entities: + - uid: 3768 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1668 +- proto: SuitStorageCE + entities: + - uid: 6490 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1668 +- proto: SuitStorageCMO + entities: + - uid: 6497 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1668 +- proto: SuitStorageHOS + entities: + - uid: 6496 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1668 +- proto: SuitStorageRD + entities: + - uid: 6493 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1668 +- proto: SurveillanceCameraCommand + entities: + - uid: 6817 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Operator Room + - uid: 6818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + - uid: 6819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HighSec Storage Room + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Reception + - uid: 6821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Conference Room + - uid: 6822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Bedroom + - uid: 6825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT West Room + - uid: 6826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT East Room + - uid: 6827 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Central Room +- proto: SurveillanceCameraEngineering + entities: + - uid: 5407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + - uid: 6790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-20.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Eng Lobby + - uid: 6791 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Power Supply + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Power Generation + - uid: 6793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Generation + - uid: 6810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Substation + - uid: 6823 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Command Substation + - uid: 6824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West Substation + - uid: 6828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Medbay Substation + - uid: 6829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Eng Substation +- proto: SurveillanceCameraGeneral + entities: + - uid: 6830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals East + - uid: 6831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals West + - uid: 6832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway North + - uid: 6833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway West + - uid: 6834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking SouthWest + - uid: 6835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-31.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway SouthWest + - uid: 6836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-31.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway SouthEast + - uid: 6837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway East + - uid: 6838 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway NorthEast + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking West + - uid: 6840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Waiting Room West + - uid: 6841 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Hallway +- proto: SurveillanceCameraMedical + entities: + - uid: 6794 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + - uid: 6795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 6796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 6864 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 1668 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6871 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 1668 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 6869 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 1668 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 6870 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 1668 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 6873 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 1668 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 6867 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 1668 +- proto: SurveillanceCameraRouterService + entities: + - uid: 6872 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 1668 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 6868 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 1668 +- proto: SurveillanceCameraSecurity + entities: + - uid: 6765 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Service checkpoint + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court room north + - uid: 6802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court room south + - uid: 6803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Judge room + - uid: 6804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig lobby + - uid: 6805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden room + - uid: 6806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + - uid: 6807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig west + - uid: 6808 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 6809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig east + - uid: 6815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay checkpoint + - uid: 6816 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals checkpoint +- proto: SurveillanceCameraService + entities: + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 6798 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Canteen + - uid: 6799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 6800 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Jani closet +- proto: SurveillanceCameraSupply + entities: + - uid: 6811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo lobby + - uid: 6812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo command room + - uid: 6813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,31.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo bay north + - uid: 6814 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo bay south +- proto: SurveillanceCameraWirelessRouterConstructed + entities: + - uid: 6866 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 1668 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 6865 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 1668 +- proto: Table + entities: + - uid: 528 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1668 + - uid: 529 + components: + - type: Transform + pos: 31.5,5.5 + parent: 1668 + - uid: 530 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1668 + - uid: 631 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1668 + - uid: 632 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1668 + - uid: 633 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1668 + - uid: 807 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1668 + - uid: 808 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1668 + - uid: 1180 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1668 + - uid: 1181 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1668 + - uid: 2043 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1668 + - uid: 2163 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - uid: 2164 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1668 + - uid: 2165 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1668 + - uid: 2166 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1668 + - uid: 2210 + components: + - type: Transform + pos: -6.5,31.5 + parent: 1668 + - uid: 2211 + components: + - type: Transform + pos: -7.5,31.5 + parent: 1668 + - uid: 2212 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1668 + - uid: 2213 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1668 + - uid: 2214 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1668 + - uid: 2215 + components: + - type: Transform + pos: -11.5,31.5 + parent: 1668 + - uid: 2216 + components: + - type: Transform + pos: -10.5,31.5 + parent: 1668 + - uid: 2826 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1668 + - uid: 3142 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1668 + - uid: 3143 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1668 + - uid: 3182 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1668 + - uid: 3183 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1668 + - uid: 3260 + components: + - type: Transform + pos: 8.5,23.5 + parent: 1668 + - uid: 5244 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 1668 + - uid: 5245 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 1668 + - uid: 5247 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1668 + - uid: 5248 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 1668 + - uid: 5329 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 1668 + - uid: 5330 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 1668 + - uid: 5339 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1668 + - uid: 5421 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1668 + - uid: 6151 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 1668 + - uid: 6270 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1668 + - uid: 6571 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 1668 + - uid: 6572 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 1668 + - uid: 6581 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 1668 + - uid: 6582 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1668 + - uid: 6583 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 1668 + - uid: 6584 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1668 + - uid: 6624 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1668 + - uid: 6625 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1668 +- proto: TableCarpet + entities: + - uid: 699 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1668 + - uid: 6595 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1668 + - uid: 6606 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1668 +- proto: TableReinforced + entities: + - uid: 98 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1668 + - uid: 99 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1668 + - uid: 126 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1668 + - uid: 206 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1668 + - uid: 216 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1668 + - uid: 217 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1668 + - uid: 218 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1668 + - uid: 219 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1668 + - uid: 489 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1668 + - uid: 491 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1668 + - uid: 494 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1668 + - uid: 500 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1668 + - uid: 501 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1668 + - uid: 503 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1668 + - uid: 504 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1668 + - uid: 505 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1668 + - uid: 513 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1668 + - uid: 514 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1668 + - uid: 596 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1668 + - uid: 597 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1668 + - uid: 598 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1668 + - uid: 599 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1668 + - uid: 600 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1668 + - uid: 601 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1668 + - uid: 613 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1668 + - uid: 614 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1668 + - uid: 615 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1668 + - uid: 618 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1668 + - uid: 641 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 642 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1668 + - uid: 643 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1668 + - uid: 645 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1668 + - uid: 646 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1668 + - uid: 647 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - uid: 648 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1668 + - uid: 738 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1668 + - uid: 770 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1668 + - uid: 771 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1668 + - uid: 794 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1668 + - uid: 805 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1668 + - uid: 809 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1668 + - uid: 810 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1668 + - uid: 811 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1668 + - uid: 812 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1668 + - uid: 1194 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1668 + - uid: 1427 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1668 + - uid: 1433 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1668 + - uid: 1617 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1668 + - uid: 1618 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1668 + - uid: 1636 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1668 + - uid: 1637 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1668 + - uid: 1638 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1668 + - uid: 1639 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1668 + - uid: 1640 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1668 + - uid: 1641 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1668 + - uid: 1642 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1668 + - uid: 1643 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1668 + - uid: 1654 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1668 + - uid: 1655 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1668 + - uid: 1656 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - uid: 1657 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1668 + - uid: 2423 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1668 + - uid: 2424 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1668 + - uid: 2720 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1668 + - uid: 2721 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1668 + - uid: 2822 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1668 + - uid: 2875 + components: + - type: Transform + pos: 8.5,29.5 + parent: 1668 + - uid: 2878 + components: + - type: Transform + pos: 8.5,32.5 + parent: 1668 + - uid: 2879 + components: + - type: Transform + pos: 10.5,32.5 + parent: 1668 + - uid: 2891 + components: + - type: Transform + pos: 2.5,30.5 + parent: 1668 + - uid: 2892 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1668 + - uid: 2893 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1668 + - uid: 2894 + components: + - type: Transform + pos: 16.5,30.5 + parent: 1668 + - uid: 2895 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1668 + - uid: 2896 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1668 + - uid: 3079 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1668 + - uid: 3255 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1668 + - uid: 3412 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1668 + - uid: 3413 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1668 + - uid: 3414 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1668 + - uid: 3415 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - uid: 3416 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1668 + - uid: 3632 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1668 + - uid: 3634 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1668 + - uid: 3635 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1668 + - uid: 3636 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1668 + - uid: 3637 + components: + - type: Transform + pos: -12.5,6.5 + parent: 1668 + - uid: 3697 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1668 + - uid: 3798 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1668 + - uid: 3799 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1668 + - uid: 3800 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1668 + - uid: 3801 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1668 + - uid: 3802 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1668 + - uid: 3803 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1668 + - uid: 3804 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1668 + - uid: 3805 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1668 + - uid: 3806 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1668 + - uid: 3807 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1668 + - uid: 3808 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1668 + - uid: 3809 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1668 + - uid: 3810 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1668 + - uid: 3811 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1668 + - uid: 3812 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1668 + - uid: 3813 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1668 + - uid: 3814 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 1668 + - uid: 3815 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1668 + - uid: 3816 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 1668 + - uid: 3817 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1668 + - uid: 3819 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1668 + - uid: 3820 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1668 + - uid: 3822 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1668 + - uid: 4256 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1668 + - uid: 4263 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1668 + - uid: 4344 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1668 + - uid: 4347 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 1668 + - uid: 4348 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 1668 + - uid: 4349 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 1668 + - uid: 4350 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1668 + - uid: 4351 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1668 + - uid: 4352 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1668 + - uid: 4430 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 1668 + - uid: 4431 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 1668 + - uid: 4432 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1668 + - uid: 4433 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1668 + - uid: 4452 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1668 + - uid: 4459 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1668 + - uid: 4466 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 1668 + - uid: 4467 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1668 + - uid: 4582 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 1668 + - uid: 4583 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 1668 + - uid: 4584 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 1668 + - uid: 4586 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1668 + - uid: 4587 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 1668 + - uid: 4588 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1668 + - uid: 4749 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 5312 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1668 + - uid: 5313 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1668 + - uid: 5315 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 1668 + - uid: 5316 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1668 + - uid: 5317 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1668 + - uid: 6453 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 1668 + - uid: 6454 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 1668 + - uid: 6455 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 1668 + - uid: 6456 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 1668 + - uid: 6457 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 1668 + - uid: 6458 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 1668 + - uid: 6459 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 1668 + - uid: 6460 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 1668 + - uid: 6461 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 1668 + - uid: 6462 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 1668 + - uid: 6767 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1668 +- proto: TableWood + entities: + - uid: 2352 + components: + - type: Transform + pos: 32.5,15.5 + parent: 1668 + - uid: 2353 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1668 + - uid: 2354 + components: + - type: Transform + pos: 32.5,17.5 + parent: 1668 + - uid: 2355 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1668 + - uid: 2356 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1668 + - uid: 2357 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1668 + - uid: 2358 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1668 + - uid: 2359 + components: + - type: Transform + pos: 29.5,20.5 + parent: 1668 + - uid: 2360 + components: + - type: Transform + pos: 29.5,21.5 + parent: 1668 + - uid: 2361 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1668 + - uid: 2362 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1668 + - uid: 2363 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1668 + - uid: 2364 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1668 + - uid: 2365 + components: + - type: Transform + pos: 34.5,23.5 + parent: 1668 + - uid: 2366 + components: + - type: Transform + pos: 30.5,23.5 + parent: 1668 + - uid: 2367 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1668 + - uid: 2368 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1668 + - uid: 2369 + components: + - type: Transform + pos: 26.5,23.5 + parent: 1668 + - uid: 2411 + components: + - type: Transform + pos: 27.5,17.5 + parent: 1668 + - uid: 2412 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1668 + - uid: 2413 + components: + - type: Transform + pos: 30.5,17.5 + parent: 1668 + - uid: 2414 + components: + - type: Transform + pos: 29.5,17.5 + parent: 1668 + - uid: 2435 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1668 + - uid: 2436 + components: + - type: Transform + pos: 34.5,11.5 + parent: 1668 + - uid: 2437 + components: + - type: Transform + pos: 34.5,12.5 + parent: 1668 + - uid: 2486 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1668 + - uid: 2487 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1668 + - uid: 2488 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1668 + - uid: 3394 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1668 + - uid: 3395 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1668 + - uid: 3396 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1668 + - uid: 3397 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1668 + - uid: 3398 + components: + - type: Transform + pos: -26.5,12.5 + parent: 1668 + - uid: 3399 + components: + - type: Transform + pos: -25.5,12.5 + parent: 1668 + - uid: 3400 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1668 + - uid: 3401 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1668 + - uid: 3402 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1668 + - uid: 3403 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1668 + - uid: 3404 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1668 + - uid: 3405 + components: + - type: Transform + pos: -20.5,10.5 + parent: 1668 + - uid: 3406 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1668 + - uid: 3407 + components: + - type: Transform + pos: -20.5,12.5 + parent: 1668 + - uid: 3409 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1668 + - uid: 3410 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1668 + - uid: 3411 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1668 + - uid: 3417 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1668 + - uid: 3418 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1668 + - uid: 3445 + components: + - type: Transform + pos: -23.5,10.5 + parent: 1668 + - uid: 3446 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1668 + - uid: 3829 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1668 + - uid: 3830 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 1668 + - uid: 3831 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1668 + - uid: 3832 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1668 + - uid: 3833 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1668 + - uid: 3834 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1668 + - uid: 3835 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1668 + - uid: 3836 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1668 + - uid: 4184 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 1668 + - uid: 4369 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 1668 + - uid: 4370 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 1668 + - uid: 4371 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1668 + - uid: 4372 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1668 + - uid: 4373 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1668 + - uid: 4374 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1668 + - uid: 4418 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1668 + - uid: 4419 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1668 + - uid: 4420 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1668 + - uid: 4421 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1668 + - uid: 4422 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1668 + - uid: 4423 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1668 + - uid: 4424 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 1668 + - uid: 6728 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1668 +- proto: TelecomServerFilled + entities: + - uid: 3121 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1668 +- proto: Telecrystal5 + entities: + - uid: 3772 + components: + - type: Transform + pos: -10.611931,6.5603595 + parent: 1668 +- proto: TintedWindow + entities: + - uid: 2752 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1668 + - uid: 2760 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1668 +- proto: ToiletEmpty + entities: + - uid: 3420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1668 +- proto: ToolboxMechanicalFilled + entities: + - uid: 3900 + components: + - type: Transform + pos: -12.610057,-7.2428913 + parent: 1668 +- proto: ToyFigurineAtmosTech + entities: + - uid: 6889 + components: + - type: Transform + pos: 16.377594,-29.299969 + parent: 1668 +- proto: ToyFigurineBartender + entities: + - uid: 6898 + components: + - type: Transform + pos: 6.5385118,-24.247501 + parent: 1668 +- proto: ToyFigurineBoxer + entities: + - uid: 793 + components: + - type: Transform + pos: 2.494053,-15.45146 + parent: 1668 +- proto: ToyFigurineCaptain + entities: + - uid: 1189 + components: + - type: Transform + pos: -12.035681,6.6117244 + parent: 1668 +- proto: ToyFigurineCargoTech + entities: + - uid: 6897 + components: + - type: Transform + pos: -5.366757,26.262602 + parent: 1668 +- proto: ToyFigurineChaplain + entities: + - uid: 1186 + components: + - type: Transform + pos: 2.6200008,16.762861 + parent: 1668 +- proto: ToyFigurineChef + entities: + - uid: 6899 + components: + - type: Transform + pos: -10.860091,-28.497501 + parent: 1668 +- proto: ToyFigurineChemist + entities: + - uid: 6901 + components: + - type: Transform + pos: 3.7089076,-9.834605 + parent: 1668 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 6892 + components: + - type: Transform + pos: 27.221512,-23.216656 + parent: 1668 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 6900 + components: + - type: Transform + pos: 13.343676,-12.106804 + parent: 1668 +- proto: ToyFigurineClown + entities: + - uid: 6907 + components: + - type: Transform + pos: -8.574588,-33.40033 + parent: 1668 +- proto: ToyFigurineDetective + entities: + - uid: 2145 + components: + - type: Transform + pos: 8.249651,23.679073 + parent: 1668 +- proto: ToyFigurineEngineer + entities: + - uid: 6891 + components: + - type: Transform + pos: 26.955887,-23.01353 + parent: 1668 +- proto: ToyFigurineGreytider + entities: + - uid: 2142 + components: + - type: Transform + pos: -1.5147417,19.684673 + parent: 1668 +- proto: ToyFigurineHamlet + entities: + - uid: 6503 + components: + - type: Transform + pos: -9.969621,-28.458797 + parent: 1668 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 6500 + components: + - type: Transform + pos: 2.714695,-2.0789247 + parent: 1668 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 592 + components: + - type: Transform + pos: 8.675076,17.818161 + parent: 1668 +- proto: ToyFigurineJanitor + entities: + - uid: 6905 + components: + - type: Transform + pos: -18.176952,-31.706894 + parent: 1668 +- proto: ToyFigurineLawyer + entities: + - uid: 6904 + components: + - type: Transform + pos: 19.429096,21.772528 + parent: 1668 +- proto: ToyFigurineLibrarian + entities: + - uid: 6903 + components: + - type: Transform + pos: 18.65788,12.674046 + parent: 1668 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 6902 + components: + - type: Transform + pos: 9.723116,-4.147105 + parent: 1668 +- proto: ToyFigurineMime + entities: + - uid: 6908 + components: + - type: Transform + pos: 9.395194,-30.337831 + parent: 1668 +- proto: ToyFigurineMusician + entities: + - uid: 6499 + components: + - type: Transform + pos: 0.78786826,-28.113647 + parent: 1668 +- proto: ToyFigurineParamedic + entities: + - uid: 3427 + components: + - type: Transform + pos: 10.656263,-7.212401 + parent: 1668 +- proto: ToyFigurinePassenger + entities: + - uid: 3428 + components: + - type: Transform + pos: 21.387323,5.715851 + parent: 1668 +- proto: ToyFigurineQuartermaster + entities: + - uid: 6896 + components: + - type: Transform + pos: -15.016072,14.885906 + parent: 1668 +- proto: ToyFigurineRatKing + entities: + - uid: 6906 + components: + - type: Transform + pos: 18.512383,13.407988 + parent: 1668 +- proto: ToyFigurineResearchDirector + entities: + - uid: 3429 + components: + - type: Transform + pos: -32.494865,6.5819006 + parent: 1668 +- proto: ToyFigurineSalvage + entities: + - uid: 6895 + components: + - type: Transform + pos: -5.514065,26.593782 + parent: 1668 +- proto: ToyFigurineSecurity + entities: + - uid: 6488 + components: + - type: Transform + pos: 10.024659,25.7943 + parent: 1668 + - uid: 6893 + components: + - type: Transform + pos: 27.445951,-11.38564 + parent: 1668 +- proto: ToyFigurineWarden + entities: + - uid: 6894 + components: + - type: Transform + pos: 4.3459373,19.764877 + parent: 1668 +- proto: ToyRubberDuck + entities: + - uid: 3423 + components: + - type: Transform + pos: -20.47715,15.513819 + parent: 1668 +- proto: TwoWayLever + entities: + - uid: 1588 + components: + - type: Transform + pos: -12.5,23.5 + parent: 1668 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 1576: + - Left: Forward + - Right: Reverse + - Middle: Off + 1577: + - Left: Forward + - Right: Reverse + - Middle: Off + 1578: + - Left: Forward + - Right: Reverse + - Middle: Off + 1579: + - Left: Forward + - Right: Reverse + - Middle: Off + 1580: + - Left: Forward + - Right: Reverse + - Middle: Off + 1581: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 1589 + components: + - type: Transform + pos: -12.5,29.5 + parent: 1668 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 1582: + - Left: Forward + - Right: Reverse + - Middle: Off + 1583: + - Left: Forward + - Right: Reverse + - Middle: Off + 1584: + - Left: Forward + - Right: Reverse + - Middle: Off + 1585: + - Left: Forward + - Right: Reverse + - Middle: Off + 1586: + - Left: Forward + - Right: Reverse + - Middle: Off + 1587: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 5906 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 5902: + - Left: Forward + - Right: Reverse + - Middle: Off + 5903: + - Left: Forward + - Right: Reverse + - Middle: Off + 5904: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 5907 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 5908: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: VehicleKeySecway + entities: + - uid: 3149 + components: + - type: Transform + pos: 10.387553,25.600338 + parent: 1668 +- proto: VendingMachineAmmo + entities: + - uid: 2821 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1668 +- proto: VendingMachineBooze + entities: + - uid: 3408 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1668 + - uid: 4415 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1668 + - uid: 4416 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 1668 +- proto: VendingMachineCargoDrobe + entities: + - uid: 2209 + components: + - type: Transform + pos: -5.5,31.5 + parent: 1668 +- proto: VendingMachineCart + entities: + - uid: 764 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 1668 +- proto: VendingMachineCentDrobe + entities: + - uid: 649 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1668 + - uid: 2444 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1668 +- proto: VendingMachineChang + entities: + - uid: 1406 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1668 + - uid: 2445 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1668 + - uid: 6573 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 1668 +- proto: VendingMachineChefvend + entities: + - uid: 4262 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 1668 +- proto: VendingMachineChemicals + entities: + - uid: 644 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1668 +- proto: VendingMachineCigs + entities: + - uid: 2439 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1668 + - uid: 6574 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 1668 +- proto: VendingMachineClothing + entities: + - uid: 2738 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1668 + - uid: 6150 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 1668 +- proto: VendingMachineCoffee + entities: + - uid: 2438 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1668 + - uid: 5463 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1668 + - uid: 6591 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 1668 +- proto: VendingMachineCola + entities: + - uid: 2192 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 4403 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1668 +- proto: VendingMachineColaBlack + entities: + - uid: 6729 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1668 +- proto: VendingMachineCondiments + entities: + - uid: 6626 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1668 +- proto: VendingMachineDinnerware + entities: + - uid: 4578 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 1668 +- proto: VendingMachineDiscount + entities: + - uid: 3185 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1668 + - uid: 6651 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1668 +- proto: VendingMachineDonut + entities: + - uid: 3186 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1668 +- proto: VendingMachineEngivend + entities: + - uid: 5250 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 1668 +- proto: VendingMachineGames + entities: + - uid: 6608 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1668 +- proto: VendingMachineLawDrobe + entities: + - uid: 2489 + components: + - type: Transform + pos: 18.5,23.5 + parent: 1668 +- proto: VendingMachineMedical + entities: + - uid: 617 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1668 + - uid: 6601 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1668 +- proto: VendingMachinePwrGame + entities: + - uid: 6634 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1668 +- proto: VendingMachineSalvage + entities: + - uid: 6938 + components: + - type: Transform + pos: -8.5,31.5 + parent: 1668 +- proto: VendingMachineSec + entities: + - uid: 2820 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1668 + - uid: 3259 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1668 + - uid: 5457 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1668 +- proto: VendingMachineSnack + entities: + - uid: 4166 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1668 + - uid: 4401 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1668 +- proto: VendingMachineSnackOrange + entities: + - uid: 6726 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1668 +- proto: VendingMachineSnackTeal + entities: + - uid: 6727 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 +- proto: VendingMachineSoda + entities: + - uid: 6648 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1668 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6556 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 1668 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 2045 + components: + - type: Transform + pos: -3.5,23.5 + parent: 1668 + - uid: 4286 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1668 + - uid: 6555 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 1668 +- proto: VendingMachineTheater + entities: + - uid: 2448 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1668 +- proto: VendingMachineWinter + entities: + - uid: 2443 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1668 +- proto: VendingMachineYouTool + entities: + - uid: 5251 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1668 +- proto: WallmountTelescreen + entities: + - uid: 3449 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1668 +- proto: WallmountTelevision + entities: + - uid: 3452 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1668 +- proto: WallRiveted + entities: + - uid: 1 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1668 + - uid: 2 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1668 + - uid: 3 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1668 + - uid: 4 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1668 + - uid: 5 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1668 + - uid: 6 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1668 + - uid: 7 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1668 + - uid: 8 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - uid: 9 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 + - uid: 10 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1668 + - uid: 11 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1668 + - uid: 12 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1668 + - uid: 13 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1668 + - uid: 14 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1668 + - uid: 70 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1668 + - uid: 71 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1668 + - uid: 72 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1668 + - uid: 73 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1668 + - uid: 74 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1668 + - uid: 75 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 78 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1668 + - uid: 86 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1668 + - uid: 87 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1668 + - uid: 88 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1668 + - uid: 89 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1668 + - uid: 90 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1668 + - uid: 91 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1668 + - uid: 96 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1668 + - uid: 97 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1668 + - uid: 100 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1668 + - uid: 101 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1668 + - uid: 102 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1668 + - uid: 113 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1668 + - uid: 114 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1668 + - uid: 115 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1668 + - uid: 116 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1668 + - uid: 117 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1668 + - uid: 118 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1668 + - uid: 119 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1668 + - uid: 120 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1668 + - uid: 121 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1668 + - uid: 122 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1668 + - uid: 137 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1668 + - uid: 138 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1668 + - uid: 139 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1668 + - uid: 140 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1668 + - uid: 141 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1668 + - uid: 142 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1668 + - uid: 143 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1668 + - uid: 144 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1668 + - uid: 145 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1668 + - uid: 146 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1668 + - uid: 147 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1668 + - uid: 174 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1668 + - uid: 175 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 176 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1668 + - uid: 177 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1668 + - uid: 178 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1668 + - uid: 179 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1668 + - uid: 180 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1668 + - uid: 181 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1668 + - uid: 182 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1668 + - uid: 184 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1668 + - uid: 185 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1668 + - uid: 187 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1668 + - uid: 188 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1668 + - uid: 209 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1668 + - uid: 210 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1668 + - uid: 211 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1668 + - uid: 213 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1668 + - uid: 229 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1668 + - uid: 230 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1668 + - uid: 231 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1668 + - uid: 232 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1668 + - uid: 233 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1668 + - uid: 234 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1668 + - uid: 235 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1668 + - uid: 236 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1668 + - uid: 237 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1668 + - uid: 248 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1668 + - uid: 249 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1668 + - uid: 250 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1668 + - uid: 251 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1668 + - uid: 252 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1668 + - uid: 253 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1668 + - uid: 256 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1668 + - uid: 257 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1668 + - uid: 258 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1668 + - uid: 273 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1668 + - uid: 274 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1668 + - uid: 276 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1668 + - uid: 277 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1668 + - uid: 293 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1668 + - uid: 294 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1668 + - uid: 295 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1668 + - uid: 296 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1668 + - uid: 300 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1668 + - uid: 315 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1668 + - uid: 316 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1668 + - uid: 317 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1668 + - uid: 318 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1668 + - uid: 319 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1668 + - uid: 320 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1668 + - uid: 321 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1668 + - uid: 322 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1668 + - uid: 323 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1668 + - uid: 324 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1668 + - uid: 325 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1668 + - uid: 326 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1668 + - uid: 328 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1668 + - uid: 329 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1668 + - uid: 330 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1668 + - uid: 331 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1668 + - uid: 332 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1668 + - uid: 333 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1668 + - uid: 334 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1668 + - uid: 335 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1668 + - uid: 346 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1668 + - uid: 349 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1668 + - uid: 350 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1668 + - uid: 351 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1668 + - uid: 352 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1668 + - uid: 353 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1668 + - uid: 354 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1668 + - uid: 356 + components: + - type: Transform + pos: 32.5,6.5 + parent: 1668 + - uid: 357 + components: + - type: Transform + pos: 33.5,6.5 + parent: 1668 + - uid: 358 + components: + - type: Transform + pos: 34.5,6.5 + parent: 1668 + - uid: 359 + components: + - type: Transform + pos: 35.5,6.5 + parent: 1668 + - uid: 362 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1668 + - uid: 363 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1668 + - uid: 364 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1668 + - uid: 365 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1668 + - uid: 366 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1668 + - uid: 367 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1668 + - uid: 368 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1668 + - uid: 369 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1668 + - uid: 370 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1668 + - uid: 371 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1668 + - uid: 372 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1668 + - uid: 373 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1668 + - uid: 374 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1668 + - uid: 375 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1668 + - uid: 376 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1668 + - uid: 377 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1668 + - uid: 378 + components: + - type: Transform + pos: 34.5,9.5 + parent: 1668 + - uid: 379 + components: + - type: Transform + pos: 35.5,9.5 + parent: 1668 + - uid: 380 + components: + - type: Transform + pos: 35.5,8.5 + parent: 1668 + - uid: 381 + components: + - type: Transform + pos: 35.5,7.5 + parent: 1668 + - uid: 382 + components: + - type: Transform + pos: 34.5,8.5 + parent: 1668 + - uid: 383 + components: + - type: Transform + pos: 34.5,7.5 + parent: 1668 + - uid: 384 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1668 + - uid: 385 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1668 + - uid: 386 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 1668 + - uid: 387 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 1668 + - uid: 388 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1668 + - uid: 389 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1668 + - uid: 390 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 1668 + - uid: 391 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1668 + - uid: 392 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1668 + - uid: 394 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 1668 + - uid: 395 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1668 + - uid: 397 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1668 + - uid: 398 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1668 + - uid: 399 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1668 + - uid: 400 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 1668 + - uid: 402 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1668 + - uid: 403 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1668 + - uid: 404 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1668 + - uid: 405 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 1668 + - uid: 406 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1668 + - uid: 407 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1668 + - uid: 409 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1668 + - uid: 410 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1668 + - uid: 411 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1668 + - uid: 412 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1668 + - uid: 413 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1668 + - uid: 414 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1668 + - uid: 415 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1668 + - uid: 416 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1668 + - uid: 417 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1668 + - uid: 418 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1668 + - uid: 419 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 1668 + - uid: 420 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1668 + - uid: 421 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 1668 + - uid: 422 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 1668 + - uid: 423 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 1668 + - uid: 424 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1668 + - uid: 425 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1668 + - uid: 426 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1668 + - uid: 427 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1668 + - uid: 428 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1668 + - uid: 429 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1668 + - uid: 430 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 1668 + - uid: 431 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 1668 + - uid: 432 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 1668 + - uid: 433 + components: + - type: Transform + pos: 35.5,0.5 + parent: 1668 + - uid: 468 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1668 + - uid: 470 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1668 + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1668 + - uid: 659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1668 + - uid: 660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1668 + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1668 + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1668 + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1668 + - uid: 664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1668 + - uid: 665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1668 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1668 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1668 + - uid: 668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1668 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1668 + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1668 + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1668 + - uid: 689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1668 + - uid: 690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1668 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1668 + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1668 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1668 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1668 + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1668 + - uid: 696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1668 + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1668 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1668 + - uid: 724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + - uid: 726 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1668 + - uid: 727 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1668 + - uid: 728 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1668 + - uid: 745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1668 + - uid: 746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1668 + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1668 + - uid: 748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1668 + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1668 + - uid: 750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1668 + - uid: 751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1668 + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1668 + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1668 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1668 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1668 + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1668 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1668 + - uid: 806 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 1668 + - uid: 826 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1668 + - uid: 827 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1668 + - uid: 832 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1668 + - uid: 835 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1668 + - uid: 837 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1668 + - uid: 838 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1668 + - uid: 839 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1668 + - uid: 840 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1668 + - uid: 841 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1668 + - uid: 842 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1668 + - uid: 843 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1668 + - uid: 844 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1668 + - uid: 851 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1668 + - uid: 898 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 + - uid: 1080 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1668 + - uid: 1081 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1668 + - uid: 1082 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1668 + - uid: 1083 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1668 + - uid: 1084 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1668 + - uid: 1085 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1668 + - uid: 1132 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1668 + - uid: 1133 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1668 + - uid: 1134 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1668 + - uid: 1135 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1668 + - uid: 1136 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 1668 + - uid: 1138 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1668 + - uid: 1139 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1668 + - uid: 1141 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 1668 + - uid: 1142 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 1668 + - uid: 1143 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 1668 + - uid: 1144 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 1668 + - uid: 1145 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 1668 + - uid: 1152 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1668 + - uid: 1183 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 1668 + - uid: 1184 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 1668 + - uid: 1322 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1668 + - uid: 1392 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 1668 + - uid: 1394 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 1668 + - uid: 1395 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 1668 + - uid: 1408 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1668 + - uid: 1409 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1668 + - uid: 1410 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1668 + - uid: 1411 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1668 + - uid: 1412 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1668 + - uid: 1413 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1668 + - uid: 1414 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1668 + - uid: 1415 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1668 + - uid: 1416 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1668 + - uid: 1490 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1668 + - uid: 1491 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1668 + - uid: 1492 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1668 + - uid: 1493 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1668 + - uid: 1494 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1668 + - uid: 1495 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1668 + - uid: 1496 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1668 + - uid: 1497 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1668 + - uid: 1498 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1668 + - uid: 1499 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1668 + - uid: 1500 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1668 + - uid: 1501 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1668 + - uid: 1502 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1668 + - uid: 1503 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1668 + - uid: 1504 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1668 + - uid: 1505 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1668 + - uid: 1506 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1668 + - uid: 1507 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1668 + - uid: 1508 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1668 + - uid: 1509 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1668 + - uid: 1510 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1668 + - uid: 1511 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1668 + - uid: 1512 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1668 + - uid: 1523 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1668 + - uid: 1524 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1668 + - uid: 1525 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1668 + - uid: 1526 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1668 + - uid: 1527 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1668 + - uid: 1528 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1668 + - uid: 1529 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1668 + - uid: 1530 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1668 + - uid: 1531 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1668 + - uid: 1532 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1668 + - uid: 1535 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - uid: 1536 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1668 + - uid: 1537 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1668 + - uid: 1538 + components: + - type: Transform + pos: -14.5,19.5 + parent: 1668 + - uid: 1553 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1668 + - uid: 1554 + components: + - type: Transform + pos: -4.5,22.5 + parent: 1668 + - uid: 1555 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1668 + - uid: 1556 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1668 + - uid: 1557 + components: + - type: Transform + pos: -4.5,25.5 + parent: 1668 + - uid: 1558 + components: + - type: Transform + pos: -4.5,26.5 + parent: 1668 + - uid: 1559 + components: + - type: Transform + pos: -4.5,27.5 + parent: 1668 + - uid: 1560 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1668 + - uid: 1561 + components: + - type: Transform + pos: -4.5,29.5 + parent: 1668 + - uid: 1562 + components: + - type: Transform + pos: -4.5,30.5 + parent: 1668 + - uid: 1563 + components: + - type: Transform + pos: -4.5,31.5 + parent: 1668 + - uid: 1564 + components: + - type: Transform + pos: -4.5,32.5 + parent: 1668 + - uid: 1565 + components: + - type: Transform + pos: -5.5,32.5 + parent: 1668 + - uid: 1567 + components: + - type: Transform + pos: -11.5,32.5 + parent: 1668 + - uid: 1568 + components: + - type: Transform + pos: -11.5,34.5 + parent: 1668 + - uid: 1569 + components: + - type: Transform + pos: -7.5,33.5 + parent: 1668 + - uid: 1570 + components: + - type: Transform + pos: -7.5,32.5 + parent: 1668 + - uid: 1571 + components: + - type: Transform + pos: -11.5,33.5 + parent: 1668 + - uid: 1573 + components: + - type: Transform + pos: -13.5,32.5 + parent: 1668 + - uid: 1574 + components: + - type: Transform + pos: -14.5,32.5 + parent: 1668 + - uid: 1575 + components: + - type: Transform + pos: -14.5,31.5 + parent: 1668 + - uid: 1664 + components: + - type: Transform + pos: -7.5,34.5 + parent: 1668 + - uid: 1665 + components: + - type: Transform + pos: -8.5,34.5 + parent: 1668 + - uid: 1666 + components: + - type: Transform + pos: -10.5,34.5 + parent: 1668 + - uid: 1794 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1668 + - uid: 1795 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1668 + - uid: 1796 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1668 + - uid: 1797 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1668 + - uid: 1798 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1668 + - uid: 1799 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - uid: 1800 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1668 + - uid: 1801 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1668 + - uid: 1994 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1668 + - uid: 1995 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1668 + - uid: 1996 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1668 + - uid: 1997 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1668 + - uid: 1998 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1668 + - uid: 2005 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1668 + - uid: 2006 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1668 + - uid: 2007 + components: + - type: Transform + pos: -0.5,25.5 + parent: 1668 + - uid: 2008 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1668 + - uid: 2009 + components: + - type: Transform + pos: -3.5,25.5 + parent: 1668 + - uid: 2238 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1668 + - uid: 2239 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1668 + - uid: 2245 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1668 + - uid: 2251 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1668 + - uid: 2252 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1668 + - uid: 2253 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1668 + - uid: 2254 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1668 + - uid: 2255 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1668 + - uid: 2256 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1668 + - uid: 2257 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1668 + - uid: 2258 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1668 + - uid: 2259 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1668 + - uid: 2260 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1668 + - uid: 2261 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1668 + - uid: 2262 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1668 + - uid: 2263 + components: + - type: Transform + pos: 35.5,10.5 + parent: 1668 + - uid: 2264 + components: + - type: Transform + pos: 35.5,11.5 + parent: 1668 + - uid: 2265 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1668 + - uid: 2266 + components: + - type: Transform + pos: 35.5,13.5 + parent: 1668 + - uid: 2267 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1668 + - uid: 2268 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1668 + - uid: 2274 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1668 + - uid: 2275 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1668 + - uid: 2292 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1668 + - uid: 2293 + components: + - type: Transform + pos: 35.5,17.5 + parent: 1668 + - uid: 2294 + components: + - type: Transform + pos: 35.5,18.5 + parent: 1668 + - uid: 2295 + components: + - type: Transform + pos: 35.5,19.5 + parent: 1668 + - uid: 2296 + components: + - type: Transform + pos: 35.5,20.5 + parent: 1668 + - uid: 2297 + components: + - type: Transform + pos: 35.5,21.5 + parent: 1668 + - uid: 2298 + components: + - type: Transform + pos: 35.5,22.5 + parent: 1668 + - uid: 2301 + components: + - type: Transform + pos: 17.5,18.5 + parent: 1668 + - uid: 2302 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1668 + - uid: 2303 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1668 + - uid: 2304 + components: + - type: Transform + pos: 17.5,21.5 + parent: 1668 + - uid: 2305 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1668 + - uid: 2306 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1668 + - uid: 2307 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1668 + - uid: 2308 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1668 + - uid: 2309 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1668 + - uid: 2310 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1668 + - uid: 2311 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1668 + - uid: 2312 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1668 + - uid: 2313 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1668 + - uid: 2314 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1668 + - uid: 2315 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1668 + - uid: 2318 + components: + - type: Transform + pos: 35.5,23.5 + parent: 1668 + - uid: 2319 + components: + - type: Transform + pos: 35.5,24.5 + parent: 1668 + - uid: 2320 + components: + - type: Transform + pos: 34.5,24.5 + parent: 1668 + - uid: 2321 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1668 + - uid: 2322 + components: + - type: Transform + pos: 32.5,24.5 + parent: 1668 + - uid: 2323 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1668 + - uid: 2324 + components: + - type: Transform + pos: 30.5,24.5 + parent: 1668 + - uid: 2325 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1668 + - uid: 2326 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1668 + - uid: 2327 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1668 + - uid: 2328 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1668 + - uid: 2329 + components: + - type: Transform + pos: 25.5,24.5 + parent: 1668 + - uid: 2330 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1668 + - uid: 2331 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1668 + - uid: 2332 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1668 + - uid: 2333 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1668 + - uid: 2334 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1668 + - uid: 2335 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1668 + - uid: 2336 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1668 + - uid: 2350 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 1668 + - uid: 2501 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1668 + - uid: 2502 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1668 + - uid: 2503 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1668 + - uid: 2504 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1668 + - uid: 2508 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1668 + - uid: 2514 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1668 + - uid: 2515 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1668 + - uid: 2516 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1668 + - uid: 2517 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1668 + - uid: 2518 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1668 + - uid: 2519 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1668 + - uid: 2520 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1668 + - uid: 2547 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1668 + - uid: 2548 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1668 + - uid: 2549 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1668 + - uid: 2550 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1668 + - uid: 2551 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1668 + - uid: 2552 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1668 + - uid: 2559 + components: + - type: Transform + pos: 16.5,23.5 + parent: 1668 + - uid: 2560 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1668 + - uid: 2561 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1668 + - uid: 2748 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1668 + - uid: 2749 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1668 + - uid: 2750 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1668 + - uid: 2751 + components: + - type: Transform + pos: 4.5,23.5 + parent: 1668 + - uid: 2753 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1668 + - uid: 2757 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1668 + - uid: 2759 + components: + - type: Transform + pos: 7.5,23.5 + parent: 1668 + - uid: 2761 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1668 + - uid: 2766 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1668 + - uid: 2767 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1668 + - uid: 2768 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1668 + - uid: 2769 + components: + - type: Transform + pos: 15.5,26.5 + parent: 1668 + - uid: 2770 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1668 + - uid: 2783 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1668 + - uid: 2788 + components: + - type: Transform + pos: 11.5,30.5 + parent: 1668 + - uid: 2789 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1668 + - uid: 2793 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1668 + - uid: 2794 + components: + - type: Transform + pos: 14.5,33.5 + parent: 1668 + - uid: 2795 + components: + - type: Transform + pos: 13.5,33.5 + parent: 1668 + - uid: 2796 + components: + - type: Transform + pos: 12.5,33.5 + parent: 1668 + - uid: 2797 + components: + - type: Transform + pos: 11.5,33.5 + parent: 1668 + - uid: 2798 + components: + - type: Transform + pos: 10.5,33.5 + parent: 1668 + - uid: 2799 + components: + - type: Transform + pos: 9.5,33.5 + parent: 1668 + - uid: 2800 + components: + - type: Transform + pos: 8.5,33.5 + parent: 1668 + - uid: 2801 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1668 + - uid: 2802 + components: + - type: Transform + pos: 6.5,33.5 + parent: 1668 + - uid: 2803 + components: + - type: Transform + pos: 5.5,33.5 + parent: 1668 + - uid: 2804 + components: + - type: Transform + pos: 4.5,33.5 + parent: 1668 + - uid: 2805 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1668 + - uid: 2806 + components: + - type: Transform + pos: 2.5,33.5 + parent: 1668 + - uid: 2807 + components: + - type: Transform + pos: 1.5,33.5 + parent: 1668 + - uid: 2814 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1668 + - uid: 2833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 1668 + - uid: 2834 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1668 + - uid: 2835 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1668 + - uid: 2836 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1668 + - uid: 2837 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1668 + - uid: 2838 + components: + - type: Transform + pos: 1.5,28.5 + parent: 1668 + - uid: 2839 + components: + - type: Transform + pos: 1.5,29.5 + parent: 1668 + - uid: 2840 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1668 + - uid: 2841 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1668 + - uid: 2842 + components: + - type: Transform + pos: 1.5,32.5 + parent: 1668 + - uid: 2843 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1668 + - uid: 2844 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1668 + - uid: 2845 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1668 + - uid: 2846 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1668 + - uid: 2847 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1668 + - uid: 2848 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1668 + - uid: 2849 + components: + - type: Transform + pos: 17.5,33.5 + parent: 1668 + - uid: 2850 + components: + - type: Transform + pos: 16.5,33.5 + parent: 1668 + - uid: 2851 + components: + - type: Transform + pos: 15.5,33.5 + parent: 1668 + - uid: 2852 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1668 + - uid: 2853 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1668 + - uid: 2854 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1668 + - uid: 2855 + components: + - type: Transform + pos: 2.5,29.5 + parent: 1668 + - uid: 2856 + components: + - type: Transform + pos: 3.5,29.5 + parent: 1668 + - uid: 2857 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1668 + - uid: 2883 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1668 + - uid: 2884 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1668 + - uid: 2885 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1668 + - uid: 2888 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1668 + - uid: 3140 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1668 + - uid: 3184 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1668 + - uid: 3187 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1668 + - uid: 3188 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1668 + - uid: 3189 + components: + - type: Transform + pos: 0.5,29.5 + parent: 1668 + - uid: 3190 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1668 + - uid: 3191 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1668 + - uid: 3192 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1668 + - uid: 3193 + components: + - type: Transform + pos: 0.5,33.5 + parent: 1668 + - uid: 3194 + components: + - type: Transform + pos: 0.5,34.5 + parent: 1668 + - uid: 3195 + components: + - type: Transform + pos: 1.5,34.5 + parent: 1668 + - uid: 3196 + components: + - type: Transform + pos: 2.5,34.5 + parent: 1668 + - uid: 3197 + components: + - type: Transform + pos: 3.5,34.5 + parent: 1668 + - uid: 3198 + components: + - type: Transform + pos: 4.5,34.5 + parent: 1668 + - uid: 3199 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1668 + - uid: 3200 + components: + - type: Transform + pos: 6.5,34.5 + parent: 1668 + - uid: 3201 + components: + - type: Transform + pos: 7.5,34.5 + parent: 1668 + - uid: 3202 + components: + - type: Transform + pos: 8.5,34.5 + parent: 1668 + - uid: 3203 + components: + - type: Transform + pos: 9.5,34.5 + parent: 1668 + - uid: 3204 + components: + - type: Transform + pos: 10.5,34.5 + parent: 1668 + - uid: 3205 + components: + - type: Transform + pos: 11.5,34.5 + parent: 1668 + - uid: 3206 + components: + - type: Transform + pos: 12.5,34.5 + parent: 1668 + - uid: 3207 + components: + - type: Transform + pos: 13.5,34.5 + parent: 1668 + - uid: 3208 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1668 + - uid: 3209 + components: + - type: Transform + pos: 15.5,34.5 + parent: 1668 + - uid: 3210 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1668 + - uid: 3211 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1668 + - uid: 3212 + components: + - type: Transform + pos: 18.5,34.5 + parent: 1668 + - uid: 3213 + components: + - type: Transform + pos: 18.5,33.5 + parent: 1668 + - uid: 3214 + components: + - type: Transform + pos: 18.5,32.5 + parent: 1668 + - uid: 3215 + components: + - type: Transform + pos: 18.5,31.5 + parent: 1668 + - uid: 3216 + components: + - type: Transform + pos: 18.5,30.5 + parent: 1668 + - uid: 3217 + components: + - type: Transform + pos: 18.5,29.5 + parent: 1668 + - uid: 3218 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1668 + - uid: 3219 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1668 + - uid: 3220 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1668 + - uid: 3221 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1668 + - uid: 3222 + components: + - type: Transform + pos: 35.5,25.5 + parent: 1668 + - uid: 3223 + components: + - type: Transform + pos: 34.5,25.5 + parent: 1668 + - uid: 3224 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1668 + - uid: 3225 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1668 + - uid: 3226 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1668 + - uid: 3227 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1668 + - uid: 3228 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1668 + - uid: 3229 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1668 + - uid: 3230 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1668 + - uid: 3231 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1668 + - uid: 3232 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1668 + - uid: 3233 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1668 + - uid: 3234 + components: + - type: Transform + pos: 23.5,25.5 + parent: 1668 + - uid: 3235 + components: + - type: Transform + pos: 22.5,25.5 + parent: 1668 + - uid: 3236 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1668 + - uid: 3237 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1668 + - uid: 3238 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1668 + - uid: 3262 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1668 + - uid: 3263 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1668 + - uid: 3264 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1668 + - uid: 3265 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 1668 + - uid: 3266 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 1668 + - uid: 3267 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 1668 + - uid: 3268 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1668 + - uid: 3269 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1668 + - uid: 3270 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1668 + - uid: 3271 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1668 + - uid: 3272 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 1668 + - uid: 3273 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 1668 + - uid: 3274 + components: + - type: Transform + pos: -17.5,13.5 + parent: 1668 + - uid: 3275 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1668 + - uid: 3276 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1668 + - uid: 3277 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1668 + - uid: 3278 + components: + - type: Transform + pos: -19.5,15.5 + parent: 1668 + - uid: 3279 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1668 + - uid: 3280 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1668 + - uid: 3281 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1668 + - uid: 3282 + components: + - type: Transform + pos: -22.5,16.5 + parent: 1668 + - uid: 3283 + components: + - type: Transform + pos: -22.5,15.5 + parent: 1668 + - uid: 3284 + components: + - type: Transform + pos: -22.5,14.5 + parent: 1668 + - uid: 3285 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1668 + - uid: 3286 + components: + - type: Transform + pos: -20.5,13.5 + parent: 1668 + - uid: 3294 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1668 + - uid: 3295 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1668 + - uid: 3296 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1668 + - uid: 3297 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1668 + - uid: 3298 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1668 + - uid: 3299 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1668 + - uid: 3300 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1668 + - uid: 3301 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1668 + - uid: 3302 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1668 + - uid: 3303 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1668 + - uid: 3304 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1668 + - uid: 3305 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1668 + - uid: 3306 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1668 + - uid: 3307 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1668 + - uid: 3308 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1668 + - uid: 3309 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1668 + - uid: 3310 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1668 + - uid: 3311 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1668 + - uid: 3312 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1668 + - uid: 3313 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1668 + - uid: 3314 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1668 + - uid: 3315 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1668 + - uid: 3316 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1668 + - uid: 3317 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1668 + - uid: 3318 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1668 + - uid: 3319 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1668 + - uid: 3320 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1668 + - uid: 3321 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1668 + - uid: 3322 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1668 + - uid: 3323 + components: + - type: Transform + pos: -26.5,13.5 + parent: 1668 + - uid: 3324 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1668 + - uid: 3325 + components: + - type: Transform + pos: -27.5,10.5 + parent: 1668 + - uid: 3326 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1668 + - uid: 3331 + components: + - type: Transform + pos: -17.5,12.5 + parent: 1668 + - uid: 3332 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1668 + - uid: 3333 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1668 + - uid: 3334 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1668 + - uid: 3335 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1668 + - uid: 3336 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1668 + - uid: 3337 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1668 + - uid: 3338 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1668 + - uid: 3339 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1668 + - uid: 3340 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1668 + - uid: 3341 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1668 + - uid: 3342 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1668 + - uid: 3343 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1668 + - uid: 3344 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1668 + - uid: 3345 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1668 + - uid: 3346 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1668 + - uid: 3347 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1668 + - uid: 3348 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1668 + - uid: 3349 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1668 + - uid: 3350 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1668 + - uid: 3351 + components: + - type: Transform + pos: -25.5,6.5 + parent: 1668 + - uid: 3352 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1668 + - uid: 3353 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1668 + - uid: 3354 + components: + - type: Transform + pos: -25.5,1.5 + parent: 1668 + - uid: 3355 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1668 + - uid: 3356 + components: + - type: Transform + pos: -25.5,3.5 + parent: 1668 + - uid: 3357 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1668 + - uid: 3358 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1668 + - uid: 3359 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1668 + - uid: 3360 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1668 + - uid: 3361 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1668 + - uid: 3362 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1668 + - uid: 3363 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1668 + - uid: 3364 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1668 + - uid: 3365 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1668 + - uid: 3366 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1668 + - uid: 3367 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 1668 + - uid: 3368 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 1668 + - uid: 3369 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 1668 + - uid: 3370 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 1668 + - uid: 3371 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 1668 + - uid: 3372 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 1668 + - uid: 3373 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 1668 + - uid: 3374 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1668 + - uid: 3375 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1668 + - uid: 3376 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1668 + - uid: 3377 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1668 + - uid: 3378 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1668 + - uid: 3379 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1668 + - uid: 3380 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1668 + - uid: 3381 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1668 + - uid: 3382 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1668 + - uid: 3383 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1668 + - uid: 3384 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 1668 + - uid: 3443 + components: + - type: Transform + pos: -17.5,14.5 + parent: 1668 + - uid: 3444 + components: + - type: Transform + pos: -18.5,14.5 + parent: 1668 + - uid: 3780 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1668 + - uid: 3783 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 1668 + - uid: 3784 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 1668 + - uid: 3785 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 1668 + - uid: 3786 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 1668 + - uid: 3919 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1668 + - uid: 3920 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1668 + - uid: 3921 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1668 + - uid: 3922 + components: + - type: Transform + pos: -33.5,2.5 + parent: 1668 + - uid: 3923 + components: + - type: Transform + pos: -34.5,2.5 + parent: 1668 + - uid: 3924 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 1668 + - uid: 3925 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 1668 + - uid: 3926 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 1668 + - uid: 3927 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 1668 + - uid: 3928 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1668 + - uid: 3929 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1668 + - uid: 3930 + components: + - type: Transform + pos: -29.5,7.5 + parent: 1668 + - uid: 3931 + components: + - type: Transform + pos: -31.5,7.5 + parent: 1668 + - uid: 3932 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1668 + - uid: 4188 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1668 + - uid: 4190 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1668 + - uid: 4191 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1668 + - uid: 4192 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 1668 + - uid: 4193 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 1668 + - uid: 4194 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1668 + - uid: 4195 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1668 + - uid: 4196 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1668 + - uid: 4197 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 1668 + - uid: 4198 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1668 + - uid: 4199 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1668 + - uid: 4202 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1668 + - uid: 4203 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1668 + - uid: 4204 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 1668 + - uid: 4205 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 1668 + - uid: 4206 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 1668 + - uid: 4207 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1668 + - uid: 4208 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1668 + - uid: 4209 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 + - uid: 4210 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 1668 + - uid: 4211 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1668 + - uid: 4212 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 1668 + - uid: 4213 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1668 + - uid: 4214 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1668 + - uid: 4215 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1668 + - uid: 4216 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1668 + - uid: 4217 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1668 + - uid: 4218 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1668 + - uid: 4219 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1668 + - uid: 4220 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1668 + - uid: 4221 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1668 + - uid: 4234 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 1668 + - uid: 4235 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 1668 + - uid: 4236 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 1668 + - uid: 4237 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 1668 + - uid: 4238 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1668 + - uid: 4239 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 1668 + - uid: 4240 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 1668 + - uid: 4244 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1668 + - uid: 4245 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 1668 + - uid: 4246 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 1668 + - uid: 4247 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 1668 + - uid: 4248 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 1668 + - uid: 4249 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 1668 + - uid: 4250 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 1668 + - uid: 4267 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 1668 + - uid: 4268 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1668 + - uid: 4269 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 1668 + - uid: 4270 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 1668 + - uid: 4271 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 1668 + - uid: 4272 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 1668 + - uid: 4273 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 1668 + - uid: 4274 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1668 + - uid: 4275 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 1668 + - uid: 4276 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 1668 + - uid: 4277 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 1668 + - uid: 4278 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 1668 + - uid: 4279 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 1668 + - uid: 4280 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 1668 + - uid: 4281 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 1668 + - uid: 4282 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 1668 + - uid: 4283 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1668 + - uid: 4284 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 1668 + - uid: 4285 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 1668 + - uid: 4288 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1668 + - uid: 4289 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1668 + - uid: 4290 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1668 + - uid: 4291 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 1668 + - uid: 4292 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 1668 + - uid: 4293 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1668 + - uid: 4294 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 1668 + - uid: 4295 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1668 + - uid: 4296 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1668 + - uid: 4297 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 1668 + - uid: 4298 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1668 + - uid: 4300 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1668 + - uid: 4301 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 1668 + - uid: 4302 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 1668 + - uid: 4303 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1668 + - uid: 4304 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1668 + - uid: 4330 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1668 + - uid: 4331 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 1668 + - uid: 4332 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 1668 + - uid: 4333 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 1668 + - uid: 4335 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1668 + - uid: 4336 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1668 + - uid: 4337 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 1668 + - uid: 4338 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 1668 + - uid: 4353 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1668 + - uid: 4356 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1668 + - uid: 4357 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1668 + - uid: 4358 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1668 + - uid: 4362 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1668 + - uid: 4363 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1668 + - uid: 4364 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1668 + - uid: 4368 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1668 + - uid: 4641 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 1668 + - uid: 4642 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1668 + - uid: 4643 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 1668 + - uid: 4644 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 1668 + - uid: 4645 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 1668 + - uid: 4646 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 1668 + - uid: 4647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 1668 + - uid: 4648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 1668 + - uid: 4654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1668 + - uid: 4655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1668 + - uid: 4656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 1668 + - uid: 4657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 1668 + - uid: 4658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 1668 + - uid: 4659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 1668 + - uid: 4660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 1668 + - uid: 4661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 1668 + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 1668 + - uid: 4666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 1668 + - uid: 4670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 1668 + - uid: 4674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1668 + - uid: 4675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-34.5 + parent: 1668 + - uid: 4676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 1668 + - uid: 4677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 1668 + - uid: 4678 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 1668 + - uid: 4679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 1668 + - uid: 4680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 1668 + - uid: 4681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 1668 + - uid: 4682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-32.5 + parent: 1668 + - uid: 4683 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 1668 + - uid: 4684 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 1668 + - uid: 4685 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 1668 + - uid: 4686 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 1668 + - uid: 4687 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 1668 + - uid: 4688 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 1668 + - uid: 4689 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 1668 + - uid: 4690 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 1668 + - uid: 4691 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 1668 + - uid: 4692 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 1668 + - uid: 4693 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 1668 + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 1668 + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1668 + - uid: 4701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1668 + - uid: 4704 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 1668 + - uid: 4705 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 1668 + - uid: 4706 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 1668 + - uid: 4707 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 1668 + - uid: 4708 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 1668 + - uid: 4709 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1668 + - uid: 4710 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 1668 + - uid: 4717 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 1668 + - uid: 4718 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 1668 + - uid: 4719 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 1668 + - uid: 4720 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 1668 + - uid: 4724 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 1668 + - uid: 4725 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 1668 + - uid: 4726 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1668 + - uid: 4727 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1668 + - uid: 4728 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1668 + - uid: 4729 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1668 + - uid: 4730 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1668 + - uid: 4731 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1668 + - uid: 4732 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1668 + - uid: 4733 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1668 + - uid: 4734 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 1668 + - uid: 4735 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1668 + - uid: 4736 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1668 + - uid: 4737 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1668 + - uid: 4738 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1668 + - uid: 4739 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 1668 + - uid: 4740 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1668 + - uid: 4741 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1668 + - uid: 4742 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1668 + - uid: 4743 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1668 + - uid: 4744 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 1668 + - uid: 4745 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 1668 + - uid: 4747 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 4748 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1668 + - uid: 4758 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 1668 + - uid: 4759 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1668 + - uid: 4760 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1668 + - uid: 4761 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1668 + - uid: 5041 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1668 + - uid: 5042 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1668 + - uid: 5043 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1668 + - uid: 5044 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1668 + - uid: 5048 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1668 + - uid: 5049 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1668 + - uid: 5050 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 1668 + - uid: 5052 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 1668 + - uid: 5053 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 1668 + - uid: 5054 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 1668 + - uid: 5055 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1668 + - uid: 5057 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 1668 + - uid: 5059 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 1668 + - uid: 5060 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 1668 + - uid: 5061 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1668 + - uid: 5062 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 1668 + - uid: 5063 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 1668 + - uid: 5102 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1668 + - uid: 5103 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1668 + - uid: 5104 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1668 + - uid: 5105 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1668 + - uid: 5106 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 1668 + - uid: 5107 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1668 + - uid: 5113 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1668 + - uid: 5119 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1668 + - uid: 5120 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 1668 + - uid: 5344 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 1668 + - uid: 5355 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 1668 + - uid: 5388 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1668 + - uid: 5390 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1668 + - uid: 5392 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 1668 + - uid: 5396 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 1668 + - uid: 5405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 1668 + - uid: 5409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 1668 + - uid: 5784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 1668 + - uid: 5864 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 1668 + - uid: 5879 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 1668 + - uid: 5881 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 1668 + - uid: 5882 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 1668 + - uid: 5905 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 1668 + - uid: 5909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 1668 + - uid: 5913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 1668 + - uid: 5917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 1668 + - uid: 5918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 1668 + - uid: 5919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 1668 + - uid: 5920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 1668 + - uid: 5921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 1668 + - uid: 5930 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 1668 + - uid: 5931 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 1668 + - uid: 5941 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 1668 + - uid: 5942 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 1668 + - uid: 5943 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 1668 + - uid: 5944 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 1668 + - uid: 5963 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 1668 + - uid: 5964 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 1668 + - uid: 5965 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 1668 + - uid: 5966 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 1668 + - uid: 5967 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 1668 + - uid: 5968 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 1668 + - uid: 5969 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 1668 + - uid: 5970 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 1668 + - uid: 5971 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 1668 + - uid: 5972 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 1668 + - uid: 5973 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 1668 + - uid: 5974 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 1668 + - uid: 5975 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 1668 + - uid: 6101 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 1668 + - uid: 6233 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 1668 + - uid: 6234 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 1668 + - uid: 6235 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 1668 + - uid: 6236 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 1668 + - uid: 6237 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 1668 + - uid: 6238 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 1668 + - uid: 6241 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 1668 + - uid: 6242 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 1668 + - uid: 6246 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 1668 + - uid: 6247 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 1668 + - uid: 6248 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 1668 + - uid: 6249 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 1668 + - uid: 6250 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 1668 + - uid: 6251 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 1668 + - uid: 6271 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1668 + - uid: 6272 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 1668 + - uid: 6273 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 1668 + - uid: 6274 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1668 + - uid: 6292 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 1668 + - uid: 6293 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 1668 + - uid: 6294 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 1668 + - uid: 6297 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 1668 + - uid: 6298 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 1668 + - uid: 6299 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 1668 + - uid: 6361 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 1668 + - uid: 6362 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 1668 + - uid: 6363 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 1668 + - uid: 6364 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 1668 + - uid: 6365 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 1668 + - uid: 6366 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 1668 + - uid: 6367 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 1668 + - uid: 6368 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 1668 + - uid: 6369 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 1668 + - uid: 6370 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 1668 + - uid: 6371 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 1668 + - uid: 6372 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 1668 + - uid: 6373 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 1668 + - uid: 6374 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 1668 + - uid: 6375 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 1668 + - uid: 6376 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 1668 + - uid: 6377 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 1668 + - uid: 6378 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 1668 + - uid: 6379 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 1668 + - uid: 6380 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 1668 + - uid: 6381 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 1668 + - uid: 6382 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 1668 + - uid: 6383 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 1668 + - uid: 6384 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 1668 + - uid: 6385 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 1668 + - uid: 6386 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 1668 + - uid: 6387 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 1668 + - uid: 6388 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 1668 + - uid: 6389 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 1668 + - uid: 6390 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 1668 + - uid: 6534 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1668 + - uid: 6535 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 1668 + - uid: 6536 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 1668 + - uid: 6537 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 1668 + - uid: 6538 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 1668 + - uid: 6539 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1668 + - uid: 6540 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1668 + - uid: 6541 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1668 + - uid: 6542 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1668 + - uid: 6543 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1668 + - uid: 6544 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1668 + - uid: 6545 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 1668 + - uid: 6546 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 1668 + - uid: 6772 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 1668 + - uid: 6778 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 1668 + - uid: 6785 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 1668 + - uid: 6788 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1668 + - uid: 6842 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 1668 +- proto: WardrobeCargoFilled + entities: + - uid: 2208 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1668 +- proto: WardrobePrisonFilled + entities: + - uid: 2765 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1668 + - uid: 2773 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1668 + - uid: 2871 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1668 + - uid: 2872 + components: + - type: Transform + pos: 2.5,27.5 + parent: 1668 + - uid: 2873 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1668 +- proto: WarpPoint + entities: + - uid: 6637 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1668 + - type: WarpPoint + location: Centcomm +- proto: WaterCooler + entities: + - uid: 5318 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 1668 +- proto: WaterTankFull + entities: + - uid: 128 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1668 + - uid: 2042 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1668 +- proto: WeaponAdvancedLaser + entities: + - uid: 3130 + components: + - type: Transform + pos: 10.557603,32.615883 + parent: 1668 + - uid: 3131 + components: + - type: Transform + pos: 10.604478,32.490883 + parent: 1668 + - uid: 3132 + components: + - type: Transform + pos: 10.651353,32.365883 + parent: 1668 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1446 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1668 + - uid: 1447 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1668 + - uid: 1449 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1668 + - uid: 2471 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1668 + - uid: 2747 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1668 + - uid: 2824 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1668 + - uid: 3261 + components: + - type: Transform + pos: 8.5,23.5 + parent: 1668 + - uid: 3734 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1668 + - uid: 3859 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1668 + - uid: 4695 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1668 +- proto: WeaponDisabler + entities: + - uid: 4697 + components: + - type: Transform + pos: 20.88646,-10.507892 + parent: 1668 +- proto: WeaponPistolN1984 + entities: + - uid: 3774 + components: + - type: Transform + pos: -12.4228115,-9.521386 + parent: 1668 + - uid: 3894 + components: + - type: Transform + pos: -12.346658,4.475792 + parent: 1668 +- proto: WeaponPulseCarbine + entities: + - uid: 2202 + components: + - type: Transform + pos: 6.5531197,32.415283 + parent: 1668 + - uid: 2203 + components: + - type: Transform + pos: 6.5062447,32.64966 + parent: 1668 + - uid: 3124 + components: + - type: Transform + pos: 12.544843,32.634033 + parent: 1668 + - uid: 3125 + components: + - type: Transform + pos: 12.669843,32.477783 + parent: 1668 +- proto: WeaponPulsePistol + entities: + - uid: 4389 + components: + - type: Transform + pos: 5.546056,32.663063 + parent: 1668 + - uid: 4390 + components: + - type: Transform + pos: 5.686681,32.522438 + parent: 1668 + - uid: 4721 + components: + - type: Transform + pos: 13.653802,32.491188 + parent: 1668 + - uid: 4722 + components: + - type: Transform + pos: 13.481927,32.663063 + parent: 1668 +- proto: WeaponRevolverMateba + entities: + - uid: 1436 + components: + - type: Transform + pos: 2.4898672,30.350563 + parent: 1668 + - uid: 1445 + components: + - type: Transform + pos: 2.6461172,30.288063 + parent: 1668 + - uid: 1456 + components: + - type: Transform + pos: 16.456459,30.319313 + parent: 1668 + - uid: 6611 + components: + - type: Transform + pos: 16.628334,30.272438 + parent: 1668 +- proto: WeaponSniperHristov + entities: + - uid: 3138 + components: + - type: Transform + pos: 8.479478,29.789814 + parent: 1668 +- proto: WeaponSubMachineGunAtreides + entities: + - uid: 6603 + components: + - type: Transform + pos: 8.51666,29.42835 + parent: 1668 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 3895 + components: + - type: Transform + pos: -13.438182,-3.4256558 + parent: 1668 +- proto: WeaponTaser + entities: + - uid: 79 + components: + - type: Transform + pos: 10.5444565,3.9803991 + parent: 1668 + - uid: 1459 + components: + - type: Transform + pos: -4.4574313,-9.606358 + parent: 1668 + - uid: 3727 + components: + - type: Transform + pos: -25.555511,12.593331 + parent: 1668 + - uid: 6780 + components: + - type: Transform + pos: 26.613934,-11.4401045 + parent: 1668 +- proto: WeaponXrayCannon + entities: + - uid: 3136 + components: + - type: Transform + pos: 8.510728,32.664814 + parent: 1668 + - uid: 3137 + components: + - type: Transform + pos: 8.526353,32.55544 + parent: 1668 +- proto: WelderExperimental + entities: + - uid: 3699 + components: + - type: Transform + pos: -16.435745,6.6259594 + parent: 1668 + - uid: 4394 + components: + - type: Transform + pos: 21.568373,-15.468605 + parent: 1668 +- proto: WelderIndustrial + entities: + - uid: 5374 + components: + - type: Transform + pos: 26.560297,-23.266705 + parent: 1668 +- proto: WelderIndustrialAdvanced + entities: + - uid: 2196 + components: + - type: Transform + pos: -1.3562617,24.407354 + parent: 1668 +- proto: WeldingFuelTankFull + entities: + - uid: 127 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1668 + - uid: 2041 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1668 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 6843 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 1668 + - uid: 6844 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 1668 +- proto: WetFloorSign + entities: + - uid: 5883 + components: + - type: Transform + pos: -17.066446,-31.95819 + parent: 1668 +- proto: Windoor + entities: + - uid: 563 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1668 + - uid: 564 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1668 + - uid: 2409 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1668 + - uid: 2410 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1668 + - uid: 2710 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1668 + - uid: 4255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1668 + - uid: 6848 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1668 +- proto: WindoorBarLocked + entities: + - uid: 4410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 1668 +- proto: WindoorSecure + entities: + - uid: 2345 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1668 + - uid: 3760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1668 + - uid: 3761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1668 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 1668 +- proto: WindoorSecureBrigLocked + entities: + - uid: 2425 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1668 +- proto: WindoorSecureCargoLocked + entities: + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1668 + - uid: 1622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 +- proto: WindoorSecureCommandLocked + entities: + - uid: 4230 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1668 + - uid: 4231 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1668 + - uid: 4232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + - uid: 4233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-9.5 + parent: 1668 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 4757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 1668 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + - uid: 734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1668 + - uid: 1198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 1668 + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1668 + - uid: 562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1668 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1668 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1668 + - uid: 2558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,22.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6649 + - uid: 2776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 3906 + - uid: 2832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 3723 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 6602 + - uid: 2863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1668 + - type: DeviceLinkSink + links: + - 3870 +- proto: WindowReinforcedDirectional + entities: + - uid: 485 + components: + - type: Transform + pos: 25.5,6.5 + parent: 1668 + - uid: 487 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1668 + - uid: 488 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1668 + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 1668 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 1668 + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1668 + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1668 + - uid: 1086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1668 + - uid: 1087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1668 + - uid: 1197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 1668 + - uid: 2395 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1668 + - uid: 2396 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1668 + - uid: 2397 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1668 + - uid: 2398 + components: + - type: Transform + pos: 30.5,22.5 + parent: 1668 + - uid: 2399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1668 + - uid: 2400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 1668 + - uid: 2401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 1668 + - uid: 2402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 1668 + - uid: 2403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 1668 + - uid: 2404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1668 + - uid: 2405 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1668 + - uid: 2406 + components: + - type: Transform + pos: 29.5,20.5 + parent: 1668 + - uid: 2407 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1668 + - uid: 2408 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1668 + - uid: 2440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1668 + - uid: 3757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1668 + - uid: 3758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 1668 + - uid: 3759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1668 + - uid: 3892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1668 + - uid: 3893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1668 + - uid: 4254 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1668 + - uid: 4411 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1668 + - uid: 5217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1668 + - uid: 5219 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1668 + - uid: 5386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + - uid: 5397 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1668 + - uid: 5398 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1668 + - uid: 5410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1668 + - uid: 5411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + - uid: 5416 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1668 + - uid: 5417 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 1668 + - uid: 5453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1668 + - uid: 5454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1668 + - uid: 5928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 1668 + - uid: 5929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 1668 + - uid: 6787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 +- proto: Wrench + entities: + - uid: 6720 + components: + - type: Transform + pos: 9.506623,-4.4162817 + parent: 1668 +- proto: YellowOxygenTankFilled + entities: + - uid: 3901 + components: + - type: Transform + pos: -12.625682,-7.0710163 + parent: 1668 +... diff --git a/Resources/Maps/Shuttles/emergency_box.yml b/Resources/Maps/Shuttles/emergency_box.yml new file mode 100644 index 0000000000..8b4bad8175 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_box.yml @@ -0,0 +1,4761 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 30: FloorDarkDiagonal + 34: FloorDarkMono + 89: FloorSteel + 91: FloorSteelCheckerDark + 92: FloorSteelCheckerLight + 93: FloorSteelDamaged + 94: FloorSteelDiagonal + 98: FloorSteelLime + 103: FloorSteelPavementVertical + 108: FloorWhite + 113: FloorWhiteMono + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT Evac Box + - type: Transform + pos: 0.06253052,0.58707 + parent: 22 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACXAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADXAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWQAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHgAAAAAAWwAAAAAAWwAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWwAAAAAAWwAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAXQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHgAAAAACWwAAAAAAWwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcQAAAAABbAAAAAADbAAAAAAAbAAAAAAAcQAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADbAAAAAACbAAAAAACbAAAAAADcQAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAACHQAAAAAAHQAAAAABIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAeQAAAAAAHQAAAAACHQAAAAABIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAHQAAAAAAHQAAAAADHQAAAAACIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: DeviceNetwork + deviceNetId: Wireless + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 63: 15,3 + 113: 6,9 + 114: 6,10 + 115: 6,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 106: 4,11 + 107: 4,10 + 108: 4,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 0: 11,5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 6: 3,5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 17: 6,7 + 61: 11,1 + 94: 13,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 5: 3,1 + 14: 3,7 + 18: 8,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 1: 11,4 + 81: 11,3 + 82: 11,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 9: 5,5 + 10: 6,5 + 11: 7,5 + 12: 8,5 + 13: 9,5 + 169: 11,-2 + 170: 12,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 2: 7,1 + 3: 8,1 + 4: 9,1 + 15: 4,7 + 16: 5,7 + 19: 9,7 + 20: 10,7 + 95: 12,7 + 96: 11,7 + 167: 5,1 + 168: 6,1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 7: 3,4 + 8: 3,2 + 80: 3,3 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 55: 7,-3 + 56: 6,-3 + 57: 6,-4 + 58: 7,-4 + 59: 8,-4 + 60: 8,-3 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 70: 15,7 + - node: + color: '#DE3A3A4A' + id: DiagonalCheckerAOverlay + decals: + 97: 1,9 + 98: 2,9 + 99: 3,9 + 100: 2,10 + 101: 3,10 + 102: 1,10 + 103: 1,11 + 104: 2,11 + 105: 3,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 83: 5,10 + 84: 7,7 + 85: 8,7 + 86: 12,-3 + 87: 12,-4 + 130: 6.7590723,8.708282 + 131: 7.5090723,8.630157 + 132: 7.1809473,8.895782 + 133: 7.8996973,11.317657 + 134: 8.352822,10.708282 + 135: 8.446572,11.145782 + 136: 9.290322,8.661407 + 137: 9.524697,8.989532 + 138: 9.884072,8.567657 + 139: 12.274697,11.005157 + 140: 12.368447,10.333282 + 141: 6.4153223,9.489532 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 93: 14,-3 + 109: 6,11 + 110: 6,9 + 116: 8,11 + 117: 7,9 + 118: 12,11 + 119: 11,10 + 120: 11,9 + 121: 9,11 + 142: 8,10 + 148: 14,9 + 149: 14,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 89: 15,-4 + 90: 15,-2 + 91: 15,-3 + 122: 9,10 + 123: 10,9 + 124: 10,11 + 125: 12,9 + 150: 15,9 + 151: 14,10 + 152: 16,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 88: 14,-4 + 92: 14,-2 + 111: 6,10 + 112: 7,11 + 126: 10,10 + 127: 12,10 + 128: 8,9 + 129: 9,9 + 143: 7,10 + 144: 15,11 + 145: 16,11 + 146: 15,10 + 147: 16,9 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 69: 7,7 + 71: 14,7 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 75: 14,3 + 76: 13,3 + 154: 11,-1 + 155: 10,-1 + 156: 8,-1 + 157: 9,-1 + 158: 7,-1 + 159: 6,-1 + 160: 5,-1 + 161: 3,-1 + 162: 4,-1 + 163: 2,-1 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 64: 1,1 + 65: 1,2 + 66: 1,3 + 67: 1,4 + 68: 1,5 + 164: 1,0 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 62: 15,3 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 72: 15,6 + 73: 15,5 + 74: 15,4 + 77: 12,1 + 78: 12,2 + 153: 12,0 + - node: + color: '#334E6D5D' + id: QuarterTileOverlayGreyscale + decals: + 23: 19,11 + 24: 18,11 + 25: 18,10 + 26: 18,9 + - node: + color: '#334E6D7F' + id: QuarterTileOverlayGreyscale + decals: + 32: 18,8 + 43: 17,7 + 44: 18,7 + - node: + color: '#334E6D5D' + id: QuarterTileOverlayGreyscale180 + decals: + 21: 19,10 + 22: 19,11 + - node: + color: '#D4D4D40C' + id: QuarterTileOverlayGreyscale180 + decals: + 33: 19,9 + 34: 19,8 + 35: 19,7 + 36: 19,6 + 37: 19,5 + 38: 19,4 + 39: 19,3 + 40: 18,3 + 41: 17,3 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 79: 12,3 + - node: + color: '#334E6D7F' + id: QuarterTileOverlayGreyscale270 + decals: + 45: 17,3 + 46: 18,3 + 47: 19,3 + - node: + color: '#D4D4D40C' + id: QuarterTileOverlayGreyscale270 + decals: + 29: 18,8 + - node: + color: '#D4D4D40F' + id: QuarterTileOverlayGreyscale270 + decals: + 27: 18,9 + 28: 18,10 + - node: + color: '#334E6D7F' + id: QuarterTileOverlayGreyscale90 + decals: + 48: 19,3 + 49: 19,4 + 50: 19,5 + 51: 19,6 + 52: 19,7 + 53: 19,8 + 54: 19,9 + - node: + color: '#D4D4D40C' + id: QuarterTileOverlayGreyscale90 + decals: + 30: 19,11 + 31: 19,10 + 42: 17,7 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 166: 12,-1 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 165: 1,-1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 61182 + 0,-1: + 0: 65032 + 0,1: + 0: 65262 + 0,2: + 0: 61172 + 0,3: + 0: 224 + 1,0: + 0: 61167 + 1,1: + 0: 65518 + 1,2: + 0: 56792 + 1,3: + 0: 16 + 1,-1: + 0: 63726 + 2,0: + 0: 48063 + 2,1: + 0: 65467 + 2,2: + 0: 65520 + 2,-1: + 0: 63675 + 2,3: + 0: 192 + 3,0: + 0: 61917 + 3,1: + 0: 65535 + 3,2: + 0: 56784 + 3,3: + 0: 2232 + 3,-1: + 0: 56829 + 4,0: + 0: 57531 + 4,1: + 0: 61182 + 4,2: + 0: 57308 + 0,-2: + 1: 2048 + 0: 32768 + 1,-2: + 0: 3584 + 2,-2: + 0: 3328 + 3,-2: + 0: 3328 + 4,-2: + 0: 768 + 4,3: + 0: 96 + 5,0: + 1: 8448 + 5,1: + 0: 4369 + 5,2: + 0: 273 + 1: 8192 + 5,3: + 1: 1 + 4,-1: + 0: 546 + 1: 128 + 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 + - type: NavMap + - uid: 22 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap +- proto: AirAlarm + entities: + - uid: 659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 1 + - type: DeviceList + devices: + - 639 + - 502 + - 503 + - 171 + - 660 + - 499 + - 127 + - 642 + - 643 + - 492 + - 657 + - 644 + - 501 +- proto: AirCanister + entities: + - uid: 221 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 +- proto: Airlock + entities: + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 +- proto: AirlockCommandLocked + entities: + - uid: 124 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 +- proto: AirlockEngineeringGlass + entities: + - uid: 91 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: AirlockEVAGlassLocked + entities: + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 1 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 +- proto: AirlockExternalLocked + entities: + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 420 + - type: DeviceLinkSource + linkedPorts: + 420: + - DoorStatus: DoorBolt + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + - type: DeviceLinkSink + links: + - 184 + - type: DeviceLinkSource + linkedPorts: + 184: + - DoorStatus: DoorBolt +- proto: AirlockMedical + entities: + - uid: 128 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 +- proto: APCSuperCapacity + entities: + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 582 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: BookHowToSurvive + entities: + - uid: 210 + components: + - type: Transform + pos: 17.702461,3.5919065 + parent: 1 +- proto: BoxFolderClipboard + entities: + - uid: 506 + components: + - type: Transform + pos: 18.38288,11.560461 + parent: 1 +- proto: BoxHandcuff + entities: + - uid: 662 + components: + - type: Transform + pos: 1.4923584,11.117254 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 6 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 +- proto: CableHV + entities: + - uid: 48 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 159 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 +- proto: Chair + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 +- proto: ChairGreyscale + entities: + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 558 + components: + - type: Transform + pos: 19.002337,9.878916 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 14.886385,-1.0698383 + parent: 1 +- proto: CigPackRed + entities: + - uid: 217 + components: + - type: Transform + pos: 17.342344,3.6574845 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 86 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 +- proto: ClosetFireFilled + entities: + - uid: 88 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 419 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 234 + components: + - type: Transform + pos: 5.4924736,-3.3224797 + parent: 1 + - 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: ClothingMaskBreath + entities: + - uid: 509 + components: + - type: Transform + pos: 18.746365,3.4395046 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,9.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,6.5 + parent: 1 +- proto: ComputerCrewMonitoring + entities: + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1 +- proto: ComputerEmergencyShuttle + entities: + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,8.5 + parent: 1 +- proto: CrateEngineeringToolbox + entities: + - uid: 87 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 10 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 +- proto: CrateMaterialSteel + entities: + - uid: 504 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 +- proto: Crowbar + entities: + - uid: 335 + components: + - type: Transform + pos: 5.5403957,-2.8794582 + parent: 1 +- proto: CrowbarRed + entities: + - uid: 169 + components: + - type: Transform + pos: 1.545907,-1.5395434 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 18.35574,3.5332546 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 3.561532,-1.6020434 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 1 +- proto: FireAxeCabinetFilled + entities: + - uid: 215 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 195 + components: + - type: Transform + pos: 1.4663568,11.604567 + parent: 1 +- proto: GasOutletInjector + entities: + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPassiveVent + entities: + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBend + entities: + - uid: 105 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 439 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 498 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 603 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 608 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 452 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 487 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 103 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 445 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 446 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 461 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 462 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 463 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 464 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 476 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 477 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 478 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 479 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 480 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 482 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 483 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 604 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 611 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasVentPump + entities: + - uid: 127 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 499 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 658 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 642 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 643 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 657 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 659 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 294 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 562 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 288 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 7 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 431 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 181 + components: + - type: Transform + pos: 3.545907,-1.5707934 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 5.4778957,-2.3013332 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 119 + components: + - type: Transform + pos: 1.514657,-1.5395434 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 5.4778957,-2.6294582 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 667 + components: + - type: Transform + pos: 5.556031,-2.4720905 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 666 + components: + - type: Transform + pos: 5.5288844,-2.4856539 + parent: 1 +- proto: Pen + entities: + - uid: 507 + components: + - type: Transform + pos: 18.69538,11.716711 + parent: 1 +- proto: PosterContrabandTools + entities: + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 1 +- proto: PosterLegitCleanliness + entities: + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 +- proto: PosterLegitHelpOthers + entities: + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 1 +- proto: PosterLegitIan + entities: + - uid: 43 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 588 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 +- proto: PosterLegitReportCrimes + entities: + - uid: 347 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 +- proto: PottedPlantRandomPlastic + entities: + - uid: 218 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 567 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 +- proto: Rack + entities: + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,7.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1 +- proto: Screen + entities: + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 663 + components: + - type: Transform + pos: 14.536002,-3.44548 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 664 + components: + - type: Transform + pos: 14.508854,-3.4590437 + parent: 1 +- proto: SheetSteel + entities: + - uid: 665 + components: + - type: Transform + pos: 14.536002,-3.44548 + parent: 1 +- proto: ShotGunCabinetFilled + entities: + - uid: 585 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,5.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + - uid: 580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + - uid: 595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1 +- proto: Sink + entities: + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 287 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 +- proto: SpawnMobCleanBot + entities: + - uid: 651 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 +- proto: SpawnMobMedibot + entities: + - uid: 584 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 224 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 286 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 +- proto: SuitStorageEVA + entities: + - uid: 333 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 +- proto: Table + entities: + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,11.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 +- proto: Thruster + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 1 + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1 + - uid: 405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 +- proto: ToolboxElectricalFilled + entities: + - uid: 527 + components: + - type: Transform + pos: 14.443532,-1.3515654 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 511 + components: + - type: Transform + pos: 20.51042,7.624368 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + missingComponents: + - AccessReader + - uid: 437 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + missingComponents: + - AccessReader + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + missingComponents: + - AccessReader + - uid: 596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + missingComponents: + - AccessReader +- proto: WallPlastitanium + entities: + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-5.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 1 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1 +- proto: WaterTankFull + entities: + - uid: 496 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 277 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: WeldingFuelTankFull + entities: + - uid: 266 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 164 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml index 19b16e9577..8e23c59099 100644 --- a/Resources/Maps/Shuttles/trading_outpost.yml +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -32,6 +32,7 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree + - type: LoadedMap - uid: 2 components: - type: MetaData @@ -72,9 +73,6 @@ entities: linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - - type: PassiveDampening # To prevent cargotechs from flingling it away. - linearDampening: 0.05 - angularDampening: 0.05 - type: Fixtures fixtures: {} - type: PassiveDampening @@ -423,6 +421,11 @@ entities: parent: 2 - type: Physics bodyType: Static + - uid: 915 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 - proto: AirlockCargoLocked entities: - uid: 6 @@ -477,25 +480,25 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 14 + - uid: 423 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-5.5 + pos: -2.5,-3.5 parent: 2 - - uid: 15 + - uid: 740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-3.5 + pos: -2.5,-5.5 parent: 2 - - uid: 16 + - uid: 920 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 - - uid: 17 + - uid: 921 components: - type: Transform rot: 1.5707963267948966 rad @@ -516,90 +519,88 @@ entities: parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 23 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 2 - - uid: 681 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 2 - - uid: 908 + - uid: 14 components: - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 - - uid: 909 + - uid: 20 components: - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 - - uid: 910 + - uid: 420 components: - type: Transform - pos: -2.5,-5.5 + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 parent: 2 - - uid: 911 + - uid: 427 components: - type: Transform - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 parent: 2 - - uid: 916 + - uid: 432 components: - type: Transform - pos: -2.5,-5.5 + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 parent: 2 - - uid: 917 + - uid: 435 components: - type: Transform - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 2 - - uid: 918 + - uid: 675 components: - type: Transform - pos: 13.5,-5.5 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 parent: 2 - - uid: 919 + - uid: 790 components: - type: Transform - pos: 13.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 parent: 2 - proto: BlastDoor entities: - - uid: 20 + - uid: 16 components: - type: Transform - pos: 13.5,-6.5 + pos: -2.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 741 - - uid: 21 + - 23 + - uid: 17 components: - type: Transform - pos: -2.5,-2.5 + pos: 13.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 740 - - uid: 22 + - 741 + - uid: 803 components: - type: Transform pos: 13.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 742 - - uid: 679 + - 681 + - uid: 919 components: - type: Transform - pos: -2.5,-6.5 + pos: -2.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 739 + - 422 - proto: ButtonFrameCaution entities: - uid: 24 @@ -1268,6 +1269,16 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 + - uid: 948 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 - proto: CableHV entities: - uid: 156 @@ -2629,27 +2640,27 @@ entities: parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 414 + - uid: 426 components: - type: Transform - pos: 10.5,6.5 + pos: 0.5,2.5 parent: 2 - - uid: 914 + - uid: 802 components: - type: Transform - pos: 0.5,4.5 + pos: 10.5,-10.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 415 + - uid: 908 components: - type: Transform - pos: 10.5,4.5 + pos: 10.5,2.5 parent: 2 - - uid: 915 + - uid: 914 components: - type: Transform - pos: 0.5,6.5 + pos: 0.5,-10.5 parent: 2 - proto: ComputerPalletConsole entities: @@ -2681,150 +2692,167 @@ entities: parent: 2 - proto: ConveyorBelt entities: - - uid: 420 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 679 + - uid: 21 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -1.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 801 - - uid: 421 + - 680 + - uid: 414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-2.5 + pos: -0.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 802 - - uid: 422 + - 679 + - uid: 415 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + pos: -2.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 801 - - uid: 423 + - 680 + - uid: 421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 801 - - uid: 424 + - 679 + - uid: 425 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-2.5 + pos: 0.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 802 - - uid: 425 + - 679 + - uid: 433 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-6.5 + pos: -0.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 801 - - uid: 426 + - 680 + - uid: 674 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 802 - - uid: 427 + - 680 + - uid: 678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 800 - - uid: 428 + - 739 + - uid: 742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 800 - - uid: 429 + - 739 + - uid: 909 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: 13.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 800 - - uid: 430 + - 801 + - uid: 910 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-2.5 + pos: 10.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 803 - - uid: 431 + - 739 + - uid: 911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 803 - - uid: 432 + - 801 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + pos: 10.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 800 - - uid: 433 + - 801 + - uid: 917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-2.5 + pos: 12.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 802 - - uid: 434 + - 801 + - uid: 918 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-2.5 + pos: 11.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 803 - - uid: 435 + - 739 +- proto: CrateEmptySpawner + entities: + - uid: 932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 + pos: 6.5,6.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 4.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 803 - proto: ExtinguisherCabinetFilled entities: - uid: 436 @@ -4433,6 +4461,25 @@ entities: - type: Transform pos: 9.501623,-16.39294 parent: 2 +- proto: PaperBin20 + entities: + - uid: 927 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 +- proto: Pen + entities: + - uid: 928 + components: + - type: Transform + pos: 2.0226812,6.5447865 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 2.3351812,6.5604115 + parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 670 @@ -4459,25 +4506,25 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 674 + - uid: 22 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 675 + - uid: 424 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 678 + - uid: 434 components: - type: Transform - pos: 11.5,-6.5 + pos: -0.5,-6.5 parent: 2 - - uid: 680 + - uid: 800 components: - type: Transform - pos: -0.5,-6.5 + pos: 11.5,-6.5 parent: 2 - proto: PlastitaniumWindow entities: @@ -4529,6 +4576,50 @@ entities: - type: Transform pos: 9.5,-15.5 parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 2 - proto: Poweredlight entities: - uid: 684 @@ -4560,6 +4651,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 2 + - uid: 935 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 - proto: PoweredSmallLight entities: - uid: 689 @@ -4602,6 +4703,48 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 2 + - uid: 937 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 930 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 931 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 - proto: RandomInstruments entities: - uid: 913 @@ -4623,6 +4766,20 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 922 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 923 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 698 @@ -4878,7 +5035,7 @@ entities: - 746 - proto: SignalButtonDirectional entities: - - uid: 739 + - uid: 23 components: - type: Transform rot: 1.5707963267948966 rad @@ -4886,9 +5043,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 679: + 16: - Pressed: Toggle - - uid: 740 + - uid: 422 components: - type: Transform rot: 1.5707963267948966 rad @@ -4896,27 +5053,27 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21: + 919: - Pressed: Toggle - - uid: 741 + - uid: 681 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-7.5 + pos: 11.5,-1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 20: + 803: - Pressed: Toggle - - uid: 742 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-1.5 + pos: 11.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 22: + 17: - Pressed: Toggle - proto: SignalSwitchDirectional entities: @@ -5215,13 +5372,6 @@ entities: - type: Transform pos: 6.5,-24.5 parent: 2 -- proto: SpawnMobBear - entities: - - uid: 790 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - proto: SpawnMobCleanBot entities: - uid: 676 @@ -5289,102 +5439,169 @@ entities: parent: 2 - proto: TableWood entities: + - uid: 428 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 - uid: 912 components: - type: Transform pos: 5.5,2.5 parent: 2 +- proto: TrashBag + entities: + - uid: 925 + components: + - type: Transform + parent: 924 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Trashbin + entities: + - uid: 924 + components: + - type: Transform + pos: 7.5,6.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: + - 925 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: TwoWayLever entities: - - uid: 800 + - uid: 679 components: - type: Transform - pos: 10.5,-7.5 + pos: 0.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 432: + 425: - Left: Forward - Right: Reverse - Middle: Off - 429: + 414: - Left: Forward - Right: Reverse - Middle: Off - 428: + 421: - Left: Forward - Right: Reverse - Middle: Off - 427: + 15: - Left: Forward - Right: Reverse - Middle: Off - - uid: 801 + - uid: 680 components: - type: Transform - pos: 0.5,-7.5 + pos: 0.5,-1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 422: + 674: - Left: Forward - Right: Reverse - Middle: Off - 425: + 433: - Left: Forward - Right: Reverse - Middle: Off - 423: + 21: - Left: Forward - Right: Reverse - Middle: Off - 420: + 415: - Left: Forward - Right: Reverse - Middle: Off - - uid: 802 + - uid: 739 components: - type: Transform - pos: 0.5,-1.5 + pos: 10.5,-1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 421: + 910: - Left: Forward - Right: Reverse - Middle: Off - 424: + 918: - Left: Forward - Right: Reverse - Middle: Off - 433: + 678: - Left: Forward - Right: Reverse - Middle: Off - 426: + 742: - Left: Forward - Right: Reverse - Middle: Off - - uid: 803 + - uid: 801 components: - type: Transform - pos: 10.5,-1.5 + pos: 10.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 431: + 916: - Left: Forward - Right: Reverse - Middle: Off - 430: + 911: - Left: Forward - Right: Reverse - Middle: Off - 435: + 917: - Left: Forward - Right: Reverse - Middle: Off - 434: + 909: - Left: Forward - Right: Reverse - Middle: Off @@ -5906,6 +6123,13 @@ entities: parent: 2 - type: WarpPoint location: Automated Trade Station +- proto: WaterCooler + entities: + - uid: 926 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 - proto: Windoor entities: - uid: 901 diff --git a/Resources/Maps/_Goobstation/Nonstations/ghostbar.yml b/Resources/Maps/_Goobstation/Nonstations/ghostbar.yml new file mode 100644 index 0000000000..395efd75f1 --- /dev/null +++ b/Resources/Maps/_Goobstation/Nonstations/ghostbar.yml @@ -0,0 +1,14822 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorBoxing + 33: FloorDarkDiagonal + 39: FloorDarkPavement + 41: FloorDarkPlastic + 96: FloorSteel + 99: FloorSteelCheckerLight + 115: FloorWhite + 125: FloorWood + 128: Lattice + 129: 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: 4 + components: + - type: MetaData + name: grid + - type: Transform + pos: -4.276839,-7.193907 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAKQAAAAAAKQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAYwAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: gQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAKQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: '#000000FF' + id: Basalt8 + decals: + 365: 10.09203,11.744788 + - node: + color: '#755900FF' + id: Dirt + decals: + 233: 14,-4 + 234: 15,-4 + 235: 14,-3 + 236: 13,-3 + 237: 16,-4 + 238: 17,-5 + 239: 16,-3 + 240: 16,-2 + 241: 16,-1 + 242: 17,-2 + 243: 17,-3 + 244: 15,-3 + 245: 14,-4 + 246: 15,-4 + 247: 16,-4 + 248: 14,-3 + 249: 13,-3 + 250: 12,-3 + 251: 13,-2 + 252: 6,5 + 253: 6,4 + 254: 7,5 + 255: 7,4 + 256: 7,3 + 257: 8,4 + 258: 8,3 + 259: 7,2 + 260: 9,5 + 261: 9,4 + 262: 10,3 + 263: 10,4 + 264: 6,5 + 265: 6,4 + 266: 8,5 + 267: 7,5 + 268: 7,4 + 269: 7,3 + 270: 8,4 + - node: + color: '#967000FF' + id: Dirt + decals: + 117: 19,7 + 118: 19,8 + 119: 20,8 + 120: 20,9 + 121: 18,9 + 122: 18,10 + 123: 17,11 + 124: 17,10 + 125: 18,12 + 126: 18,11 + 127: 17,9 + 128: 16,9 + 129: 18,8 + 130: 20,8 + 271: 21,-5 + 272: 20,-5 + 273: 22,-4 + 274: 23,-4 + 275: 24,-4 + 276: 23,-3 + 277: 24,-3 + 278: 25,-3 + 279: 23,1 + 280: 24,2 + 281: 24,1 + 282: 25,1 + 283: 26,1 + 284: 24,0 + 285: 20,1 + 286: 19,0 + 287: 18,0 + 288: 17,1 + 289: 17,1 + 290: 17,0 + 291: 18,1 + 292: 18,1 + 293: 17,-1 + 294: 15,-1 + 295: 26,-3 + 296: 27,-2 + 297: 26,-2 + 298: 32,5 + 299: 32,4 + 300: 31,5 + 301: 31,4 + 302: 32,5 + 303: 32,4 + 304: 30,5 + 305: 29,5 + 306: 30,4 + 307: 31,3 + 308: 31,2 + 309: 30,2 + 310: 30,1 + 311: 29,2 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 46: 11,7 + 47: 11,8 + 48: 12,7 + 49: 11,9 + 50: 13,8 + 51: 13,7 + 52: 13,9 + 53: 13,10 + 54: 14,7 + 55: 14,6 + 56: 13,6 + 57: 12,6 + 58: 12,5 + 59: 11,5 + 60: 11,4 + 61: 12,13 + 62: 13,14 + 63: 13,13 + 64: 14,13 + 65: 14,14 + 66: 14,15 + 67: 15,14 + 68: 15,13 + 69: 16,13 + 70: 18,14 + 71: 17,15 + 72: 18,17 + 73: 17,17 + 74: 14,3 + 75: 15,2 + 76: 15,3 + 77: 16,2 + 78: 16,1 + 79: 17,2 + 80: 17,3 + 81: 22,2 + 82: 22,3 + 83: 23,2 + 84: 27,4 + 85: 27,4 + 86: 27,5 + 87: 26,4 + 88: 25,4 + 89: 26,5 + 90: 26,6 + 91: 24,4 + 92: 24,3 + 93: 27,7 + 94: 27,12 + 95: 28,11 + 96: 28,12 + 97: 27,11 + 98: 26,12 + 99: 26,13 + 100: 25,13 + 101: 27,10 + 102: 27,9 + 103: 27,9 + 104: 27,8 + 105: 26,9 + 106: 26,10 + 107: 25,10 + 108: 26,11 + 109: 20,17 + 110: 21,17 + 111: 23,17 + 112: 22,17 + 113: 23,16 + 114: 22,16 + 115: 23,15 + 116: 24,15 + 312: 5,7 + 313: 5,8 + 314: 6,7 + 315: 7,7 + 316: 5,11 + 317: 6,11 + 318: 6,10 + 319: 7,11 + 320: 5,10 + 321: 5,9 + 322: 6,8 + 323: 5,11 + 324: 7,11 + 325: 9,9 + 326: 9,8 + 327: 9,10 + - node: + color: '#5E7C16FF' + id: HalfTileOverlayGreyscale + decals: + 24: 29,17 + - node: + color: '#F9FFFEFF' + id: HalfTileOverlayGreyscale + decals: + 8: 22.99866,16.998758 + 10: 21.997002,17.99664 + - node: + color: '#5E7C16FF' + id: HalfTileOverlayGreyscale180 + decals: + 21: 26,16 + 37: 32,10 + 38: 31,10 + 39: 30,10 + - node: + color: '#5E7C16FF' + id: HalfTileOverlayGreyscale270 + decals: + 28: 29,11 + 29: 29,12 + 30: 28,14 + - node: + color: '#F9FFFEFF' + id: HalfTileOverlayGreyscale270 + decals: + 11: 22.008648,17.997267 + - node: + color: '#5E7C16FF' + id: HalfTileOverlayGreyscale90 + decals: + 25: 31,15 + 26: 32,13 + 27: 32,12 + - node: + color: '#F9FFFEFF' + id: HalfTileOverlayGreyscale90 + decals: + 9: 23.00003,16.993858 + - node: + color: '#5E7C16FF' + id: QuarterTileOverlayGreyscale + decals: + 33: 28,17 + 36: 27,16 + - node: + color: '#494949FF' + id: QuarterTileOverlayGreyscale180 + decals: + 0: 11.50419,14.506893 + 1: 11.4984,14.498778 + 2: 12.498127,15.500399 + 3: 13.501547,16.505152 + - node: + color: '#5E7C16FF' + id: QuarterTileOverlayGreyscale180 + decals: + 23: 28,18 + 31: 27,17 + 35: 26,17 + - node: + color: '#F9FFFEFF' + id: QuarterTileOverlayGreyscale180 + decals: + 4: 26.498196,17.49848 + 5: 27.500505,18.49385 + 6: 28.000505,18.49385 + - node: + color: '#5E7C16FF' + id: QuarterTileOverlayGreyscale270 + decals: + 20: 27,16 + 41: 29,13 + 42: 28,15 + - node: + color: '#F9FFFEFF' + id: QuarterTileOverlayGreyscale270 + decals: + 7: 26.006575,16.500278 + - node: + color: '#5E7C16FF' + id: QuarterTileOverlayGreyscale90 + decals: + 22: 28,17 + 32: 27,17 + 34: 26,16 + 43: 30,16 + 44: 31,14 + 45: 32,11 + - node: + color: '#F9FFFEFF' + id: QuarterTileOverlayGreyscale90 + decals: + 12: 21.999369,16.994953 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 172: 17,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 173: 18,14 + 174: 19,14 + 175: 20,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 131: 18,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 132: 19,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 133: 20,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 171: 21,14 + - node: + color: '#5E7C16FF' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 17: 33,10 + - node: + color: '#5E7C16FF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 18: 28,13 + 19: 27,15 + 40: 29,10 + - node: + color: '#5E7C16FF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 13: 31,16 + 14: 30,17 + 15: 32,14 + 16: 33,11 + - node: + color: '#343434FF' + id: a + decals: + 231: 20.24858,13.963299 + - node: + color: '#FFFFFFFF' + id: a + decals: + 367: 42.20144,13.240906 + - node: + color: '#343434FF' + id: b + decals: + 230: 19.755526,13.9494095 + - node: + color: '#FFFFFFFF' + id: b + decals: + 369: 42.98616,13.227017 + - node: + cleanable: True + color: '#FFFFFFFF' + id: c + decals: + 329: 42.097095,12.821289 + 333: 43.51839,12.784252 + - node: + color: '#FFFFFFFF' + id: dot + decals: + 371: 43.46533,13.164517 + 372: 43.493103,13.379795 + - node: + cleanable: True + color: '#FFFFFFFF' + id: e + decals: + 330: 42.51376,12.7981415 + - node: + color: '#343434FF' + id: g + decals: + 225: 17.234692,14.025799 + - node: + color: '#343434FF' + id: h + decals: + 226: 17.77636,14.018854 + - node: + cleanable: True + color: '#FFFFFFFF' + id: k + decals: + 334: 43.879097,12.774993 + - node: + color: '#FFFFFFFF' + id: m + decals: + 366: 41.77088,13.268684 + - node: + color: '#343434FF' + id: o + decals: + 227: 18.227747,13.970243 + - node: + color: '#FFFFFFFF' + id: p + decals: + 368: 42.479218,13.254795 + - node: + cleanable: True + color: '#FFFFFFFF' + id: p + decals: + 331: 42.88876,12.830548 + - node: + color: '#343434FF' + id: r + decals: + 232: 20.727747,13.963299 + - node: + color: '#343434FF' + id: s + decals: + 228: 18.804136,13.984133 + - node: + cleanable: True + color: '#FFFFFFFF' + id: shortline + decals: + 328: 41.735985,12.81203 + 332: 43.26376,12.779623 + - node: + color: '#626262FF' + id: smallbrush + decals: + 134: 17.895603,14.14216 + 135: 18.326159,13.8967905 + 136: 18.512424,13.915309 + 137: 18.480017,13.8967905 + 138: 18.401314,14.114384 + 139: 18.489277,14.128272 + 140: 18.392054,14.132902 + 141: 18.71613,14.165309 + 142: 18.868906,14.160679 + 143: 18.753166,14.035679 + 144: 18.767054,13.919939 + 145: 18.785572,13.910679 + 146: 18.975388,13.90605 + 147: 19.160572,13.89216 + 148: 19.308722,13.8967905 + 149: 19.30409,13.989384 + 150: 19.128166,14.03105 + 151: 19.267054,14.086605 + 152: 19.248535,14.1467905 + 153: 19.114277,14.165309 + 154: 19.537004,14.169939 + 155: 19.648115,14.183827 + 156: 19.597189,14.040309 + 157: 19.597189,13.989384 + 158: 19.58793,13.910679 + 159: 19.884226,14.14216 + 160: 19.972189,14.137531 + 161: 19.893484,13.998642 + 162: 19.888855,13.90605 + 163: 20.081844,13.919939 + 164: 20.197584,13.878272 + 165: 20.322584,14.100494 + 166: 20.225363,14.169939 + 167: 20.202215,14.054197 + 168: 18.087093,13.882902 + 169: 18.100983,14.072717 + 170: 18.179686,14.14216 + 176: 17.116636,13.907743 + 177: 17.193026,13.9494095 + 178: 17.130526,14.060521 + 179: 17.241636,14.178577 + 180: 17.116636,14.157743 + 181: 17.206915,13.8244095 + 182: 17.51247,14.157743 + 183: 17.616636,14.150799 + 184: 17.456915,13.970243 + 185: 17.581915,14.039688 + 186: 17.443026,13.914688 + 187: 17.99858,14.116077 + 188: 17.93608,14.0744095 + 189: 17.93608,14.109133 + 190: 17.859692,13.928577 + 191: 18.07497,13.9494095 + 192: 18.102747,13.873021 + 193: 17.797192,13.859133 + 194: 18.33886,13.991077 + 195: 18.415247,14.157743 + 196: 18.630526,14.150799 + 197: 18.56108,14.046633 + 198: 18.380526,13.914688 + 199: 18.68608,13.893854 + 200: 18.922192,13.914688 + 201: 19.144415,13.914688 + 202: 18.82497,13.852188 + 203: 19.040247,14.032743 + 204: 18.908302,14.053577 + 205: 18.956915,14.143854 + 206: 19.37358,14.116077 + 207: 19.65136,14.116077 + 208: 19.429136,13.984133 + 209: 19.408302,13.803577 + 210: 19.470802,14.143854 + 211: 19.519415,14.150799 + 212: 19.915247,14.1369095 + 213: 20.047192,14.116077 + 214: 20.07497,13.907743 + 215: 19.908302,13.956354 + 216: 19.804136,13.845243 + 217: 20.44997,13.859133 + 218: 20.345802,13.907743 + 219: 20.345802,14.0744095 + 220: 20.429136,14.143854 + 221: 20.852747,14.164688 + 222: 20.894413,14.0119095 + 223: 20.866636,13.914688 + 224: 20.706913,14.004966 + - node: + color: '#343434FF' + id: t + decals: + 229: 19.255526,14.004966 + - node: + color: '#FFFFFFFF' + id: y + decals: + 370: 43.22227,13.289517 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 5904 + -1,1: + 0: 20046 + 0,2: + 0: 1 + 1: 4336 + -1,2: + 1: 240 + 0,3: + 0: 124 + -1,3: + 0: 454 + 1,2: + 1: 61182 + 1,1: + 1: 57548 + 1,3: + 0: 4096 + 1: 36032 + 1,4: + 0: 49697 + 1: 8 + 1,0: + 1: 34816 + 2,0: + 1: 65534 + 2,1: + 1: 61695 + 2,2: + 1: 48059 + 2,3: + 1: 65528 + 2,4: + 1: 52991 + 2,-1: + 1: 51200 + 3,0: + 1: 52735 + 3,1: + 1: 65535 + 3,2: + 1: 65535 + 3,3: + 1: 65535 + 3,-1: + 1: 65532 + 3,4: + 1: 65535 + 4,0: + 1: 65535 + 4,1: + 1: 65535 + 4,2: + 1: 65407 + 4,3: + 1: 65535 + 1,5: + 0: 8 + 2,5: + 0: 49712 + 1: 8 + 3,5: + 1: 3327 + 0: 4096 + 3,6: + 0: 193 + 3,7: + 0: 51328 + 4,4: + 1: 29951 + 4,5: + 1: 26487 + 4,6: + 0: 5136 + 1: 60064 + 4,7: + 0: 321 + 1: 60074 + 4,-1: + 1: 65535 + 5,0: + 1: 65535 + 5,1: + 1: 65535 + 5,2: + 1: 65535 + 5,3: + 1: 65535 + 5,-1: + 1: 65535 + 5,4: + 1: 65023 + 6,0: + 1: 40447 + 6,1: + 1: 63487 + 6,2: + 1: 65535 + 6,3: + 1: 54143 + 6,-1: + 1: 65393 + 6,4: + 1: 65516 + 7,0: + 1: 65395 + 7,1: + 1: 61695 + 7,2: + 1: 65294 + 7,3: + 1: 65535 + 7,-1: + 1: 4096 + 7,4: + 1: 383 + 0: 32768 + 8,1: + 1: 45073 + 8,2: + 1: 45955 + 8,3: + 1: 273 + 0: 35976 + 5,5: + 1: 16383 + 5,6: + 0: 16832 + 1: 12832 + 5,7: + 0: 3220 + 1: 61986 + 6,5: + 1: 383 + 0: 49152 + 6,6: + 0: 52 + 6,7: + 1: 28672 + 6,8: + 0: 25700 + 1: 16 + 7,5: + 0: 4192 + 8,4: + 0: 4134 + 4,-2: + 1: 57344 + 5,-2: + 1: 12288 + 9,4: + 0: 8 + 9,3: + 0: 49158 + 10,4: + 0: 143 + 10,3: + 0: 16401 + 1: 1228 + 11,4: + 0: 250 + 11,3: + 0: 40960 + 1: 255 + 12,4: + 0: 1 + 9,1: + 1: 61440 + 0: 1536 + 9,2: + 1: 62194 + 0: 2313 + 9,0: + 0: 51200 + 10,0: + 0: 20352 + 10,1: + 1: 56516 + 0: 272 + 10,2: + 0: 257 + 1: 56540 + 11,0: + 0: 43760 + 11,1: + 1: 65520 + 11,2: + 1: 65535 + 12,0: + 0: 16640 + 4,8: + 1: 65520 + 3,8: + 1: 35008 + 0: 12593 + 4,9: + 2: 544 + 4: 2176 + 3,9: + 3: 2176 + 0: 4881 + 4,10: + 0: 53145 + 3,10: + 0: 2272 + 5,8: + 1: 65520 + 5,10: + 0: 8132 + 5,9: + 4: 2720 + 6,10: + 0: 48 + 6,9: + 0: 17988 + 12,1: + 0: 50756 + 12,2: + 0: 51432 + 12,3: + 0: 17478 + -4,1: + 0: 42528 + -4,2: + 0: 41570 + -4,3: + 0: 38 + -4,0: + 0: 2048 + -3,0: + 0: 20224 + -3,1: + 1: 65520 + -3,2: + 1: 65535 + -3,3: + 1: 255 + 0: 16384 + -3,4: + 0: 15 + -2,0: + 0: 12032 + -2,1: + 1: 65520 + -2,2: + 1: 65535 + -2,3: + 1: 255 + 0: 8192 + -2,4: + 0: 15 + -4,4: + 0: 8 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AcousticGuitarInstrument + entities: + - uid: 5 + components: + - type: Transform + pos: 18.246344,8.455335 + parent: 4 + - uid: 6 + components: + - type: Transform + pos: 20.897657,8.360582 + parent: 4 +- proto: AdvMopItem + entities: + - uid: 7 + components: + - type: Transform + pos: 32.88247,7.5222054 + parent: 4 + - uid: 8 + components: + - type: Transform + pos: 32.36437,7.5222054 + parent: 4 +- proto: AirAlarm + entities: + - uid: 1752 + components: + - type: Transform + pos: 13.5,3.5 + parent: 4 + - type: DeviceList + devices: + - 2110 + - 2109 + - 2038 + - 2037 + - 2058 + - 2046 + - 2044 + - 2045 + - 2057 + - 2043 + - 2034 + - 2176 + - 2175 + - 2174 + - 2173 + - 2172 + - uid: 1792 + components: + - type: Transform + pos: -3.5,8.5 + parent: 4 + - type: DeviceList + devices: + - 2036 + - 2035 + - 2179 + - 2178 + - uid: 2040 + components: + - type: Transform + pos: 30.5,9.5 + parent: 4 + - type: DeviceList + devices: + - 2039 + - 2172 + - uid: 2054 + components: + - type: Transform + pos: 32.5,15.5 + parent: 4 + - type: DeviceList + devices: + - 2173 + - 2051 + - 1521 + - 2174 + - uid: 2056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 4 + - type: DeviceList + devices: + - 2176 + - 2177 + - 2179 + - 2036 + - 2053 +- proto: Airlock + entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 4 +- proto: AirlockBarLocked + entities: + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 4 +- proto: AirlockEngineeringLocked + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,14.5 + parent: 4 + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,33.5 + parent: 4 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,4.5 + parent: 4 + - uid: 2005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 4 +- proto: AirlockGlass + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 4 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 4 +- proto: AirlockHydroponicsLocked + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 4 +- proto: AirlockJanitorLocked + entities: + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 4 +- proto: AirlockKitchenLocked + entities: + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 4 +- proto: AirSensor + entities: + - uid: 1521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 2054 + - uid: 2034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - uid: 2035 + components: + - type: Transform + pos: -4.5,7.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1792 + - uid: 2036 + components: + - type: Transform + pos: 0.5,9.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1792 + - 2056 + - uid: 2037 + components: + - type: Transform + pos: 19.5,3.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - uid: 2038 + components: + - type: Transform + pos: 19.5,17.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - uid: 2039 + components: + - type: Transform + pos: 30.5,7.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 2040 + - uid: 2051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,20.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 2054 + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 4 + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 2056 + - uid: 2057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - uid: 2058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 +- proto: AlwaysPoweredlightBlue + entities: + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 4 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 4 + - uid: 22 + components: + - type: Transform + pos: 19.5,8.5 + parent: 4 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 4 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 4 +- proto: AlwaysPoweredLightLED + entities: + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 4 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 4 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 4 +- proto: AlwaysPoweredLightSodium + entities: + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 4 + - uid: 29 + components: + - type: Transform + pos: 13.5,21.5 + parent: 4 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 4 + - uid: 31 + components: + - type: Transform + pos: 9.5,18.5 + parent: 4 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-3.5 + parent: 4 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-3.5 + parent: 4 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 4 + - uid: 35 + components: + - type: Transform + pos: 8.5,5.5 + parent: 4 + - uid: 36 + components: + - type: Transform + pos: 30.5,5.5 + parent: 4 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 4 +- proto: AlwaysPoweredWallLight + entities: + - uid: 38 + components: + - type: Transform + pos: 44.5,13.5 + parent: 4 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,34.5 + parent: 4 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 4 + - uid: 42 + components: + - type: Transform + pos: 20.5,23.5 + parent: 4 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 4 + - uid: 44 + components: + - type: Transform + pos: 25.5,21.5 + parent: 4 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 4 + - uid: 46 + components: + - type: Transform + pos: 32.5,14.5 + parent: 4 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,15.5 + parent: 4 + - uid: 48 + components: + - type: Transform + pos: 29.5,17.5 + parent: 4 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 4 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 4 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 4 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,5.5 + parent: 4 +- proto: AtmosDeviceFanTiny + entities: + - uid: 412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,4.5 + parent: 4 + - uid: 413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 4 + - uid: 959 + components: + - type: Transform + pos: 0.5,12.5 + parent: 4 + - uid: 1463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,33.5 + parent: 4 + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 4 + - uid: 2209 + components: + - type: Transform + pos: 0.5,12.5 + parent: 4 +- proto: AtmosFixBlockerMarker + entities: + - uid: 1958 + components: + - type: Transform + pos: 19.5,38.5 + parent: 4 + - uid: 2055 + components: + - type: Transform + pos: 19.5,37.5 + parent: 4 + - uid: 2205 + components: + - type: Transform + pos: 23.5,38.5 + parent: 4 + - uid: 2206 + components: + - type: Transform + pos: 23.5,37.5 + parent: 4 + - uid: 2219 + components: + - type: Transform + pos: 21.5,38.5 + parent: 4 + - uid: 2225 + components: + - type: Transform + pos: 21.5,37.5 + parent: 4 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1464 + components: + - type: Transform + pos: 15.5,38.5 + parent: 4 + - uid: 1651 + components: + - type: Transform + pos: 15.5,37.5 + parent: 4 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1879 + components: + - type: Transform + pos: 17.5,38.5 + parent: 4 + - uid: 1940 + components: + - type: Transform + pos: 17.5,37.5 + parent: 4 +- proto: BarSignTheNet + entities: + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 4 +- proto: BaseGasCondenser + entities: + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' +- proto: BassGuitarInstrument + entities: + - uid: 56 + components: + - type: Transform + pos: 19.698298,8.299085 + parent: 4 + - uid: 57 + components: + - type: Transform + pos: 19.494879,8.286508 + parent: 4 +- proto: BlockGameArcade + entities: + - uid: 1190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 4 + - uid: 1248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 4 +- proto: BoozeDispenser + entities: + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 4 + - uid: 59 + components: + - type: Transform + pos: 9.5,18.5 + parent: 4 +- proto: BoxingBell + entities: + - uid: 67 + components: + - type: Transform + pos: -3.5,11.5 + parent: 4 + - uid: 68 + components: + - type: Transform + pos: -3.5,7.5 + parent: 4 +- proto: Bucket + entities: + - uid: 69 + components: + - type: Transform + pos: 30.84055,16.782692 + parent: 4 +- proto: BulletFoam + entities: + - uid: 2023 + components: + - type: Transform + rot: 5.144502477755841 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2024 + components: + - type: Transform + rot: 5.095613996556155 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2025 + components: + - type: Transform + rot: 5.061609825976792 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2026 + components: + - type: Transform + rot: 5.061941216988927 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2027 + components: + - type: Transform + rot: 5.045787789008386 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2028 + components: + - type: Transform + rot: 5.050852104308225 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2029 + components: + - type: Transform + rot: 5.064794387184811 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2030 + components: + - type: Transform + rot: 5.04897631804769 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2031 + components: + - type: Transform + rot: 5.0601658439704105 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo + - uid: 2032 + components: + - type: Transform + rot: 5.05758982906154 rad + pos: 1.3708158,217.14473 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.05,-0.15 + - 0.05,-0.15 + - 0.05,0.25 + - -0.05,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: Physics + bodyStatus: InAir + missingComponents: + - Ammo +- proto: CableApcExtension + entities: + - uid: 70 + components: + - type: Transform + pos: 34.5,7.5 + parent: 4 + - uid: 82 + components: + - type: Transform + pos: 35.5,7.5 + parent: 4 + - uid: 83 + components: + - type: Transform + pos: 44.5,7.5 + parent: 4 + - uid: 84 + components: + - type: Transform + pos: 43.5,7.5 + parent: 4 + - uid: 85 + components: + - type: Transform + pos: 42.5,7.5 + parent: 4 + - uid: 86 + components: + - type: Transform + pos: 41.5,7.5 + parent: 4 + - uid: 87 + components: + - type: Transform + pos: 40.5,7.5 + parent: 4 + - uid: 88 + components: + - type: Transform + pos: 39.5,7.5 + parent: 4 + - uid: 89 + components: + - type: Transform + pos: 38.5,7.5 + parent: 4 + - uid: 90 + components: + - type: Transform + pos: 37.5,7.5 + parent: 4 + - uid: 91 + components: + - type: Transform + pos: 36.5,7.5 + parent: 4 + - uid: 92 + components: + - type: Transform + pos: 35.5,7.5 + parent: 4 + - uid: 93 + components: + - type: Transform + pos: 33.5,7.5 + parent: 4 + - uid: 94 + components: + - type: Transform + pos: 32.5,7.5 + parent: 4 + - uid: 95 + components: + - type: Transform + pos: 31.5,7.5 + parent: 4 + - uid: 96 + components: + - type: Transform + pos: 30.5,7.5 + parent: 4 + - uid: 97 + components: + - type: Transform + pos: 29.5,7.5 + parent: 4 + - uid: 98 + components: + - type: Transform + pos: 28.5,7.5 + parent: 4 + - uid: 99 + components: + - type: Transform + pos: 27.5,7.5 + parent: 4 + - uid: 100 + components: + - type: Transform + pos: 26.5,7.5 + parent: 4 + - uid: 101 + components: + - type: Transform + pos: 25.5,7.5 + parent: 4 + - uid: 102 + components: + - type: Transform + pos: 25.5,7.5 + parent: 4 + - uid: 103 + components: + - type: Transform + pos: 25.5,8.5 + parent: 4 + - uid: 104 + components: + - type: Transform + pos: 25.5,9.5 + parent: 4 + - uid: 105 + components: + - type: Transform + pos: 25.5,10.5 + parent: 4 + - uid: 106 + components: + - type: Transform + pos: 25.5,11.5 + parent: 4 + - uid: 107 + components: + - type: Transform + pos: 24.5,11.5 + parent: 4 + - uid: 108 + components: + - type: Transform + pos: 24.5,12.5 + parent: 4 + - uid: 109 + components: + - type: Transform + pos: 23.5,12.5 + parent: 4 + - uid: 110 + components: + - type: Transform + pos: 23.5,13.5 + parent: 4 + - uid: 111 + components: + - type: Transform + pos: 22.5,13.5 + parent: 4 + - uid: 112 + components: + - type: Transform + pos: 22.5,14.5 + parent: 4 + - uid: 113 + components: + - type: Transform + pos: 21.5,14.5 + parent: 4 + - uid: 114 + components: + - type: Transform + pos: 20.5,14.5 + parent: 4 + - uid: 115 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4 + - uid: 116 + components: + - type: Transform + pos: 18.5,14.5 + parent: 4 + - uid: 117 + components: + - type: Transform + pos: 17.5,14.5 + parent: 4 + - uid: 118 + components: + - type: Transform + pos: 16.5,14.5 + parent: 4 + - uid: 119 + components: + - type: Transform + pos: 16.5,13.5 + parent: 4 + - uid: 120 + components: + - type: Transform + pos: 15.5,13.5 + parent: 4 + - uid: 121 + components: + - type: Transform + pos: 15.5,12.5 + parent: 4 + - uid: 122 + components: + - type: Transform + pos: 14.5,12.5 + parent: 4 + - uid: 123 + components: + - type: Transform + pos: 14.5,11.5 + parent: 4 + - uid: 124 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4 + - uid: 125 + components: + - type: Transform + pos: 13.5,10.5 + parent: 4 + - uid: 126 + components: + - type: Transform + pos: 13.5,9.5 + parent: 4 + - uid: 127 + components: + - type: Transform + pos: 13.5,8.5 + parent: 4 + - uid: 128 + components: + - type: Transform + pos: 13.5,7.5 + parent: 4 + - uid: 129 + components: + - type: Transform + pos: 14.5,7.5 + parent: 4 + - uid: 130 + components: + - type: Transform + pos: 14.5,6.5 + parent: 4 + - uid: 131 + components: + - type: Transform + pos: 15.5,6.5 + parent: 4 + - uid: 132 + components: + - type: Transform + pos: 15.5,5.5 + parent: 4 + - uid: 133 + components: + - type: Transform + pos: 16.5,5.5 + parent: 4 + - uid: 134 + components: + - type: Transform + pos: 16.5,4.5 + parent: 4 + - uid: 135 + components: + - type: Transform + pos: 17.5,4.5 + parent: 4 + - uid: 136 + components: + - type: Transform + pos: 18.5,4.5 + parent: 4 + - uid: 137 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4 + - uid: 138 + components: + - type: Transform + pos: 20.5,4.5 + parent: 4 + - uid: 139 + components: + - type: Transform + pos: 21.5,4.5 + parent: 4 + - uid: 140 + components: + - type: Transform + pos: 22.5,4.5 + parent: 4 + - uid: 141 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4 + - uid: 142 + components: + - type: Transform + pos: 23.5,5.5 + parent: 4 + - uid: 143 + components: + - type: Transform + pos: 23.5,6.5 + parent: 4 + - uid: 144 + components: + - type: Transform + pos: 24.5,6.5 + parent: 4 + - uid: 145 + components: + - type: Transform + pos: 24.5,7.5 + parent: 4 + - uid: 146 + components: + - type: Transform + pos: 26.5,10.5 + parent: 4 + - uid: 147 + components: + - type: Transform + pos: 27.5,10.5 + parent: 4 + - uid: 148 + components: + - type: Transform + pos: 28.5,10.5 + parent: 4 + - uid: 149 + components: + - type: Transform + pos: 29.5,10.5 + parent: 4 + - uid: 150 + components: + - type: Transform + pos: 29.5,11.5 + parent: 4 + - uid: 151 + components: + - type: Transform + pos: 29.5,12.5 + parent: 4 + - uid: 152 + components: + - type: Transform + pos: 29.5,13.5 + parent: 4 + - uid: 153 + components: + - type: Transform + pos: 29.5,14.5 + parent: 4 + - uid: 154 + components: + - type: Transform + pos: 29.5,15.5 + parent: 4 + - uid: 155 + components: + - type: Transform + pos: 30.5,13.5 + parent: 4 + - uid: 156 + components: + - type: Transform + pos: 31.5,13.5 + parent: 4 + - uid: 157 + components: + - type: Transform + pos: 30.5,11.5 + parent: 4 + - uid: 158 + components: + - type: Transform + pos: 31.5,11.5 + parent: 4 + - uid: 159 + components: + - type: Transform + pos: 32.5,11.5 + parent: 4 + - uid: 160 + components: + - type: Transform + pos: 29.5,16.5 + parent: 4 + - uid: 161 + components: + - type: Transform + pos: 30.5,16.5 + parent: 4 + - uid: 162 + components: + - type: Transform + pos: 28.5,16.5 + parent: 4 + - uid: 163 + components: + - type: Transform + pos: 20.5,15.5 + parent: 4 + - uid: 164 + components: + - type: Transform + pos: 20.5,16.5 + parent: 4 + - uid: 165 + components: + - type: Transform + pos: 20.5,17.5 + parent: 4 + - uid: 166 + components: + - type: Transform + pos: 20.5,18.5 + parent: 4 + - uid: 167 + components: + - type: Transform + pos: 20.5,19.5 + parent: 4 + - uid: 168 + components: + - type: Transform + pos: 20.5,20.5 + parent: 4 + - uid: 169 + components: + - type: Transform + pos: 20.5,21.5 + parent: 4 + - uid: 170 + components: + - type: Transform + pos: 20.5,22.5 + parent: 4 + - uid: 171 + components: + - type: Transform + pos: 20.5,20.5 + parent: 4 + - uid: 172 + components: + - type: Transform + pos: 21.5,20.5 + parent: 4 + - uid: 173 + components: + - type: Transform + pos: 22.5,20.5 + parent: 4 + - uid: 174 + components: + - type: Transform + pos: 23.5,20.5 + parent: 4 + - uid: 175 + components: + - type: Transform + pos: 24.5,20.5 + parent: 4 + - uid: 176 + components: + - type: Transform + pos: 25.5,20.5 + parent: 4 + - uid: 177 + components: + - type: Transform + pos: 26.5,20.5 + parent: 4 + - uid: 178 + components: + - type: Transform + pos: 24.5,19.5 + parent: 4 + - uid: 179 + components: + - type: Transform + pos: 26.5,19.5 + parent: 4 + - uid: 180 + components: + - type: Transform + pos: 22.5,21.5 + parent: 4 + - uid: 181 + components: + - type: Transform + pos: 24.5,18.5 + parent: 4 + - uid: 182 + components: + - type: Transform + pos: 18.5,15.5 + parent: 4 + - uid: 183 + components: + - type: Transform + pos: 18.5,16.5 + parent: 4 + - uid: 184 + components: + - type: Transform + pos: 18.5,17.5 + parent: 4 + - uid: 185 + components: + - type: Transform + pos: 18.5,18.5 + parent: 4 + - uid: 186 + components: + - type: Transform + pos: 18.5,19.5 + parent: 4 + - uid: 187 + components: + - type: Transform + pos: 18.5,20.5 + parent: 4 + - uid: 188 + components: + - type: Transform + pos: 18.5,21.5 + parent: 4 + - uid: 189 + components: + - type: Transform + pos: 18.5,22.5 + parent: 4 + - uid: 190 + components: + - type: Transform + pos: 17.5,20.5 + parent: 4 + - uid: 191 + components: + - type: Transform + pos: 16.5,20.5 + parent: 4 + - uid: 192 + components: + - type: Transform + pos: 15.5,20.5 + parent: 4 + - uid: 193 + components: + - type: Transform + pos: 14.5,20.5 + parent: 4 + - uid: 194 + components: + - type: Transform + pos: 13.5,20.5 + parent: 4 + - uid: 195 + components: + - type: Transform + pos: 13.5,19.5 + parent: 4 + - uid: 196 + components: + - type: Transform + pos: 13.5,18.5 + parent: 4 + - uid: 197 + components: + - type: Transform + pos: 12.5,18.5 + parent: 4 + - uid: 198 + components: + - type: Transform + pos: 12.5,7.5 + parent: 4 + - uid: 199 + components: + - type: Transform + pos: 11.5,17.5 + parent: 4 + - uid: 200 + components: + - type: Transform + pos: 11.5,7.5 + parent: 4 + - uid: 201 + components: + - type: Transform + pos: 10.5,16.5 + parent: 4 + - uid: 202 + components: + - type: Transform + pos: 15.5,21.5 + parent: 4 + - uid: 203 + components: + - type: Transform + pos: 9.5,11.5 + parent: 4 + - uid: 204 + components: + - type: Transform + pos: 9.5,15.5 + parent: 4 + - uid: 205 + components: + - type: Transform + pos: 8.5,15.5 + parent: 4 + - uid: 206 + components: + - type: Transform + pos: 8.5,14.5 + parent: 4 + - uid: 207 + components: + - type: Transform + pos: 8.5,13.5 + parent: 4 + - uid: 208 + components: + - type: Transform + pos: 8.5,12.5 + parent: 4 + - uid: 209 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4 + - uid: 210 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4 + - uid: 211 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4 + - uid: 212 + components: + - type: Transform + pos: 9.5,13.5 + parent: 4 + - uid: 213 + components: + - type: Transform + pos: 7.5,13.5 + parent: 4 + - uid: 214 + components: + - type: Transform + pos: 11.5,18.5 + parent: 4 + - uid: 215 + components: + - type: Transform + pos: 10.5,17.5 + parent: 4 + - uid: 216 + components: + - type: Transform + pos: 9.5,16.5 + parent: 4 + - uid: 217 + components: + - type: Transform + pos: 10.5,7.5 + parent: 4 + - uid: 218 + components: + - type: Transform + pos: 9.5,7.5 + parent: 4 + - uid: 219 + components: + - type: Transform + pos: 8.5,7.5 + parent: 4 + - uid: 220 + components: + - type: Transform + pos: 7.5,7.5 + parent: 4 + - uid: 221 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4 + - uid: 222 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4 + - uid: 223 + components: + - type: Transform + pos: 22.5,15.5 + parent: 4 + - uid: 224 + components: + - type: Transform + pos: 23.5,15.5 + parent: 4 + - uid: 225 + components: + - type: Transform + pos: 25.5,12.5 + parent: 4 + - uid: 226 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4 + - uid: 227 + components: + - type: Transform + pos: 19.5,3.5 + parent: 4 + - uid: 228 + components: + - type: Transform + pos: 19.5,2.5 + parent: 4 + - uid: 229 + components: + - type: Transform + pos: 19.5,0.5 + parent: 4 + - uid: 230 + components: + - type: Transform + pos: 19.5,1.5 + parent: 4 + - uid: 231 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4 + - uid: 232 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 4 + - uid: 233 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 4 + - uid: 234 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 4 + - uid: 235 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 4 + - uid: 236 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 4 + - uid: 237 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 4 + - uid: 238 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 4 + - uid: 239 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4 + - uid: 240 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4 + - uid: 241 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 4 + - uid: 242 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 4 + - uid: 243 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 4 + - uid: 244 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4 + - uid: 245 + components: + - type: Transform + pos: 27.5,1.5 + parent: 4 + - uid: 246 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4 + - uid: 247 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4 + - uid: 248 + components: + - type: Transform + pos: 29.5,2.5 + parent: 4 + - uid: 249 + components: + - type: Transform + pos: 29.5,3.5 + parent: 4 + - uid: 250 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 4 + - uid: 251 + components: + - type: Transform + pos: 30.5,3.5 + parent: 4 + - uid: 252 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4 + - uid: 253 + components: + - type: Transform + pos: 28.5,4.5 + parent: 4 + - uid: 254 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4 + - uid: 255 + components: + - type: Transform + pos: 26.5,4.5 + parent: 4 + - uid: 256 + components: + - type: Transform + pos: 25.5,4.5 + parent: 4 + - uid: 257 + components: + - type: Transform + pos: 24.5,4.5 + parent: 4 + - uid: 258 + components: + - type: Transform + pos: 23.5,4.5 + parent: 4 + - uid: 259 + components: + - type: Transform + pos: 15.5,4.5 + parent: 4 + - uid: 260 + components: + - type: Transform + pos: 14.5,4.5 + parent: 4 + - uid: 261 + components: + - type: Transform + pos: 13.5,4.5 + parent: 4 + - uid: 262 + components: + - type: Transform + pos: 12.5,4.5 + parent: 4 + - uid: 263 + components: + - type: Transform + pos: 11.5,4.5 + parent: 4 + - uid: 264 + components: + - type: Transform + pos: 10.5,4.5 + parent: 4 + - uid: 265 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4 + - uid: 266 + components: + - type: Transform + pos: 31.5,3.5 + parent: 4 + - uid: 267 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 4 + - uid: 268 + components: + - type: Transform + pos: 27.5,2.5 + parent: 4 + - uid: 269 + components: + - type: Transform + pos: 11.5,0.5 + parent: 4 + - uid: 270 + components: + - type: Transform + pos: 11.5,1.5 + parent: 4 + - uid: 271 + components: + - type: Transform + pos: 10.5,1.5 + parent: 4 + - uid: 272 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4 + - uid: 273 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4 + - uid: 274 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 4 + - uid: 275 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 4 + - uid: 276 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 4 + - uid: 277 + components: + - type: Transform + pos: 26.5,1.5 + parent: 4 + - uid: 278 + components: + - type: Transform + pos: 9.5,3.5 + parent: 4 + - uid: 279 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 4 + - uid: 280 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 4 + - uid: 281 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 4 + - uid: 282 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 4 + - uid: 283 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4 + - uid: 284 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 4 + - uid: 285 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 4 + - uid: 286 + components: + - type: Transform + pos: 12.5,1.5 + parent: 4 + - uid: 287 + components: + - type: Transform + pos: 11.5,2.5 + parent: 4 + - uid: 288 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 4 + - uid: 289 + components: + - type: Transform + pos: 8.5,3.5 + parent: 4 + - uid: 290 + components: + - type: Transform + pos: 7.5,3.5 + parent: 4 + - uid: 291 + components: + - type: Transform + pos: 7.5,4.5 + parent: 4 + - uid: 292 + components: + - type: Transform + pos: 31.5,4.5 + parent: 4 + - uid: 293 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 4 + - uid: 294 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 4 + - uid: 295 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 4 + - uid: 296 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 4 + - uid: 297 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 4 + - uid: 298 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 4 + - uid: 299 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 4 + - uid: 300 + components: + - type: Transform + pos: 13.5,9.5 + parent: 4 + - uid: 301 + components: + - type: Transform + pos: 14.5,9.5 + parent: 4 + - uid: 302 + components: + - type: Transform + pos: 15.5,9.5 + parent: 4 + - uid: 303 + components: + - type: Transform + pos: 16.5,9.5 + parent: 4 + - uid: 304 + components: + - type: Transform + pos: 17.5,9.5 + parent: 4 + - uid: 305 + components: + - type: Transform + pos: 18.5,9.5 + parent: 4 + - uid: 306 + components: + - type: Transform + pos: 19.5,9.5 + parent: 4 + - uid: 307 + components: + - type: Transform + pos: 20.5,9.5 + parent: 4 + - uid: 308 + components: + - type: Transform + pos: 21.5,9.5 + parent: 4 + - uid: 309 + components: + - type: Transform + pos: 22.5,9.5 + parent: 4 + - uid: 310 + components: + - type: Transform + pos: 23.5,9.5 + parent: 4 + - uid: 311 + components: + - type: Transform + pos: 24.5,9.5 + parent: 4 + - uid: 312 + components: + - type: Transform + pos: 19.5,13.5 + parent: 4 + - uid: 313 + components: + - type: Transform + pos: 19.5,12.5 + parent: 4 + - uid: 314 + components: + - type: Transform + pos: 19.5,11.5 + parent: 4 + - uid: 315 + components: + - type: Transform + pos: 19.5,10.5 + parent: 4 + - uid: 316 + components: + - type: Transform + pos: 19.5,9.5 + parent: 4 + - uid: 317 + components: + - type: Transform + pos: 19.5,8.5 + parent: 4 + - uid: 318 + components: + - type: Transform + pos: 19.5,7.5 + parent: 4 + - uid: 319 + components: + - type: Transform + pos: 19.5,6.5 + parent: 4 + - uid: 320 + components: + - type: Transform + pos: 19.5,5.5 + parent: 4 + - uid: 321 + components: + - type: Transform + pos: 12.5,9.5 + parent: 4 + - uid: 322 + components: + - type: Transform + pos: 11.5,9.5 + parent: 4 + - uid: 323 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4 + - uid: 324 + components: + - type: Transform + pos: 20.5,23.5 + parent: 4 + - uid: 325 + components: + - type: Transform + pos: 20.5,24.5 + parent: 4 + - uid: 326 + components: + - type: Transform + pos: 21.5,24.5 + parent: 4 + - uid: 327 + components: + - type: Transform + pos: 21.5,26.5 + parent: 4 + - uid: 328 + components: + - type: Transform + pos: 21.5,27.5 + parent: 4 + - uid: 329 + components: + - type: Transform + pos: 21.5,28.5 + parent: 4 + - uid: 330 + components: + - type: Transform + pos: 21.5,29.5 + parent: 4 + - uid: 331 + components: + - type: Transform + pos: 21.5,30.5 + parent: 4 + - uid: 332 + components: + - type: Transform + pos: 21.5,31.5 + parent: 4 + - uid: 333 + components: + - type: Transform + pos: 21.5,32.5 + parent: 4 + - uid: 334 + components: + - type: Transform + pos: 21.5,33.5 + parent: 4 + - uid: 335 + components: + - type: Transform + pos: 23.5,33.5 + parent: 4 + - uid: 336 + components: + - type: Transform + pos: 22.5,33.5 + parent: 4 + - uid: 337 + components: + - type: Transform + pos: 21.5,33.5 + parent: 4 + - uid: 338 + components: + - type: Transform + pos: 20.5,33.5 + parent: 4 + - uid: 339 + components: + - type: Transform + pos: 19.5,33.5 + parent: 4 + - uid: 340 + components: + - type: Transform + pos: 18.5,33.5 + parent: 4 + - uid: 341 + components: + - type: Transform + pos: 17.5,33.5 + parent: 4 + - uid: 342 + components: + - type: Transform + pos: 16.5,33.5 + parent: 4 + - uid: 343 + components: + - type: Transform + pos: 15.5,33.5 + parent: 4 + - uid: 344 + components: + - type: Transform + pos: 15.5,34.5 + parent: 4 + - uid: 345 + components: + - type: Transform + pos: 15.5,35.5 + parent: 4 + - uid: 346 + components: + - type: Transform + pos: 15.5,35.5 + parent: 4 + - uid: 347 + components: + - type: Transform + pos: 16.5,35.5 + parent: 4 + - uid: 348 + components: + - type: Transform + pos: 17.5,35.5 + parent: 4 + - uid: 349 + components: + - type: Transform + pos: 18.5,35.5 + parent: 4 + - uid: 350 + components: + - type: Transform + pos: 19.5,35.5 + parent: 4 + - uid: 351 + components: + - type: Transform + pos: 20.5,35.5 + parent: 4 + - uid: 352 + components: + - type: Transform + pos: 21.5,35.5 + parent: 4 + - uid: 353 + components: + - type: Transform + pos: 22.5,35.5 + parent: 4 + - uid: 354 + components: + - type: Transform + pos: 23.5,35.5 + parent: 4 + - uid: 355 + components: + - type: Transform + pos: 22.5,35.5 + parent: 4 + - uid: 356 + components: + - type: Transform + pos: 22.5,36.5 + parent: 4 + - uid: 357 + components: + - type: Transform + pos: 22.5,37.5 + parent: 4 + - uid: 358 + components: + - type: Transform + pos: 22.5,38.5 + parent: 4 + - uid: 359 + components: + - type: Transform + pos: 20.5,35.5 + parent: 4 + - uid: 360 + components: + - type: Transform + pos: 20.5,36.5 + parent: 4 + - uid: 361 + components: + - type: Transform + pos: 20.5,37.5 + parent: 4 + - uid: 362 + components: + - type: Transform + pos: 20.5,38.5 + parent: 4 + - uid: 363 + components: + - type: Transform + pos: 18.5,35.5 + parent: 4 + - uid: 364 + components: + - type: Transform + pos: 18.5,36.5 + parent: 4 + - uid: 365 + components: + - type: Transform + pos: 18.5,37.5 + parent: 4 + - uid: 366 + components: + - type: Transform + pos: 18.5,38.5 + parent: 4 + - uid: 367 + components: + - type: Transform + pos: 16.5,35.5 + parent: 4 + - uid: 368 + components: + - type: Transform + pos: 16.5,36.5 + parent: 4 + - uid: 369 + components: + - type: Transform + pos: 16.5,37.5 + parent: 4 + - uid: 370 + components: + - type: Transform + pos: 16.5,38.5 + parent: 4 + - uid: 371 + components: + - type: Transform + pos: 6.5,8.5 + parent: 4 + - uid: 372 + components: + - type: Transform + pos: 6.5,9.5 + parent: 4 + - uid: 373 + components: + - type: Transform + pos: 5.5,9.5 + parent: 4 + - uid: 374 + components: + - type: Transform + pos: 4.5,9.5 + parent: 4 + - uid: 375 + components: + - type: Transform + pos: 3.5,9.5 + parent: 4 + - uid: 376 + components: + - type: Transform + pos: 2.5,9.5 + parent: 4 + - uid: 377 + components: + - type: Transform + pos: 1.5,9.5 + parent: 4 + - uid: 378 + components: + - type: Transform + pos: 0.5,9.5 + parent: 4 + - uid: 379 + components: + - type: Transform + pos: -0.5,9.5 + parent: 4 + - uid: 380 + components: + - type: Transform + pos: -1.5,9.5 + parent: 4 + - uid: 381 + components: + - type: Transform + pos: -2.5,9.5 + parent: 4 + - uid: 382 + components: + - type: Transform + pos: -3.5,9.5 + parent: 4 + - uid: 383 + components: + - type: Transform + pos: -4.5,9.5 + parent: 4 + - uid: 384 + components: + - type: Transform + pos: -4.5,9.5 + parent: 4 + - uid: 385 + components: + - type: Transform + pos: -4.5,10.5 + parent: 4 + - uid: 386 + components: + - type: Transform + pos: -4.5,11.5 + parent: 4 + - uid: 387 + components: + - type: Transform + pos: -4.5,12.5 + parent: 4 + - uid: 388 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4 + - uid: 389 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4 + - uid: 390 + components: + - type: Transform + pos: -5.5,13.5 + parent: 4 + - uid: 391 + components: + - type: Transform + pos: -6.5,13.5 + parent: 4 + - uid: 392 + components: + - type: Transform + pos: -7.5,13.5 + parent: 4 + - uid: 393 + components: + - type: Transform + pos: -8.5,13.5 + parent: 4 + - uid: 394 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4 + - uid: 395 + components: + - type: Transform + pos: -10.5,13.5 + parent: 4 + - uid: 396 + components: + - type: Transform + pos: -11.5,13.5 + parent: 4 + - uid: 397 + components: + - type: Transform + pos: -4.5,9.5 + parent: 4 + - uid: 398 + components: + - type: Transform + pos: -4.5,8.5 + parent: 4 + - uid: 399 + components: + - type: Transform + pos: -4.5,7.5 + parent: 4 + - uid: 400 + components: + - type: Transform + pos: -4.5,6.5 + parent: 4 + - uid: 401 + components: + - type: Transform + pos: -4.5,5.5 + parent: 4 + - uid: 402 + components: + - type: Transform + pos: -4.5,5.5 + parent: 4 + - uid: 403 + components: + - type: Transform + pos: -5.5,5.5 + parent: 4 + - uid: 404 + components: + - type: Transform + pos: -6.5,5.5 + parent: 4 + - uid: 405 + components: + - type: Transform + pos: -7.5,5.5 + parent: 4 + - uid: 406 + components: + - type: Transform + pos: -8.5,5.5 + parent: 4 + - uid: 407 + components: + - type: Transform + pos: -9.5,5.5 + parent: 4 + - uid: 408 + components: + - type: Transform + pos: -10.5,5.5 + parent: 4 + - uid: 418 + components: + - type: Transform + pos: 45.5,7.5 + parent: 4 + - uid: 423 + components: + - type: Transform + pos: 47.5,6.5 + parent: 4 + - uid: 433 + components: + - type: Transform + pos: 47.5,5.5 + parent: 4 + - uid: 441 + components: + - type: Transform + pos: 46.5,7.5 + parent: 4 + - uid: 1461 + components: + - type: Transform + pos: 47.5,7.5 + parent: 4 + - uid: 2231 + components: + - type: Transform + pos: 21.5,31.5 + parent: 4 + - uid: 2242 + components: + - type: Transform + pos: 23.5,31.5 + parent: 4 + - uid: 2243 + components: + - type: Transform + pos: 24.5,31.5 + parent: 4 + - uid: 2244 + components: + - type: Transform + pos: 25.5,31.5 + parent: 4 + - uid: 2245 + components: + - type: Transform + pos: 22.5,31.5 + parent: 4 +- proto: CableHV + entities: + - uid: 52 + components: + - type: Transform + pos: 47.5,11.5 + parent: 4 + - uid: 410 + components: + - type: Transform + pos: 47.5,10.5 + parent: 4 + - uid: 411 + components: + - type: Transform + pos: 47.5,9.5 + parent: 4 + - uid: 416 + components: + - type: Transform + pos: 44.5,11.5 + parent: 4 + - uid: 424 + components: + - type: Transform + pos: 43.5,11.5 + parent: 4 + - uid: 425 + components: + - type: Transform + pos: 42.5,11.5 + parent: 4 + - uid: 426 + components: + - type: Transform + pos: 41.5,11.5 + parent: 4 + - uid: 427 + components: + - type: Transform + pos: 40.5,11.5 + parent: 4 + - uid: 428 + components: + - type: Transform + pos: 39.5,11.5 + parent: 4 + - uid: 429 + components: + - type: Transform + pos: 38.5,11.5 + parent: 4 + - uid: 430 + components: + - type: Transform + pos: 37.5,11.5 + parent: 4 + - uid: 431 + components: + - type: Transform + pos: 36.5,11.5 + parent: 4 + - uid: 432 + components: + - type: Transform + pos: 35.5,11.5 + parent: 4 + - uid: 449 + components: + - type: Transform + pos: 46.5,11.5 + parent: 4 + - uid: 1458 + components: + - type: Transform + pos: 45.5,11.5 + parent: 4 +- proto: CableMV + entities: + - uid: 53 + components: + - type: Transform + pos: 44.5,9.5 + parent: 4 + - uid: 80 + components: + - type: Transform + pos: 45.5,9.5 + parent: 4 + - uid: 437 + components: + - type: Transform + pos: 47.5,8.5 + parent: 4 + - uid: 438 + components: + - type: Transform + pos: 47.5,7.5 + parent: 4 + - uid: 439 + components: + - type: Transform + pos: 47.5,9.5 + parent: 4 + - uid: 440 + components: + - type: Transform + pos: 46.5,9.5 + parent: 4 + - uid: 450 + components: + - type: Transform + pos: 41.5,11.5 + parent: 4 + - uid: 451 + components: + - type: Transform + pos: 43.5,9.5 + parent: 4 + - uid: 452 + components: + - type: Transform + pos: 42.5,9.5 + parent: 4 + - uid: 453 + components: + - type: Transform + pos: 41.5,9.5 + parent: 4 + - uid: 454 + components: + - type: Transform + pos: 39.5,9.5 + parent: 4 + - uid: 455 + components: + - type: Transform + pos: 35.5,9.5 + parent: 4 + - uid: 456 + components: + - type: Transform + pos: 36.5,9.5 + parent: 4 + - uid: 457 + components: + - type: Transform + pos: 37.5,9.5 + parent: 4 + - uid: 458 + components: + - type: Transform + pos: 38.5,9.5 + parent: 4 + - uid: 459 + components: + - type: Transform + pos: 39.5,9.5 + parent: 4 + - uid: 460 + components: + - type: Transform + pos: 40.5,9.5 + parent: 4 + - uid: 461 + components: + - type: Transform + pos: 41.5,9.5 + parent: 4 + - uid: 462 + components: + - type: Transform + pos: 42.5,9.5 + parent: 4 + - uid: 463 + components: + - type: Transform + pos: 35.5,9.5 + parent: 4 + - uid: 464 + components: + - type: Transform + pos: 34.5,9.5 + parent: 4 + - uid: 465 + components: + - type: Transform + pos: 33.5,9.5 + parent: 4 + - uid: 466 + components: + - type: Transform + pos: 32.5,9.5 + parent: 4 + - uid: 467 + components: + - type: Transform + pos: 31.5,9.5 + parent: 4 + - uid: 468 + components: + - type: Transform + pos: 30.5,9.5 + parent: 4 + - uid: 469 + components: + - type: Transform + pos: 29.5,9.5 + parent: 4 + - uid: 470 + components: + - type: Transform + pos: 28.5,9.5 + parent: 4 + - uid: 471 + components: + - type: Transform + pos: 27.5,9.5 + parent: 4 + - uid: 472 + components: + - type: Transform + pos: 26.5,9.5 + parent: 4 + - uid: 473 + components: + - type: Transform + pos: 25.5,9.5 + parent: 4 + - uid: 474 + components: + - type: Transform + pos: 25.5,10.5 + parent: 4 + - uid: 475 + components: + - type: Transform + pos: 25.5,11.5 + parent: 4 + - uid: 476 + components: + - type: Transform + pos: 24.5,11.5 + parent: 4 + - uid: 477 + components: + - type: Transform + pos: 24.5,12.5 + parent: 4 + - uid: 478 + components: + - type: Transform + pos: 23.5,12.5 + parent: 4 + - uid: 479 + components: + - type: Transform + pos: 23.5,13.5 + parent: 4 + - uid: 480 + components: + - type: Transform + pos: 22.5,13.5 + parent: 4 + - uid: 481 + components: + - type: Transform + pos: 22.5,14.5 + parent: 4 + - uid: 482 + components: + - type: Transform + pos: 21.5,14.5 + parent: 4 + - uid: 483 + components: + - type: Transform + pos: 20.5,14.5 + parent: 4 + - uid: 484 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4 + - uid: 485 + components: + - type: Transform + pos: 18.5,14.5 + parent: 4 + - uid: 486 + components: + - type: Transform + pos: 17.5,14.5 + parent: 4 + - uid: 487 + components: + - type: Transform + pos: 16.5,14.5 + parent: 4 + - uid: 488 + components: + - type: Transform + pos: 16.5,13.5 + parent: 4 + - uid: 489 + components: + - type: Transform + pos: 15.5,13.5 + parent: 4 + - uid: 490 + components: + - type: Transform + pos: 15.5,12.5 + parent: 4 + - uid: 491 + components: + - type: Transform + pos: 14.5,12.5 + parent: 4 + - uid: 492 + components: + - type: Transform + pos: 14.5,11.5 + parent: 4 + - uid: 493 + components: + - type: Transform + pos: 14.5,11.5 + parent: 4 + - uid: 494 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4 + - uid: 495 + components: + - type: Transform + pos: 13.5,7.5 + parent: 4 + - uid: 496 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4 + - uid: 497 + components: + - type: Transform + pos: 13.5,10.5 + parent: 4 + - uid: 498 + components: + - type: Transform + pos: 13.5,9.5 + parent: 4 + - uid: 499 + components: + - type: Transform + pos: 13.5,8.5 + parent: 4 + - uid: 500 + components: + - type: Transform + pos: 14.5,7.5 + parent: 4 + - uid: 501 + components: + - type: Transform + pos: 14.5,6.5 + parent: 4 + - uid: 502 + components: + - type: Transform + pos: 15.5,6.5 + parent: 4 + - uid: 503 + components: + - type: Transform + pos: 15.5,5.5 + parent: 4 + - uid: 504 + components: + - type: Transform + pos: 16.5,5.5 + parent: 4 + - uid: 505 + components: + - type: Transform + pos: 16.5,4.5 + parent: 4 + - uid: 506 + components: + - type: Transform + pos: 17.5,4.5 + parent: 4 + - uid: 507 + components: + - type: Transform + pos: 18.5,4.5 + parent: 4 + - uid: 508 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4 + - uid: 509 + components: + - type: Transform + pos: 20.5,4.5 + parent: 4 + - uid: 510 + components: + - type: Transform + pos: 21.5,4.5 + parent: 4 + - uid: 511 + components: + - type: Transform + pos: 22.5,4.5 + parent: 4 + - uid: 512 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4 + - uid: 513 + components: + - type: Transform + pos: 23.5,5.5 + parent: 4 + - uid: 514 + components: + - type: Transform + pos: 23.5,6.5 + parent: 4 + - uid: 515 + components: + - type: Transform + pos: 24.5,6.5 + parent: 4 + - uid: 516 + components: + - type: Transform + pos: 24.5,7.5 + parent: 4 + - uid: 517 + components: + - type: Transform + pos: 25.5,7.5 + parent: 4 + - uid: 518 + components: + - type: Transform + pos: 25.5,8.5 + parent: 4 + - uid: 519 + components: + - type: Transform + pos: 20.5,15.5 + parent: 4 + - uid: 520 + components: + - type: Transform + pos: 20.5,16.5 + parent: 4 + - uid: 521 + components: + - type: Transform + pos: 20.5,17.5 + parent: 4 + - uid: 522 + components: + - type: Transform + pos: 20.5,18.5 + parent: 4 + - uid: 523 + components: + - type: Transform + pos: 20.5,19.5 + parent: 4 + - uid: 524 + components: + - type: Transform + pos: 20.5,20.5 + parent: 4 + - uid: 525 + components: + - type: Transform + pos: 20.5,20.5 + parent: 4 + - uid: 526 + components: + - type: Transform + pos: 21.5,20.5 + parent: 4 + - uid: 527 + components: + - type: Transform + pos: 22.5,20.5 + parent: 4 + - uid: 528 + components: + - type: Transform + pos: 23.5,20.5 + parent: 4 + - uid: 529 + components: + - type: Transform + pos: 24.5,20.5 + parent: 4 + - uid: 530 + components: + - type: Transform + pos: 25.5,20.5 + parent: 4 + - uid: 531 + components: + - type: Transform + pos: 26.5,20.5 + parent: 4 + - uid: 532 + components: + - type: Transform + pos: 24.5,19.5 + parent: 4 + - uid: 533 + components: + - type: Transform + pos: 24.5,18.5 + parent: 4 + - uid: 534 + components: + - type: Transform + pos: 26.5,19.5 + parent: 4 + - uid: 535 + components: + - type: Transform + pos: 22.5,21.5 + parent: 4 + - uid: 536 + components: + - type: Transform + pos: 20.5,21.5 + parent: 4 + - uid: 537 + components: + - type: Transform + pos: 20.5,22.5 + parent: 4 + - uid: 538 + components: + - type: Transform + pos: 18.5,15.5 + parent: 4 + - uid: 539 + components: + - type: Transform + pos: 18.5,16.5 + parent: 4 + - uid: 540 + components: + - type: Transform + pos: 18.5,17.5 + parent: 4 + - uid: 541 + components: + - type: Transform + pos: 18.5,18.5 + parent: 4 + - uid: 542 + components: + - type: Transform + pos: 18.5,19.5 + parent: 4 + - uid: 543 + components: + - type: Transform + pos: 18.5,20.5 + parent: 4 + - uid: 544 + components: + - type: Transform + pos: 18.5,21.5 + parent: 4 + - uid: 545 + components: + - type: Transform + pos: 18.5,22.5 + parent: 4 + - uid: 546 + components: + - type: Transform + pos: 18.5,20.5 + parent: 4 + - uid: 547 + components: + - type: Transform + pos: 17.5,20.5 + parent: 4 + - uid: 548 + components: + - type: Transform + pos: 16.5,20.5 + parent: 4 + - uid: 549 + components: + - type: Transform + pos: 15.5,20.5 + parent: 4 + - uid: 550 + components: + - type: Transform + pos: 15.5,21.5 + parent: 4 + - uid: 551 + components: + - type: Transform + pos: 15.5,20.5 + parent: 4 + - uid: 552 + components: + - type: Transform + pos: 14.5,20.5 + parent: 4 + - uid: 553 + components: + - type: Transform + pos: 13.5,20.5 + parent: 4 + - uid: 554 + components: + - type: Transform + pos: 13.5,20.5 + parent: 4 + - uid: 555 + components: + - type: Transform + pos: 13.5,19.5 + parent: 4 + - uid: 556 + components: + - type: Transform + pos: 13.5,18.5 + parent: 4 + - uid: 557 + components: + - type: Transform + pos: 13.5,18.5 + parent: 4 + - uid: 558 + components: + - type: Transform + pos: 12.5,18.5 + parent: 4 + - uid: 559 + components: + - type: Transform + pos: 11.5,18.5 + parent: 4 + - uid: 560 + components: + - type: Transform + pos: 11.5,17.5 + parent: 4 + - uid: 561 + components: + - type: Transform + pos: 10.5,17.5 + parent: 4 + - uid: 562 + components: + - type: Transform + pos: 10.5,16.5 + parent: 4 + - uid: 563 + components: + - type: Transform + pos: 9.5,15.5 + parent: 4 + - uid: 564 + components: + - type: Transform + pos: 9.5,16.5 + parent: 4 + - uid: 565 + components: + - type: Transform + pos: 8.5,15.5 + parent: 4 + - uid: 566 + components: + - type: Transform + pos: 8.5,14.5 + parent: 4 + - uid: 567 + components: + - type: Transform + pos: 9.5,13.5 + parent: 4 + - uid: 568 + components: + - type: Transform + pos: 8.5,13.5 + parent: 4 + - uid: 569 + components: + - type: Transform + pos: 7.5,13.5 + parent: 4 + - uid: 570 + components: + - type: Transform + pos: 8.5,13.5 + parent: 4 + - uid: 571 + components: + - type: Transform + pos: 8.5,12.5 + parent: 4 + - uid: 572 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4 + - uid: 573 + components: + - type: Transform + pos: 9.5,11.5 + parent: 4 + - uid: 574 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4 + - uid: 575 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4 + - uid: 576 + components: + - type: Transform + pos: 12.5,9.5 + parent: 4 + - uid: 577 + components: + - type: Transform + pos: 11.5,9.5 + parent: 4 + - uid: 578 + components: + - type: Transform + pos: 13.5,9.5 + parent: 4 + - uid: 579 + components: + - type: Transform + pos: 14.5,9.5 + parent: 4 + - uid: 580 + components: + - type: Transform + pos: 15.5,9.5 + parent: 4 + - uid: 581 + components: + - type: Transform + pos: 16.5,9.5 + parent: 4 + - uid: 582 + components: + - type: Transform + pos: 17.5,9.5 + parent: 4 + - uid: 583 + components: + - type: Transform + pos: 18.5,9.5 + parent: 4 + - uid: 584 + components: + - type: Transform + pos: 19.5,9.5 + parent: 4 + - uid: 585 + components: + - type: Transform + pos: 20.5,9.5 + parent: 4 + - uid: 586 + components: + - type: Transform + pos: 21.5,9.5 + parent: 4 + - uid: 587 + components: + - type: Transform + pos: 22.5,9.5 + parent: 4 + - uid: 588 + components: + - type: Transform + pos: 23.5,9.5 + parent: 4 + - uid: 589 + components: + - type: Transform + pos: 24.5,9.5 + parent: 4 + - uid: 590 + components: + - type: Transform + pos: 25.5,9.5 + parent: 4 + - uid: 591 + components: + - type: Transform + pos: 26.5,10.5 + parent: 4 + - uid: 592 + components: + - type: Transform + pos: 27.5,10.5 + parent: 4 + - uid: 593 + components: + - type: Transform + pos: 25.5,12.5 + parent: 4 + - uid: 594 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4 + - uid: 595 + components: + - type: Transform + pos: 22.5,14.5 + parent: 4 + - uid: 596 + components: + - type: Transform + pos: 23.5,15.5 + parent: 4 + - uid: 597 + components: + - type: Transform + pos: 22.5,15.5 + parent: 4 + - uid: 598 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4 + - uid: 599 + components: + - type: Transform + pos: 19.5,13.5 + parent: 4 + - uid: 600 + components: + - type: Transform + pos: 19.5,12.5 + parent: 4 + - uid: 601 + components: + - type: Transform + pos: 19.5,11.5 + parent: 4 + - uid: 602 + components: + - type: Transform + pos: 19.5,10.5 + parent: 4 + - uid: 603 + components: + - type: Transform + pos: 19.5,9.5 + parent: 4 + - uid: 604 + components: + - type: Transform + pos: 19.5,8.5 + parent: 4 + - uid: 605 + components: + - type: Transform + pos: 19.5,7.5 + parent: 4 + - uid: 606 + components: + - type: Transform + pos: 19.5,6.5 + parent: 4 + - uid: 607 + components: + - type: Transform + pos: 19.5,5.5 + parent: 4 + - uid: 608 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4 + - uid: 609 + components: + - type: Transform + pos: 23.5,4.5 + parent: 4 + - uid: 610 + components: + - type: Transform + pos: 24.5,4.5 + parent: 4 + - uid: 611 + components: + - type: Transform + pos: 25.5,4.5 + parent: 4 + - uid: 612 + components: + - type: Transform + pos: 26.5,4.5 + parent: 4 + - uid: 613 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4 + - uid: 614 + components: + - type: Transform + pos: 28.5,4.5 + parent: 4 + - uid: 615 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4 + - uid: 616 + components: + - type: Transform + pos: 29.5,3.5 + parent: 4 + - uid: 617 + components: + - type: Transform + pos: 30.5,3.5 + parent: 4 + - uid: 618 + components: + - type: Transform + pos: 31.5,3.5 + parent: 4 + - uid: 619 + components: + - type: Transform + pos: 31.5,4.5 + parent: 4 + - uid: 620 + components: + - type: Transform + pos: 29.5,2.5 + parent: 4 + - uid: 621 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4 + - uid: 622 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4 + - uid: 623 + components: + - type: Transform + pos: 27.5,1.5 + parent: 4 + - uid: 624 + components: + - type: Transform + pos: 27.5,2.5 + parent: 4 + - uid: 625 + components: + - type: Transform + pos: 26.5,1.5 + parent: 4 + - uid: 626 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4 + - uid: 627 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 4 + - uid: 628 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 4 + - uid: 629 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 4 + - uid: 630 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4 + - uid: 631 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 4 + - uid: 632 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4 + - uid: 633 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 4 + - uid: 634 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 4 + - uid: 635 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 4 + - uid: 636 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 4 + - uid: 637 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 4 + - uid: 638 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 4 + - uid: 639 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 4 + - uid: 640 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 4 + - uid: 641 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4 + - uid: 642 + components: + - type: Transform + pos: 19.5,1.5 + parent: 4 + - uid: 643 + components: + - type: Transform + pos: 19.5,2.5 + parent: 4 + - uid: 644 + components: + - type: Transform + pos: 19.5,3.5 + parent: 4 + - uid: 645 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4 + - uid: 646 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4 + - uid: 647 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 4 + - uid: 648 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 4 + - uid: 649 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 4 + - uid: 650 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 4 + - uid: 651 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 4 + - uid: 652 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 4 + - uid: 653 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 4 + - uid: 654 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 4 + - uid: 655 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 4 + - uid: 656 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 4 + - uid: 657 + components: + - type: Transform + pos: 11.5,0.5 + parent: 4 + - uid: 658 + components: + - type: Transform + pos: 11.5,1.5 + parent: 4 + - uid: 659 + components: + - type: Transform + pos: 12.5,1.5 + parent: 4 + - uid: 660 + components: + - type: Transform + pos: 11.5,2.5 + parent: 4 + - uid: 661 + components: + - type: Transform + pos: 10.5,1.5 + parent: 4 + - uid: 662 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4 + - uid: 663 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4 + - uid: 664 + components: + - type: Transform + pos: 9.5,3.5 + parent: 4 + - uid: 665 + components: + - type: Transform + pos: 8.5,3.5 + parent: 4 + - uid: 666 + components: + - type: Transform + pos: 7.5,4.5 + parent: 4 + - uid: 667 + components: + - type: Transform + pos: 7.5,3.5 + parent: 4 + - uid: 668 + components: + - type: Transform + pos: 10.5,4.5 + parent: 4 + - uid: 669 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4 + - uid: 670 + components: + - type: Transform + pos: 12.5,4.5 + parent: 4 + - uid: 671 + components: + - type: Transform + pos: 12.5,4.5 + parent: 4 + - uid: 672 + components: + - type: Transform + pos: 13.5,4.5 + parent: 4 + - uid: 673 + components: + - type: Transform + pos: 15.5,4.5 + parent: 4 + - uid: 674 + components: + - type: Transform + pos: 14.5,4.5 + parent: 4 + - uid: 675 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 4 + - uid: 676 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 4 + - uid: 677 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 4 + - uid: 678 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 4 + - uid: 679 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 4 + - uid: 680 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 4 + - uid: 681 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 4 + - uid: 682 + components: + - type: Transform + pos: 13.5,7.5 + parent: 4 + - uid: 683 + components: + - type: Transform + pos: 12.5,7.5 + parent: 4 + - uid: 684 + components: + - type: Transform + pos: 11.5,7.5 + parent: 4 + - uid: 685 + components: + - type: Transform + pos: 10.5,7.5 + parent: 4 + - uid: 686 + components: + - type: Transform + pos: 9.5,7.5 + parent: 4 + - uid: 687 + components: + - type: Transform + pos: 8.5,7.5 + parent: 4 + - uid: 688 + components: + - type: Transform + pos: 7.5,7.5 + parent: 4 + - uid: 689 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4 + - uid: 690 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4 + - uid: 691 + components: + - type: Transform + pos: 27.5,10.5 + parent: 4 + - uid: 692 + components: + - type: Transform + pos: 29.5,10.5 + parent: 4 + - uid: 693 + components: + - type: Transform + pos: 28.5,10.5 + parent: 4 + - uid: 694 + components: + - type: Transform + pos: 29.5,11.5 + parent: 4 + - uid: 695 + components: + - type: Transform + pos: 30.5,11.5 + parent: 4 + - uid: 696 + components: + - type: Transform + pos: 32.5,11.5 + parent: 4 + - uid: 697 + components: + - type: Transform + pos: 32.5,11.5 + parent: 4 + - uid: 698 + components: + - type: Transform + pos: 29.5,12.5 + parent: 4 + - uid: 699 + components: + - type: Transform + pos: 31.5,11.5 + parent: 4 + - uid: 700 + components: + - type: Transform + pos: 29.5,13.5 + parent: 4 + - uid: 701 + components: + - type: Transform + pos: 30.5,13.5 + parent: 4 + - uid: 702 + components: + - type: Transform + pos: 31.5,13.5 + parent: 4 + - uid: 703 + components: + - type: Transform + pos: 29.5,14.5 + parent: 4 + - uid: 704 + components: + - type: Transform + pos: 29.5,15.5 + parent: 4 + - uid: 705 + components: + - type: Transform + pos: 29.5,16.5 + parent: 4 + - uid: 706 + components: + - type: Transform + pos: 30.5,16.5 + parent: 4 + - uid: 707 + components: + - type: Transform + pos: 28.5,16.5 + parent: 4 + - uid: 708 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4 + - uid: 709 + components: + - type: Transform + pos: 20.5,22.5 + parent: 4 + - uid: 710 + components: + - type: Transform + pos: 20.5,23.5 + parent: 4 + - uid: 711 + components: + - type: Transform + pos: 20.5,24.5 + parent: 4 + - uid: 712 + components: + - type: Transform + pos: 21.5,24.5 + parent: 4 + - uid: 713 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4 + - uid: 714 + components: + - type: Transform + pos: 21.5,26.5 + parent: 4 + - uid: 715 + components: + - type: Transform + pos: 21.5,27.5 + parent: 4 + - uid: 716 + components: + - type: Transform + pos: 21.5,28.5 + parent: 4 + - uid: 717 + components: + - type: Transform + pos: 21.5,29.5 + parent: 4 + - uid: 718 + components: + - type: Transform + pos: 21.5,30.5 + parent: 4 + - uid: 719 + components: + - type: Transform + pos: 21.5,31.5 + parent: 4 + - uid: 720 + components: + - type: Transform + pos: 21.5,32.5 + parent: 4 + - uid: 721 + components: + - type: Transform + pos: 21.5,33.5 + parent: 4 + - uid: 722 + components: + - type: Transform + pos: 21.5,33.5 + parent: 4 + - uid: 723 + components: + - type: Transform + pos: 22.5,33.5 + parent: 4 + - uid: 724 + components: + - type: Transform + pos: 23.5,33.5 + parent: 4 + - uid: 725 + components: + - type: Transform + pos: 23.5,33.5 + parent: 4 + - uid: 726 + components: + - type: Transform + pos: 22.5,33.5 + parent: 4 + - uid: 727 + components: + - type: Transform + pos: 21.5,33.5 + parent: 4 + - uid: 728 + components: + - type: Transform + pos: 20.5,33.5 + parent: 4 + - uid: 729 + components: + - type: Transform + pos: 19.5,33.5 + parent: 4 + - uid: 730 + components: + - type: Transform + pos: 18.5,33.5 + parent: 4 + - uid: 731 + components: + - type: Transform + pos: 17.5,33.5 + parent: 4 + - uid: 732 + components: + - type: Transform + pos: 16.5,33.5 + parent: 4 + - uid: 733 + components: + - type: Transform + pos: 15.5,33.5 + parent: 4 + - uid: 734 + components: + - type: Transform + pos: 15.5,33.5 + parent: 4 + - uid: 735 + components: + - type: Transform + pos: 15.5,34.5 + parent: 4 + - uid: 736 + components: + - type: Transform + pos: 15.5,35.5 + parent: 4 + - uid: 737 + components: + - type: Transform + pos: 16.5,35.5 + parent: 4 + - uid: 738 + components: + - type: Transform + pos: 17.5,35.5 + parent: 4 + - uid: 739 + components: + - type: Transform + pos: 18.5,35.5 + parent: 4 + - uid: 740 + components: + - type: Transform + pos: 19.5,35.5 + parent: 4 + - uid: 741 + components: + - type: Transform + pos: 20.5,35.5 + parent: 4 + - uid: 742 + components: + - type: Transform + pos: 21.5,35.5 + parent: 4 + - uid: 743 + components: + - type: Transform + pos: 22.5,35.5 + parent: 4 + - uid: 744 + components: + - type: Transform + pos: 23.5,35.5 + parent: 4 + - uid: 745 + components: + - type: Transform + pos: 22.5,35.5 + parent: 4 + - uid: 746 + components: + - type: Transform + pos: 22.5,36.5 + parent: 4 + - uid: 747 + components: + - type: Transform + pos: 22.5,37.5 + parent: 4 + - uid: 748 + components: + - type: Transform + pos: 22.5,38.5 + parent: 4 + - uid: 749 + components: + - type: Transform + pos: 20.5,35.5 + parent: 4 + - uid: 750 + components: + - type: Transform + pos: 20.5,36.5 + parent: 4 + - uid: 751 + components: + - type: Transform + pos: 20.5,37.5 + parent: 4 + - uid: 752 + components: + - type: Transform + pos: 20.5,38.5 + parent: 4 + - uid: 753 + components: + - type: Transform + pos: 18.5,35.5 + parent: 4 + - uid: 754 + components: + - type: Transform + pos: 18.5,36.5 + parent: 4 + - uid: 755 + components: + - type: Transform + pos: 18.5,37.5 + parent: 4 + - uid: 756 + components: + - type: Transform + pos: 18.5,38.5 + parent: 4 + - uid: 757 + components: + - type: Transform + pos: 16.5,35.5 + parent: 4 + - uid: 758 + components: + - type: Transform + pos: 16.5,36.5 + parent: 4 + - uid: 759 + components: + - type: Transform + pos: 16.5,37.5 + parent: 4 + - uid: 760 + components: + - type: Transform + pos: 16.5,38.5 + parent: 4 + - uid: 761 + components: + - type: Transform + pos: 19.5,0.5 + parent: 4 + - uid: 762 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4 + - uid: 763 + components: + - type: Transform + pos: 6.5,8.5 + parent: 4 + - uid: 764 + components: + - type: Transform + pos: 6.5,9.5 + parent: 4 + - uid: 765 + components: + - type: Transform + pos: 5.5,9.5 + parent: 4 + - uid: 766 + components: + - type: Transform + pos: 4.5,9.5 + parent: 4 + - uid: 767 + components: + - type: Transform + pos: 3.5,9.5 + parent: 4 + - uid: 768 + components: + - type: Transform + pos: 2.5,9.5 + parent: 4 + - uid: 769 + components: + - type: Transform + pos: 1.5,9.5 + parent: 4 + - uid: 770 + components: + - type: Transform + pos: 0.5,9.5 + parent: 4 + - uid: 771 + components: + - type: Transform + pos: -0.5,9.5 + parent: 4 + - uid: 772 + components: + - type: Transform + pos: -1.5,9.5 + parent: 4 + - uid: 773 + components: + - type: Transform + pos: -2.5,9.5 + parent: 4 + - uid: 774 + components: + - type: Transform + pos: -3.5,9.5 + parent: 4 + - uid: 775 + components: + - type: Transform + pos: -4.5,9.5 + parent: 4 + - uid: 776 + components: + - type: Transform + pos: -4.5,9.5 + parent: 4 + - uid: 777 + components: + - type: Transform + pos: -4.5,10.5 + parent: 4 + - uid: 778 + components: + - type: Transform + pos: -4.5,11.5 + parent: 4 + - uid: 779 + components: + - type: Transform + pos: -4.5,12.5 + parent: 4 + - uid: 780 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4 + - uid: 781 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4 + - uid: 782 + components: + - type: Transform + pos: -5.5,13.5 + parent: 4 + - uid: 783 + components: + - type: Transform + pos: -6.5,13.5 + parent: 4 + - uid: 784 + components: + - type: Transform + pos: -7.5,13.5 + parent: 4 + - uid: 785 + components: + - type: Transform + pos: -8.5,13.5 + parent: 4 + - uid: 786 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4 + - uid: 787 + components: + - type: Transform + pos: -10.5,13.5 + parent: 4 + - uid: 788 + components: + - type: Transform + pos: -4.5,8.5 + parent: 4 + - uid: 789 + components: + - type: Transform + pos: -4.5,7.5 + parent: 4 + - uid: 790 + components: + - type: Transform + pos: -4.5,6.5 + parent: 4 + - uid: 791 + components: + - type: Transform + pos: -4.5,5.5 + parent: 4 + - uid: 792 + components: + - type: Transform + pos: -4.5,5.5 + parent: 4 + - uid: 793 + components: + - type: Transform + pos: -5.5,5.5 + parent: 4 + - uid: 794 + components: + - type: Transform + pos: -6.5,5.5 + parent: 4 + - uid: 795 + components: + - type: Transform + pos: -7.5,5.5 + parent: 4 + - uid: 796 + components: + - type: Transform + pos: -8.5,5.5 + parent: 4 + - uid: 797 + components: + - type: Transform + pos: -9.5,5.5 + parent: 4 + - uid: 798 + components: + - type: Transform + pos: -10.5,5.5 + parent: 4 + - uid: 799 + components: + - type: Transform + pos: 11.5,4.5 + parent: 4 + - uid: 2246 + components: + - type: Transform + pos: 22.5,31.5 + parent: 4 + - uid: 2247 + components: + - type: Transform + pos: 23.5,31.5 + parent: 4 + - uid: 2248 + components: + - type: Transform + pos: 25.5,31.5 + parent: 4 + - uid: 2249 + components: + - type: Transform + pos: 24.5,31.5 + parent: 4 +- proto: CandleRedInfinite + entities: + - uid: 800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.993717,3.6421094 + parent: 4 + - uid: 801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.015432,-1.8515625 + parent: 4 + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.523418,-0.031342506 + parent: 4 + - uid: 803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.492546,-0.04074669 + parent: 4 + - uid: 804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.037718,0.6492133 + parent: 4 + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.475824,-0.9483719 + parent: 4 + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.901611,-1.8515625 + parent: 4 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.023624,-1.8515625 + parent: 4 + - uid: 808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.491383,-0.9787321 + parent: 4 + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.931917,-1.8515625 + parent: 4 + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.971713,0.6467533 + parent: 4 + - uid: 811 + components: + - type: Transform + pos: 8.9774065,3.7085094 + parent: 4 +- proto: CarpetBlack + entities: + - uid: 812 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 4 + - uid: 813 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 4 + - uid: 814 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 4 + - uid: 815 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 4 + - uid: 816 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 4 + - uid: 817 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 4 + - uid: 818 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 4 + - uid: 819 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 4 + - uid: 820 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 4 + - uid: 821 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 4 + - uid: 822 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4 + - uid: 823 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 4 + - uid: 824 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4 + - uid: 825 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 4 + - uid: 826 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 4 + - uid: 827 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 4 + - uid: 828 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 4 + - uid: 829 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 4 + - uid: 830 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 4 + - uid: 831 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 4 + - uid: 832 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 4 + - uid: 833 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 4 + - uid: 834 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 4 + - uid: 835 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 4 + - uid: 836 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 4 + - uid: 837 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 4 + - uid: 838 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 4 + - uid: 839 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 4 + - uid: 840 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4 + - uid: 841 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4 + - uid: 842 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 4 + - uid: 843 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 4 + - uid: 844 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 4 + - uid: 845 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 4 + - uid: 846 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 4 + - uid: 847 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4 + - uid: 848 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 4 + - uid: 849 + components: + - type: Transform + pos: 28.5,0.5 + parent: 4 + - uid: 850 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4 + - uid: 851 + components: + - type: Transform + pos: 28.5,0.5 + parent: 4 + - uid: 852 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4 + - uid: 853 + components: + - type: Transform + pos: 29.5,0.5 + parent: 4 + - uid: 854 + components: + - type: Transform + pos: 29.5,2.5 + parent: 4 + - uid: 855 + components: + - type: Transform + pos: 29.5,3.5 + parent: 4 + - uid: 856 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4 + - uid: 857 + components: + - type: Transform + pos: 30.5,2.5 + parent: 4 + - uid: 858 + components: + - type: Transform + pos: 30.5,3.5 + parent: 4 + - uid: 859 + components: + - type: Transform + pos: 30.5,4.5 + parent: 4 + - uid: 860 + components: + - type: Transform + pos: 26.5,0.5 + parent: 4 + - uid: 861 + components: + - type: Transform + pos: 27.5,1.5 + parent: 4 + - uid: 862 + components: + - type: Transform + pos: 28.5,2.5 + parent: 4 + - uid: 863 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 4 + - uid: 864 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 4 + - uid: 865 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 4 + - uid: 866 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 4 + - uid: 867 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 4 + - uid: 868 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 4 + - uid: 869 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 4 + - uid: 870 + components: + - type: Transform + pos: 11.5,0.5 + parent: 4 + - uid: 871 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 4 + - uid: 872 + components: + - type: Transform + pos: 10.5,0.5 + parent: 4 + - uid: 873 + components: + - type: Transform + pos: 9.5,0.5 + parent: 4 + - uid: 874 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4 + - uid: 875 + components: + - type: Transform + pos: 10.5,0.5 + parent: 4 + - uid: 876 + components: + - type: Transform + pos: 10.5,1.5 + parent: 4 + - uid: 877 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4 + - uid: 878 + components: + - type: Transform + pos: 9.5,3.5 + parent: 4 + - uid: 879 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4 + - uid: 880 + components: + - type: Transform + pos: 8.5,2.5 + parent: 4 + - uid: 881 + components: + - type: Transform + pos: 8.5,3.5 + parent: 4 + - uid: 882 + components: + - type: Transform + pos: 8.5,4.5 + parent: 4 + - uid: 883 + components: + - type: Transform + pos: 10.5,2.5 + parent: 4 + - uid: 884 + components: + - type: Transform + pos: 11.5,1.5 + parent: 4 + - uid: 885 + components: + - type: Transform + pos: 12.5,0.5 + parent: 4 +- proto: ChairFolding + entities: + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10,6 + parent: 4 + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8,6 + parent: 4 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8,6 + parent: 4 + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7,6 + parent: 4 + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6,6 + parent: 4 + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9,6 + parent: 4 + - uid: 892 + components: + - type: Transform + pos: -10,13 + parent: 4 + - uid: 893 + components: + - type: Transform + pos: -9,13 + parent: 4 + - uid: 894 + components: + - type: Transform + pos: -8,13 + parent: 4 + - uid: 895 + components: + - type: Transform + pos: -7,13 + parent: 4 + - uid: 896 + components: + - type: Transform + pos: -6,13 + parent: 4 +- proto: ChairWood + entities: + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 4 + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 4 + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 4 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 4 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-0.5 + parent: 4 + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 4 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 4 + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 4 + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 4 + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 4 + - uid: 907 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4 + - uid: 908 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4 + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 4 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 4 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 4 + - uid: 912 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4 + - uid: 913 + components: + - type: Transform + pos: 30.5,4.5 + parent: 4 + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 4 + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 4 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 4 + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4 + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 4 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 4 + - uid: 920 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4 + - uid: 921 + components: + - type: Transform + pos: 10.5,1.5 + parent: 4 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 4 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 4 + - uid: 924 + components: + - type: Transform + pos: 8.5,4.5 + parent: 4 + - uid: 925 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4 + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-3.5 + parent: 4 + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 4 + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 4 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 4 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 4 +- proto: ChessBoard + entities: + - uid: 931 + components: + - type: Transform + pos: 10.543333,0.6168556 + parent: 4 + - uid: 932 + components: + - type: Transform + pos: 28.531792,0.61666393 + parent: 4 +- proto: CleanerDispenser + entities: + - uid: 1573 + components: + - type: Transform + pos: 27.5,6.5 + parent: 4 + - uid: 2216 + components: + - type: Transform + pos: 31.5,9.5 + parent: 4 + - uid: 2220 + components: + - type: Transform + pos: 11.5,6.5 + parent: 4 +- proto: ClockworkWindow + entities: + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 4 +- proto: ClosetJanitorFilled + entities: + - uid: 934 + components: + - type: Transform + pos: 29.5,8.5 + parent: 4 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 935 + components: + - type: Transform + pos: -11.759459,8.81272 + parent: 4 + - uid: 936 + components: + - type: Transform + pos: -11.337584,8.62522 + parent: 4 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 937 + components: + - type: Transform + pos: -11.696959,10.59397 + parent: 4 + - uid: 938 + components: + - type: Transform + pos: -11.321959,10.453345 + parent: 4 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 939 + components: + - type: Transform + pos: -11.777161,10.006099 + parent: 4 + - uid: 940 + components: + - type: Transform + pos: -11.368834,9.90647 + parent: 4 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 941 + components: + - type: Transform + pos: -11.806334,9.484595 + parent: 4 + - uid: 942 + components: + - type: Transform + pos: -11.431334,9.234595 + parent: 4 +- proto: ContrabassInstrument + entities: + - uid: 943 + components: + - type: Transform + pos: 17.5,8.5 + parent: 4 +- proto: CrateFoodBarSupply + entities: + - uid: 944 + components: + - type: Transform + pos: 14.5,22.5 + parent: 4 +- proto: CrateFunInstrumentsKeyedPercussion + entities: + - uid: 1203 + components: + - type: Transform + pos: 18.5,6.5 + parent: 4 +- proto: CrateFunInstrumentsSpecial + entities: + - uid: 945 + components: + - type: Transform + pos: 19.5,6.5 + parent: 4 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 1082 + components: + - type: Transform + pos: 20.5,6.5 + parent: 4 +- proto: CrateFunToyBox + entities: + - uid: 2250 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4 + - uid: 2263 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 946 + components: + - type: Transform + pos: 29.5,17.5 + parent: 4 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 947 + components: + - type: Transform + pos: 30.5,8.5 + parent: 4 +- proto: CrayonBox + entities: + - uid: 1574 + components: + - type: Transform + pos: 8.495789,3.8321342 + parent: 4 + - uid: 2022 + components: + - type: Transform + pos: 8.495789,3.5508842 + parent: 4 + - uid: 2171 + components: + - type: Transform + pos: 21.482988,-2.174839 + parent: 4 + - uid: 2207 + components: + - type: Transform + pos: 21.498613,-2.518589 + parent: 4 + - uid: 2208 + components: + - type: Transform + pos: 17.498613,-1.299839 + parent: 4 + - uid: 2210 + components: + - type: Transform + pos: 17.498613,-1.612339 + parent: 4 + - uid: 2211 + components: + - type: Transform + pos: 19.581902,-2.5253506 + parent: 4 + - uid: 2212 + components: + - type: Transform + pos: 19.644402,-2.1347256 + parent: 4 +- proto: CurtainsRed + entities: + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 4 + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 4 +- proto: CurtainsRedOpen + entities: + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 4 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 4 +- proto: d10Dice + entities: + - uid: 2192 + components: + - type: Transform + pos: 28.80835,-0.15840006 + parent: 4 + - uid: 2198 + components: + - type: Transform + pos: 10.228334,-0.33543062 + parent: 4 +- proto: d12Dice + entities: + - uid: 2193 + components: + - type: Transform + pos: 28.850018,-0.43617773 + parent: 4 + - uid: 2200 + components: + - type: Transform + pos: 10.290834,-0.5715418 + parent: 4 +- proto: d20Dice + entities: + - uid: 2194 + components: + - type: Transform + pos: 28.856962,-0.51256657 + parent: 4 + - uid: 2201 + components: + - type: Transform + pos: 10.318613,-0.5437641 + parent: 4 +- proto: d4Dice + entities: + - uid: 2195 + components: + - type: Transform + pos: 28.356962,-0.2347889 + parent: 4 + - uid: 2202 + components: + - type: Transform + pos: 10.749168,-0.30765295 + parent: 4 +- proto: d6Dice + entities: + - uid: 2196 + components: + - type: Transform + pos: 28.398628,-0.32506657 + parent: 4 + - uid: 2203 + components: + - type: Transform + pos: 10.72139,-0.4882083 + parent: 4 +- proto: d8Dice + entities: + - uid: 2197 + components: + - type: Transform + pos: 28.412518,-0.53340006 + parent: 4 + - uid: 2204 + components: + - type: Transform + pos: 10.72139,-0.6965418 + parent: 4 +- proto: DawInstrument + entities: + - uid: 952 + components: + - type: Transform + pos: 19.5,11.5 + parent: 4 +- proto: DebugAPC + entities: + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 4 +- proto: DebugGenerator + entities: + - uid: 1462 + components: + - type: Transform + pos: 47.5,11.5 + parent: 4 +- proto: DebugSubstation + entities: + - uid: 77 + components: + - type: Transform + pos: 47.5,9.5 + parent: 4 +- proto: DisposalBend + entities: + - uid: 960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,18.5 + parent: 4 + - uid: 961 + components: + - type: Transform + pos: 17.5,18.5 + parent: 4 + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 4 + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 4 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 4 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 4 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 4 + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,13.5 + parent: 4 + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 4 + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 4 + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 4 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 4 + - uid: 972 + components: + - type: Transform + pos: 13.5,7.5 + parent: 4 + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 4 + - uid: 974 + components: + - type: Transform + pos: 14.5,6.5 + parent: 4 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 4 + - uid: 976 + components: + - type: Transform + pos: 15.5,4.5 + parent: 4 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 4 + - uid: 978 + components: + - type: Transform + pos: 16.5,3.5 + parent: 4 + - uid: 979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 4 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 4 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 4 + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 4 + - uid: 983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 4 + - uid: 984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 4 + - uid: 985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 4 + - uid: 986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 4 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,7.5 + parent: 4 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,7.5 + parent: 4 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 4 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 4 + - uid: 991 + components: + - type: Transform + pos: 26.5,11.5 + parent: 4 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 4 + - uid: 993 + components: + - type: Transform + pos: 25.5,12.5 + parent: 4 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 4 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 4 + - uid: 996 + components: + - type: Transform + pos: 23.5,14.5 + parent: 4 + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 4 + - uid: 998 + components: + - type: Transform + pos: 22.5,15.5 + parent: 4 + - uid: 999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 4 +- proto: DisposalJunction + entities: + - uid: 1000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 4 + - uid: 1001 + components: + - type: Transform + pos: 12.5,9.5 + parent: 4 + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 4 + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 4 + - uid: 1004 + components: + - type: Transform + pos: 14.5,5.5 + parent: 4 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 4 + - uid: 1006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4 +- proto: DisposalJunctionFlipped + entities: + - uid: 1007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 4 + - uid: 1008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 4 +- proto: DisposalPipe + entities: + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 4 + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 + parent: 4 + - uid: 1011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,16.5 + parent: 4 + - uid: 1012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 4 + - uid: 1013 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4 + - uid: 1014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 4 + - uid: 1015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 4 + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 4 + - uid: 1017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 4 + - uid: 1018 + components: + - type: Transform + pos: 12.5,3.5 + parent: 4 + - uid: 1019 + components: + - type: Transform + pos: 12.5,4.5 + parent: 4 + - uid: 1020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 4 + - uid: 1021 + components: + - type: Transform + pos: 12.5,8.5 + parent: 4 + - uid: 1022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 4 + - uid: 1023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 4 + - uid: 1024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 4 + - uid: 1025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 4 + - uid: 1026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 4 + - uid: 1027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,5.5 + parent: 4 + - uid: 1028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 4 + - uid: 1029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 4 + - uid: 1030 + components: + - type: Transform + pos: 26.5,3.5 + parent: 4 + - uid: 1031 + components: + - type: Transform + pos: 26.5,4.5 + parent: 4 + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 4 + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 4 + - uid: 1034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 4 + - uid: 1035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,17.5 + parent: 4 + - uid: 1036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 4 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 4 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,20.5 + parent: 4 + - uid: 1039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 4 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,22.5 + parent: 4 + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,23.5 + parent: 4 + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,24.5 + parent: 4 + - uid: 1043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 4 + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 4 + - uid: 1045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 4 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,28.5 + parent: 4 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 4 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 4 + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 4 + - uid: 1050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 4 + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 4 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 4 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 4 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 4 + - uid: 1055 + components: + - type: Transform + pos: 21.5,17.5 + parent: 4 + - uid: 1056 + components: + - type: Transform + pos: 21.5,16.5 + parent: 4 + - uid: 1057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 4 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 4 + - uid: 1059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 4 + - uid: 1060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 4 + - uid: 1061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,31.5 + parent: 4 +- proto: DisposalTrunk + entities: + - uid: 1062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 4 + - uid: 1063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 4 + - uid: 1064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 4 + - uid: 1065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 4 + - uid: 1066 + components: + - type: Transform + pos: 16.5,19.5 + parent: 4 + - uid: 1067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 4 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 4 + - uid: 1069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 4 + - uid: 1070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 4 + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 4 + - uid: 1072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 4 + - uid: 1073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 4 +- proto: DisposalUnit + entities: + - uid: 1074 + components: + - type: Transform + pos: 16.5,19.5 + parent: 4 + - uid: 1075 + components: + - type: Transform + pos: 27.5,9.5 + parent: 4 + - uid: 1076 + components: + - type: Transform + pos: 12.5,2.5 + parent: 4 + - uid: 1077 + components: + - type: Transform + pos: 26.5,2.5 + parent: 4 + - uid: 1078 + components: + - type: Transform + pos: 8.5,5.5 + parent: 4 + - uid: 1079 + components: + - type: Transform + pos: 30.5,5.5 + parent: 4 + - uid: 1080 + components: + - type: Transform + pos: 28.5,13.5 + parent: 4 + - uid: 1081 + components: + - type: Transform + pos: 23.5,18.5 + parent: 4 +- proto: DisposalYJunction + entities: + - uid: 1083 + components: + - type: Transform + pos: 13.5,12.5 + parent: 4 +- proto: DrinkAntifreeze + entities: + - uid: 1084 + components: + - type: Transform + pos: 12.2912655,14.53726 + parent: 4 + - type: Godmode + missingComponents: + - Spillable +- proto: DrinkBahamaMama + entities: + - uid: 1085 + components: + - type: Transform + pos: 14.591326,17.272478 + parent: 4 + - type: Godmode + missingComponents: + - Spillable +- proto: DrinkBeerGrowler + entities: + - uid: 1086 + components: + - type: Transform + pos: 9.19186,17.72955 + parent: 4 + - uid: 1087 + components: + - type: Transform + pos: 9.432601,17.72955 + parent: 4 + - uid: 1088 + components: + - type: Transform + pos: 9.677971,17.748066 + parent: 4 + - uid: 1089 + components: + - type: Transform + pos: 9.301453,17.857357 + parent: 4 + - uid: 1090 + components: + - type: Transform + pos: 9.5746,17.880507 + parent: 4 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 1091 + components: + - type: Transform + pos: 10.150621,18.755505 + parent: 4 + - uid: 1092 + components: + - type: Transform + pos: 10.632103,18.760136 + parent: 4 + - uid: 1093 + components: + - type: Transform + pos: 10.39599,18.843468 + parent: 4 +- proto: DrinkGlass + entities: + - uid: 1094 + components: + - type: Transform + pos: 11.140686,19.76038 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1095 + components: + - type: Transform + pos: 11.2008705,19.76038 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1096 + components: + - type: Transform + pos: 11.288834,19.76038 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1097 + components: + - type: Transform + pos: 11.33976,19.76038 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1098 + components: + - type: Transform + pos: 11.376797,19.755753 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1099 + components: + - type: Transform + pos: 11.423093,19.755753 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1100 + components: + - type: Transform + pos: 11.321482,19.670677 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1101 + components: + - type: Transform + pos: 11.552723,19.755753 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1102 + components: + - type: Transform + pos: 11.399607,19.561302 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1103 + components: + - type: Transform + pos: 11.7008705,19.593714 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1104 + components: + - type: Transform + pos: 11.649944,19.552048 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1105 + components: + - type: Transform + pos: 11.552723,19.547417 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1106 + components: + - type: Transform + pos: 11.46013,19.547417 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1107 + components: + - type: Transform + pos: 11.4092045,19.547417 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1108 + components: + - type: Transform + pos: 11.33513,19.547417 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1109 + components: + - type: Transform + pos: 11.251797,19.547417 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1110 + components: + - type: Transform + pos: 11.191611,19.54279 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1111 + components: + - type: Transform + pos: 11.052723,19.538158 + parent: 4 + - type: Godmode + missingComponents: + - Spillable + - uid: 1112 + components: + - type: Transform + pos: 10.992537,19.556677 + parent: 4 + - type: Godmode + missingComponents: + - Spillable +- proto: ElectricGuitarInstrument + entities: + - uid: 1113 + components: + - type: Transform + pos: 18.66301,8.319919 + parent: 4 + - uid: 1114 + components: + - type: Transform + pos: 20.402287,8.211064 + parent: 4 +- proto: FatExtractor + entities: + - uid: 1749 + components: + - type: Transform + pos: 23.5,22.5 + parent: 4 +- proto: FirelockGlass + entities: + - uid: 2172 + components: + - type: Transform + pos: 28.5,7.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - 2040 + - uid: 2173 + components: + - type: Transform + pos: 28.5,10.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - 2054 + - uid: 2174 + components: + - type: Transform + pos: 20.5,18.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - 2054 + - uid: 2175 + components: + - type: Transform + pos: 18.5,18.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - uid: 2176 + components: + - type: Transform + pos: 10.5,7.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 2056 + - 1752 + - uid: 2177 + components: + - type: Transform + pos: 4.5,9.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 2056 + - uid: 2178 + components: + - type: Transform + pos: -3.5,9.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1792 + - uid: 2179 + components: + - type: Transform + pos: 0.5,10.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1792 + - 2056 +- proto: FloorDrain + entities: + - uid: 1115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,7.5 + parent: 4 + - type: Fixtures + fixtures: {} +- proto: FoodDough + entities: + - uid: 1116 + components: + - type: Transform + pos: 24.33526,22.716291 + parent: 4 + - uid: 1117 + components: + - type: Transform + pos: 24.564426,22.764904 + parent: 4 + - uid: 1118 + components: + - type: Transform + pos: 24.565607,22.488663 + parent: 4 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodMeat + entities: + - uid: 2253 + components: + - type: Transform + pos: 21.366165,23.552727 + parent: 4 + - uid: 2254 + components: + - type: Transform + pos: 21.366165,23.344395 + parent: 4 + - uid: 2255 + components: + - type: Transform + pos: 21.397415,23.13606 + parent: 4 + - uid: 2256 + components: + - type: Transform + pos: 21.366165,22.938145 + parent: 4 + - uid: 2257 + components: + - type: Transform + pos: 21.428665,22.740227 + parent: 4 + - uid: 2258 + components: + - type: Transform + pos: 21.428665,22.500645 + parent: 4 + - uid: 2259 + components: + - type: Transform + pos: 21.9495,22.750645 + parent: 4 + - uid: 2260 + components: + - type: Transform + pos: 21.991165,22.57356 + parent: 4 + - uid: 2261 + components: + - type: Transform + pos: 21.928665,22.41731 + parent: 4 +- proto: GasMinerAmmonia + entities: + - uid: 1119 + components: + - type: Transform + pos: 19.5,38.5 + parent: 4 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 1120 + components: + - type: Transform + pos: 15.5,38.5 + parent: 4 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 1121 + components: + - type: Transform + pos: 17.5,38.5 + parent: 4 +- proto: GasMinerWaterVapor + entities: + - uid: 1123 + components: + - type: Transform + pos: 23.5,38.5 + parent: 4 +- proto: GasMixerFlipped + entities: + - uid: 1124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 4 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 4500 +- proto: GasPassiveVent + entities: + - uid: 61 + components: + - type: Transform + pos: 21.5,30.5 + parent: 4 + - uid: 1125 + components: + - type: Transform + pos: 15.5,37.5 + parent: 4 + - uid: 1126 + components: + - type: Transform + pos: 17.5,37.5 + parent: 4 + - uid: 1127 + components: + - type: Transform + pos: 19.5,37.5 + parent: 4 + - uid: 1129 + components: + - type: Transform + pos: 23.5,37.5 + parent: 4 + - uid: 2222 + components: + - type: Transform + pos: 21.5,37.5 + parent: 4 +- proto: GasPipeBend + entities: + - uid: 1131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1133 + components: + - type: Transform + pos: 8.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,34.5 + parent: 4 + - uid: 1135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 4 + - uid: 1136 + components: + - type: Transform + pos: 17.5,33.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1149 + components: + - type: Transform + pos: 18.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1159 + components: + - type: Transform + pos: 25.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1160 + components: + - type: Transform + pos: 22.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1162 + components: + - type: Transform + pos: 23.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1164 + components: + - type: Transform + pos: 24.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1165 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1167 + components: + - type: Transform + pos: 26.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1176 + components: + - type: Transform + pos: 13.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1177 + components: + - type: Transform + pos: 14.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1179 + components: + - type: Transform + pos: 15.5,4.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1181 + components: + - type: Transform + pos: 23.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1187 + components: + - type: Transform + pos: 5.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1188 + components: + - type: Transform + pos: 26.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' +- proto: GasPipeFourway + entities: + - uid: 1191 + components: + - type: Transform + pos: 19.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 2094 + components: + - type: Transform + pos: 18.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2106 + components: + - type: Transform + pos: 24.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' +- proto: GasPipeStraight + entities: + - uid: 1132 + components: + - type: Transform + pos: 24.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 1192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1193 + components: + - type: Transform + pos: 26.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1195 + components: + - type: Transform + pos: 26.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1196 + components: + - type: Transform + pos: 26.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1197 + components: + - type: Transform + pos: 26.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1198 + components: + - type: Transform + pos: 26.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1199 + components: + - type: Transform + pos: 17.5,30.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1200 + components: + - type: Transform + pos: 15.5,36.5 + parent: 4 + - uid: 1201 + components: + - type: Transform + pos: 17.5,36.5 + parent: 4 + - uid: 1202 + components: + - type: Transform + pos: 19.5,36.5 + parent: 4 + - uid: 1205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,34.5 + parent: 4 + - uid: 1206 + components: + - type: Transform + pos: 17.5,31.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1207 + components: + - type: Transform + pos: 17.5,29.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1208 + components: + - type: Transform + pos: 17.5,28.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1209 + components: + - type: Transform + pos: 17.5,32.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1210 + components: + - type: Transform + pos: 17.5,24.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1211 + components: + - type: Transform + pos: 17.5,27.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1212 + components: + - type: Transform + pos: 17.5,26.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1213 + components: + - type: Transform + pos: 17.5,25.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1214 + components: + - type: Transform + pos: 17.5,23.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1215 + components: + - type: Transform + pos: 17.5,22.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1218 + components: + - type: Transform + pos: 12.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1220 + components: + - type: Transform + pos: 7.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1221 + components: + - type: Transform + pos: 7.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1222 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1227 + components: + - type: Transform + pos: 18.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1228 + components: + - type: Transform + pos: 18.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1229 + components: + - type: Transform + pos: 18.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1230 + components: + - type: Transform + pos: 12.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1241 + components: + - type: Transform + pos: 26.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1269 + components: + - type: Transform + pos: 15.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1270 + components: + - type: Transform + pos: 15.5,0.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1271 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1272 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1275 + components: + - type: Transform + pos: 23.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1276 + components: + - type: Transform + pos: 23.5,0.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1277 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1278 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1293 + components: + - type: Transform + pos: 19.5,34.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1294 + components: + - type: Transform + pos: 19.5,33.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1295 + components: + - type: Transform + pos: 19.5,32.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1296 + components: + - type: Transform + pos: 19.5,31.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1297 + components: + - type: Transform + pos: 19.5,30.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1298 + components: + - type: Transform + pos: 19.5,29.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1299 + components: + - type: Transform + pos: 19.5,28.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1300 + components: + - type: Transform + pos: 19.5,27.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1301 + components: + - type: Transform + pos: 19.5,26.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1302 + components: + - type: Transform + pos: 19.5,25.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1303 + components: + - type: Transform + pos: 19.5,24.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1304 + components: + - type: Transform + pos: 19.5,23.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1305 + components: + - type: Transform + pos: 19.5,22.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 1524 + components: + - type: Transform + pos: 21.5,20.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2080 + components: + - type: Transform + pos: 14.5,0.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2081 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2082 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2083 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2084 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2085 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2086 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2087 + components: + - type: Transform + pos: 24.5,0.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2114 + components: + - type: Transform + pos: 11.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2130 + components: + - type: Transform + pos: 24.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2154 + components: + - type: Transform + pos: 20.5,15.5 + parent: 4 + - uid: 2155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2162 + components: + - type: Transform + pos: 21.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2163 + components: + - type: Transform + pos: 21.5,22.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2164 + components: + - type: Transform + pos: 21.5,23.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2165 + components: + - type: Transform + pos: 21.5,24.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2166 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2167 + components: + - type: Transform + pos: 21.5,26.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2168 + components: + - type: Transform + pos: 21.5,27.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2169 + components: + - type: Transform + pos: 21.5,28.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2170 + components: + - type: Transform + pos: 21.5,29.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' +- proto: GasPipeTJunction + entities: + - uid: 1320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1328 + components: + - type: Transform + pos: 19.5,16.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 2048 + components: + - type: Transform + pos: 14.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2064 + components: + - type: Transform + pos: 24.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2074 + components: + - type: Transform + pos: 14.5,1.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2143 + components: + - type: Transform + pos: 18.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' +- proto: GasPressurePump + entities: + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,33.5 + parent: 4 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1340 + components: + - type: Transform + pos: 15.5,35.5 + parent: 4 + - type: GasPressurePump + targetPressure: 4500 + - uid: 1341 + components: + - type: Transform + pos: 17.5,35.5 + parent: 4 + - type: GasPressurePump + targetPressure: 4500 + - uid: 1342 + components: + - type: Transform + pos: 19.5,35.5 + parent: 4 + - type: AtmosPipeColor + color: '#32A852FF' +- proto: GasVentPump + entities: + - uid: 1345 + components: + - type: Transform + pos: 6.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1346 + components: + - type: Transform + pos: 14.5,22.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1351 + components: + - type: Transform + pos: 30.5,14.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1356 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 4 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 1456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 4 +- proto: GasVentScrubber + entities: + - uid: 2041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 4 + - uid: 2042 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 4 + - type: DeviceNetwork + deviceLists: + - 1752 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,11.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2131 + components: + - type: Transform + pos: 17.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2132 + components: + - type: Transform + pos: 9.5,13.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' + - uid: 2150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 4 + - type: AtmosPipeColor + color: '#FC033DFF' +- proto: GhostBarSpawner + entities: + - uid: 41 + components: + - type: Transform + pos: 8.5,4.5 + parent: 4 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 4 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 4 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 4 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 4 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 4 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 4 + - uid: 81 + components: + - type: Transform + pos: 30.5,4.5 + parent: 4 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 4 + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 4 + - uid: 415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 4 + - uid: 420 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 4 + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 4 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 4 + - uid: 435 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4 + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-3.5 + parent: 4 + - uid: 443 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 4 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 4 + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 4 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 4 + - uid: 953 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4 + - uid: 954 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 4 + - uid: 955 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 4 + - uid: 956 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 4 + - uid: 957 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 4 + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 4 + - uid: 1130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 4 + - uid: 1361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 4 + - uid: 1362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4 + - uid: 1363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 4 + - uid: 1454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 4 + - uid: 1455 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4 + - uid: 1457 + components: + - type: Transform + pos: 10.5,1.5 + parent: 4 + - uid: 1459 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4 +- proto: GravityGeneratorMini + entities: + - uid: 417 + components: + - type: Transform + pos: 47.5,5.5 + parent: 4 +- proto: Grille + entities: + - uid: 1364 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 4 + - uid: 1365 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 4 + - uid: 1366 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 4 + - uid: 1367 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 4 + - uid: 1368 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 4 + - uid: 1369 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 4 + - uid: 1370 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 4 + - uid: 1371 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 4 + - uid: 1372 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 4 + - uid: 1373 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 4 + - uid: 1374 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 4 + - uid: 1375 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 4 + - uid: 1376 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 4 + - uid: 1377 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 4 + - uid: 1378 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 4 + - uid: 1379 + components: + - type: Transform + pos: 5.5,13.5 + parent: 4 + - uid: 1380 + components: + - type: Transform + pos: 5.5,14.5 + parent: 4 + - uid: 1381 + components: + - type: Transform + pos: 15.5,23.5 + parent: 4 + - uid: 1382 + components: + - type: Transform + pos: 14.5,23.5 + parent: 4 + - uid: 1383 + components: + - type: Transform + pos: 21.5,18.5 + parent: 4 + - uid: 1384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 4 + - uid: 1385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 4 + - uid: 1386 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 4 + - uid: 1387 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 4 + - uid: 1388 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 4 + - uid: 1389 + components: + - type: Transform + pos: 23.5,32.5 + parent: 4 + - uid: 1390 + components: + - type: Transform + pos: 23.5,32.5 + parent: 4 + - uid: 1391 + components: + - type: Transform + pos: 22.5,32.5 + parent: 4 + - uid: 1392 + components: + - type: Transform + pos: 22.5,32.5 + parent: 4 + - uid: 1393 + components: + - type: Transform + pos: 21.5,32.5 + parent: 4 + - uid: 1394 + components: + - type: Transform + pos: 20.5,32.5 + parent: 4 + - uid: 1395 + components: + - type: Transform + pos: 19.5,32.5 + parent: 4 + - uid: 1396 + components: + - type: Transform + pos: 18.5,32.5 + parent: 4 + - uid: 1397 + components: + - type: Transform + pos: 17.5,32.5 + parent: 4 + - uid: 1398 + components: + - type: Transform + pos: 16.5,32.5 + parent: 4 + - uid: 1399 + components: + - type: Transform + pos: 16.5,32.5 + parent: 4 + - uid: 1400 + components: + - type: Transform + pos: 16.5,32.5 + parent: 4 + - uid: 1401 + components: + - type: Transform + pos: 15.5,32.5 + parent: 4 + - uid: 1402 + components: + - type: Transform + pos: 15.5,36.5 + parent: 4 + - uid: 1404 + components: + - type: Transform + pos: 17.5,36.5 + parent: 4 + - uid: 1406 + components: + - type: Transform + pos: 19.5,36.5 + parent: 4 + - uid: 1407 + components: + - type: Transform + pos: 41.5,13.5 + parent: 4 + - uid: 1408 + components: + - type: Transform + pos: 41.5,12.5 + parent: 4 + - uid: 1409 + components: + - type: Transform + pos: 41.5,11.5 + parent: 4 + - uid: 1410 + components: + - type: Transform + pos: 41.5,10.5 + parent: 4 + - uid: 1411 + components: + - type: Transform + pos: 41.5,9.5 + parent: 4 + - uid: 1412 + components: + - type: Transform + pos: 41.5,8.5 + parent: 4 + - uid: 1413 + components: + - type: Transform + pos: 41.5,7.5 + parent: 4 + - uid: 1414 + components: + - type: Transform + pos: 41.5,6.5 + parent: 4 + - uid: 1415 + components: + - type: Transform + pos: 41.5,5.5 + parent: 4 + - uid: 1416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 4 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 4 + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 4 + - uid: 1419 + components: + - type: Transform + pos: -0.5,11.5 + parent: 4 + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 4 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 4 + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 4 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 4 + - uid: 1424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 4 + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 4 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 4 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 4 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 4 + - uid: 1429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 4 + - uid: 1430 + components: + - type: Transform + pos: -0.5,12.5 + parent: 4 + - uid: 1431 + components: + - type: Transform + pos: 1.5,11.5 + parent: 4 + - uid: 1432 + components: + - type: Transform + pos: 1.5,12.5 + parent: 4 + - uid: 1444 + components: + - type: Transform + pos: 23.5,36.5 + parent: 4 + - uid: 2019 + components: + - type: Transform + pos: 21.5,36.5 + parent: 4 +- proto: HarpInstrument + entities: + - uid: 1433 + components: + - type: Transform + pos: 20.5,11.5 + parent: 4 +- proto: HighSecCaptainLocked + entities: + - uid: 63 + components: + - type: Transform + pos: 0.5,12.5 + parent: 4 + - uid: 2007 + components: + - type: Transform + pos: 0.5,10.5 + parent: 4 +- proto: hydroponicsTray + entities: + - uid: 1436 + components: + - type: Transform + pos: 32.5,10.5 + parent: 4 + - uid: 1437 + components: + - type: Transform + pos: 32.5,12.5 + parent: 4 + - uid: 1438 + components: + - type: Transform + pos: 32.5,13.5 + parent: 4 + - uid: 1439 + components: + - type: Transform + pos: 30.5,10.5 + parent: 4 + - uid: 1440 + components: + - type: Transform + pos: 31.5,10.5 + parent: 4 +- proto: JanitorialTrolley + entities: + - uid: 1442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,8.5 + parent: 4 +- proto: Jukebox + entities: + - uid: 2004 + components: + - type: Transform + pos: 17.5,17.5 + parent: 4 +- proto: KitchenElectricGrill + entities: + - uid: 1443 + components: + - type: Transform + pos: 24.5,21.5 + parent: 4 +- proto: KitchenReagentGrinder + entities: + - uid: 1445 + components: + - type: Transform + pos: 22.5,22.5 + parent: 4 +- proto: KitchenSpike + entities: + - uid: 2215 + components: + - type: Transform + pos: 24.5,18.5 + parent: 4 +- proto: LockerBotanistLoot + entities: + - uid: 1447 + components: + - type: Transform + pos: 31.5,15.5 + parent: 4 +- proto: LockerFreezer + entities: + - uid: 1743 + components: + - type: Transform + pos: 27.5,19.5 + parent: 4 +- proto: MarimbaInstrument + entities: + - uid: 1448 + components: + - type: Transform + pos: 18.5,11.5 + parent: 4 +- proto: MedicatedSuture + entities: + - uid: 1449 + components: + - type: Transform + pos: -11.507141,6.619212 + parent: 4 + - uid: 1450 + components: + - type: Transform + pos: -11.538391,6.317129 + parent: 4 + - uid: 1451 + components: + - type: Transform + pos: -11.548807,6.056712 + parent: 4 + - uid: 1452 + components: + - type: Transform + pos: -11.507141,5.806712 + parent: 4 + - uid: 1453 + components: + - type: Transform + pos: -11.569641,5.556712 + parent: 4 +- proto: Mirror + entities: + - uid: 2020 + components: + - type: Transform + pos: 4.5,8.5 + parent: 4 +- proto: PaperCNCSheet + entities: + - uid: 2180 + components: + - type: Transform + pos: 9.380022,0.77173996 + parent: 4 + - uid: 2181 + components: + - type: Transform + pos: 9.520647,0.70923996 + parent: 4 + - uid: 2182 + components: + - type: Transform + pos: 9.614397,0.58423996 + parent: 4 + - uid: 2183 + components: + - type: Transform + pos: 9.374168,0.67151403 + parent: 4 + - uid: 2184 + components: + - type: Transform + pos: 9.367224,0.7617917 + parent: 4 + - uid: 2185 + components: + - type: Transform + pos: 9.665834,0.46318054 + parent: 4 + - uid: 2186 + components: + - type: Transform + pos: 29.700567,0.75723314 + parent: 4 + - uid: 2187 + components: + - type: Transform + pos: 29.622442,0.67910814 + parent: 4 + - uid: 2188 + components: + - type: Transform + pos: 29.450567,0.50723314 + parent: 4 + - uid: 2189 + components: + - type: Transform + pos: 29.440294,0.39715576 + parent: 4 + - uid: 2190 + components: + - type: Transform + pos: 29.593073,0.5985446 + parent: 4 + - uid: 2191 + components: + - type: Transform + pos: 29.280573,0.40409994 + parent: 4 +- proto: PianoInstrument + entities: + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 4 +- proto: PlushieDiona + entities: + - uid: 62 + components: + - type: Transform + pos: 17.749533,-2.2727833 + parent: 4 +- proto: PlushieGhost + entities: + - uid: 64 + components: + - type: Transform + pos: 20.534252,-1.4168739 + parent: 4 +- proto: PlushieHuman + entities: + - uid: 65 + components: + - type: Transform + pos: 9.473909,3.6904972 + parent: 4 +- proto: PlushieLizard + entities: + - uid: 1204 + components: + - type: Transform + pos: 21.775114,38.740227 + parent: 4 + - uid: 2221 + components: + - type: Transform + pos: 21.78553,38.25065 + parent: 4 +- proto: PlushieLizardMirrored + entities: + - uid: 2223 + components: + - type: Transform + pos: 21.236973,38.740227 + parent: 4 + - uid: 2224 + components: + - type: Transform + pos: 21.184889,38.2819 + parent: 4 +- proto: PlushiePenguin + entities: + - uid: 66 + components: + - type: Transform + pos: 25.525747,-1.2763176 + parent: 4 +- proto: PlushieRouny + entities: + - uid: 2006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.527534,3.7431076 + parent: 4 +- proto: PlushieSpaceLizard + entities: + - uid: 1434 + components: + - type: Transform + pos: 13.633818,-1.2562838 + parent: 4 +- proto: PlushieXeno + entities: + - uid: 1435 + components: + - type: Transform + pos: 30.40288,3.6451812 + parent: 4 +- proto: Poweredlight + entities: + - uid: 1466 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4 + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 4 + - uid: 1468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 4 + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 4 + - uid: 1470 + components: + - type: Transform + pos: 19.5,17.5 + parent: 4 +- proto: PrefilledSyringe + entities: + - uid: 1471 + components: + - type: Transform + pos: 30.948,16.307507 + parent: 4 +- proto: Railing + entities: + - uid: 1472 + components: + - type: Transform + pos: 19.5,13.5 + parent: 4 + - uid: 1473 + components: + - type: Transform + pos: 18.5,13.5 + parent: 4 + - uid: 1474 + components: + - type: Transform + pos: 20.5,13.5 + parent: 4 + - uid: 1475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 4 + - uid: 1476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 4 + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 4 + - uid: 1478 + components: + - type: Transform + pos: -9.5,7.5 + parent: 4 + - uid: 1479 + components: + - type: Transform + pos: -7.5,7.5 + parent: 4 + - uid: 1480 + components: + - type: Transform + pos: -6.5,7.5 + parent: 4 + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 4 + - uid: 1482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 4 + - uid: 1483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 4 + - uid: 1484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 4 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 4 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 4 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 4 + - uid: 1488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 4 + - uid: 1489 + components: + - type: Transform + pos: -8.5,7.5 + parent: 4 + - uid: 1490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 4 + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 4 +- proto: RailingCorner + entities: + - uid: 1492 + components: + - type: Transform + pos: 17.5,12.5 + parent: 4 + - uid: 1493 + components: + - type: Transform + pos: 16.5,11.5 + parent: 4 + - uid: 1494 + components: + - type: Transform + pos: 15.5,10.5 + parent: 4 + - uid: 1495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 4 + - uid: 1496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 4 + - uid: 1497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,10.5 + parent: 4 + - uid: 1498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 4 + - uid: 1499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 4 + - uid: 1500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 4 + - uid: 1501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 4 + - uid: 1502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 4 + - uid: 1503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 4 + - uid: 1504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 4 + - uid: 1505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 4 + - uid: 1506 + components: + - type: Transform + pos: -5.5,7.5 + parent: 4 + - uid: 1507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 4 +- proto: RailingCornerSmall + entities: + - uid: 1508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 4 + - uid: 1509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 4 + - uid: 1510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 4 + - uid: 1511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 4 + - uid: 1512 + components: + - type: Transform + pos: 21.5,5.5 + parent: 4 + - uid: 1513 + components: + - type: Transform + pos: 22.5,6.5 + parent: 4 + - uid: 1514 + components: + - type: Transform + pos: 23.5,7.5 + parent: 4 + - uid: 1515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,11.5 + parent: 4 + - uid: 1516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 4 + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 4 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 4 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 4 +- proto: RailingRound + entities: + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 4 +- proto: RandomArcade + entities: + - uid: 1523 + components: + - type: Transform + pos: 10.5,5.5 + parent: 4 + - uid: 1525 + components: + - type: Transform + pos: 28.5,5.5 + parent: 4 +- proto: RandomDrinkGlass + entities: + - uid: 1526 + components: + - type: Transform + pos: 11.5,14.5 + parent: 4 + - uid: 1527 + components: + - type: Transform + pos: 13.5,16.5 + parent: 4 + - uid: 1528 + components: + - type: Transform + pos: 12.5,15.5 + parent: 4 + - uid: 1529 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4 +- proto: RandomPainting + entities: + - uid: 1530 + components: + - type: Transform + pos: 19.5,18.5 + parent: 4 + - uid: 1531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 4 +- proto: RandomPosterAny + entities: + - uid: 1532 + components: + - type: Transform + pos: 10.5,6.5 + parent: 4 + - uid: 1533 + components: + - type: Transform + pos: 28.5,6.5 + parent: 4 +- proto: RandomSpawner + entities: + - uid: 1534 + components: + - type: Transform + pos: 14.5,4.5 + parent: 4 + - uid: 1536 + components: + - type: Transform + pos: 14.5,12.5 + parent: 4 + - uid: 1537 + components: + - type: Transform + pos: 23.5,15.5 + parent: 4 + - uid: 1538 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4 + - uid: 1539 + components: + - type: Transform + pos: 32.5,4.5 + parent: 4 + - uid: 1540 + components: + - type: Transform + pos: 19.5,1.5 + parent: 4 + - uid: 1541 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 4 + - uid: 1542 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4 + - uid: 1543 + components: + - type: Transform + pos: 9.5,10.5 + parent: 4 + - uid: 1544 + components: + - type: Transform + pos: 16.5,20.5 + parent: 4 + - uid: 1545 + components: + - type: Transform + pos: 8.5,15.5 + parent: 4 + - uid: 1546 + components: + - type: Transform + pos: 22.5,20.5 + parent: 4 + - uid: 1547 + components: + - type: Transform + pos: 29.5,15.5 + parent: 4 + - uid: 1548 + components: + - type: Transform + pos: 30.5,11.5 + parent: 4 + - uid: 1549 + components: + - type: Transform + pos: 19.5,7.5 + parent: 4 + - uid: 1550 + components: + - type: Transform + pos: 22.5,9.5 + parent: 4 + - uid: 1551 + components: + - type: Transform + pos: 15.5,3.5 + parent: 4 + - uid: 1552 + components: + - type: Transform + pos: 20.5,7.5 + parent: 4 + - uid: 1553 + components: + - type: Transform + pos: 23.5,16.5 + parent: 4 + - uid: 1554 + components: + - type: Transform + pos: 24.5,14.5 + parent: 4 + - uid: 1555 + components: + - type: Transform + pos: 32.5,5.5 + parent: 4 + - uid: 1639 + components: + - type: Transform + pos: -10.5,5.5 + parent: 4 + - uid: 2213 + components: + - type: Transform + pos: 23.5,5.5 + parent: 4 + - uid: 2218 + components: + - type: Transform + pos: 1.5,9.5 + parent: 4 + - uid: 2226 + components: + - type: Transform + pos: -4.5,5.5 + parent: 4 + - uid: 2227 + components: + - type: Transform + pos: -9.5,9.5 + parent: 4 + - uid: 2228 + components: + - type: Transform + pos: -6.5,11.5 + parent: 4 + - uid: 2229 + components: + - type: Transform + pos: -6.5,8.5 + parent: 4 + - uid: 2230 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4 + - uid: 2232 + components: + - type: Transform + pos: 25.5,0.5 + parent: 4 + - uid: 2233 + components: + - type: Transform + pos: 7.5,3.5 + parent: 4 + - uid: 2234 + components: + - type: Transform + pos: 29.5,7.5 + parent: 4 + - uid: 2235 + components: + - type: Transform + pos: 26.5,19.5 + parent: 4 + - uid: 2236 + components: + - type: Transform + pos: 12.5,18.5 + parent: 4 + - uid: 2237 + components: + - type: Transform + pos: 11.5,15.5 + parent: 4 + - uid: 2238 + components: + - type: Transform + pos: 18.5,21.5 + parent: 4 +- proto: RandomVendingDrinks + entities: + - uid: 1556 + components: + - type: Transform + pos: 24.5,15.5 + parent: 4 + - uid: 2199 + components: + - type: Transform + pos: 19.5,17.5 + parent: 4 +- proto: RandomVendingSnacks + entities: + - uid: 1557 + components: + - type: Transform + pos: 25.5,14.5 + parent: 4 +- proto: Recycler + entities: + - uid: 1128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,31.5 + parent: 4 + - type: Anchorable + delay: 1 + flags: None + - type: Emagged +- proto: RegenerativeMesh + entities: + - uid: 1558 + components: + - type: Transform + pos: -11.455057,13.67942 + parent: 4 + - uid: 1559 + components: + - type: Transform + pos: -11.455057,13.33567 + parent: 4 + - uid: 1560 + components: + - type: Transform + pos: -11.413391,13.02317 + parent: 4 + - uid: 1561 + components: + - type: Transform + pos: -11.413391,12.6690035 + parent: 4 + - uid: 1562 + components: + - type: Transform + pos: -11.434225,12.4398365 + parent: 4 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 1343 + components: + - type: Transform + pos: 21.5,36.5 + parent: 4 + - uid: 1563 + components: + - type: Transform + pos: 15.5,32.5 + parent: 4 + - uid: 1564 + components: + - type: Transform + pos: 16.5,32.5 + parent: 4 + - uid: 1565 + components: + - type: Transform + pos: 17.5,32.5 + parent: 4 + - uid: 1566 + components: + - type: Transform + pos: 18.5,32.5 + parent: 4 + - uid: 1567 + components: + - type: Transform + pos: 19.5,32.5 + parent: 4 + - uid: 1568 + components: + - type: Transform + pos: 20.5,32.5 + parent: 4 + - uid: 1569 + components: + - type: Transform + pos: 21.5,32.5 + parent: 4 + - uid: 1570 + components: + - type: Transform + pos: 22.5,32.5 + parent: 4 + - uid: 1571 + components: + - type: Transform + pos: 23.5,32.5 + parent: 4 + - uid: 1572 + components: + - type: Transform + pos: 19.5,36.5 + parent: 4 + - uid: 1575 + components: + - type: Transform + pos: 17.5,36.5 + parent: 4 + - uid: 1576 + components: + - type: Transform + pos: 15.5,36.5 + parent: 4 + - uid: 1577 + components: + - type: Transform + pos: 41.5,5.5 + parent: 4 + - uid: 1578 + components: + - type: Transform + pos: 41.5,6.5 + parent: 4 + - uid: 1579 + components: + - type: Transform + pos: 41.5,7.5 + parent: 4 + - uid: 1580 + components: + - type: Transform + pos: 41.5,8.5 + parent: 4 + - uid: 1581 + components: + - type: Transform + pos: 41.5,9.5 + parent: 4 + - uid: 1582 + components: + - type: Transform + pos: 41.5,9.5 + parent: 4 + - uid: 1583 + components: + - type: Transform + pos: 41.5,10.5 + parent: 4 + - uid: 1584 + components: + - type: Transform + pos: 41.5,10.5 + parent: 4 + - uid: 1585 + components: + - type: Transform + pos: 41.5,11.5 + parent: 4 + - uid: 1586 + components: + - type: Transform + pos: 41.5,11.5 + parent: 4 + - uid: 1587 + components: + - type: Transform + pos: 41.5,12.5 + parent: 4 + - uid: 1588 + components: + - type: Transform + pos: 41.5,12.5 + parent: 4 + - uid: 1589 + components: + - type: Transform + pos: 41.5,13.5 + parent: 4 + - uid: 1590 + components: + - type: Transform + pos: 41.5,13.5 + parent: 4 + - uid: 1637 + components: + - type: Transform + pos: 23.5,36.5 + parent: 4 +- proto: ReinforcedWindow + entities: + - uid: 1591 + components: + - type: Transform + pos: 21.5,18.5 + parent: 4 + - type: Godmode + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 4 + - type: Godmode + - uid: 1593 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 4 + - type: Godmode + - uid: 1594 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 4 + - type: Godmode + - uid: 1595 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 4 + - type: Godmode + - uid: 1596 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 4 + - type: Godmode + - uid: 1597 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 4 + - type: Godmode + - uid: 1598 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 4 + - type: Godmode + - uid: 1599 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 4 + - type: Godmode + - uid: 1600 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 4 + - type: Godmode + - uid: 1601 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 4 + - type: Godmode + - uid: 1602 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 4 + - type: Godmode + - uid: 1603 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 4 + - type: Godmode + - uid: 1604 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 4 + - type: Godmode + - uid: 1605 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 4 + - type: Godmode + - uid: 1606 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 4 + - type: Godmode + - uid: 1607 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 4 + - type: Godmode + - uid: 1608 + components: + - type: Transform + pos: 15.5,23.5 + parent: 4 + - type: Godmode + - uid: 1609 + components: + - type: Transform + pos: 14.5,23.5 + parent: 4 + - type: Godmode + - uid: 1610 + components: + - type: Transform + pos: 5.5,14.5 + parent: 4 + - type: Godmode + - uid: 1611 + components: + - type: Transform + pos: 5.5,13.5 + parent: 4 + - type: Godmode + - uid: 1612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 4 + - type: Godmode + - uid: 1613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 4 + - type: Godmode + - uid: 1614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 4 + - type: Godmode + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 4 + - type: Godmode + - uid: 1616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 4 + - type: Godmode + - uid: 1617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 4 + - type: Godmode + - uid: 1618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 4 + - type: Godmode + - uid: 1619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 4 + - type: Godmode + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 4 + - type: Godmode + - uid: 1621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 4 + - type: Godmode + - uid: 1622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 4 + - type: Godmode + - uid: 1623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 4 + - type: Godmode + - uid: 1624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 4 + - type: Godmode + - uid: 1625 + components: + - type: Transform + pos: 1.5,11.5 + parent: 4 + - uid: 1626 + components: + - type: Transform + pos: 1.5,12.5 + parent: 4 + - uid: 1627 + components: + - type: Transform + pos: -0.5,12.5 + parent: 4 + - uid: 1628 + components: + - type: Transform + pos: -0.5,11.5 + parent: 4 +- proto: RockGuitarInstrument + entities: + - uid: 1629 + components: + - type: Transform + pos: 19.152594,8.226169 + parent: 4 + - uid: 1630 + components: + - type: Transform + pos: 20.045805,8.197176 + parent: 4 +- proto: SeedExtractor + entities: + - uid: 1720 + components: + - type: Transform + pos: 28.5,14.5 + parent: 4 +- proto: SignalButton + entities: + - uid: 2262 + components: + - type: Transform + pos: 24.5,32.5 + parent: 4 + - type: DeviceLinkSource + linkedPorts: + 1128: + - Pressed: Forward +- proto: SignDirectionalBar + entities: + - uid: 1631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 4 +- proto: SignDirectionalDorms + entities: + - uid: 1632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 4 +- proto: SignDirectionalFood + entities: + - uid: 1633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 4 +- proto: SignDirectionalHydro + entities: + - uid: 1634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 4 +- proto: SignDirectionalJanitor + entities: + - uid: 1635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,8.5 + parent: 4 +- proto: SinkWide + entities: + - uid: 1636 + components: + - type: Transform + pos: 31.5,8.5 + parent: 4 + - uid: 1638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 4 + - uid: 1640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 4 + - uid: 1641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 4 +- proto: SodaDispenser + entities: + - uid: 1642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 4 + - uid: 1643 + components: + - type: Transform + pos: 11.5,20.5 + parent: 4 +- proto: SpaceVillainArcade + entities: + - uid: 1338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 4 +- proto: SpawnMobCatBingus + entities: + - uid: 2239 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4 +- proto: SpawnMobCatFloppa + entities: + - uid: 2241 + components: + - type: Transform + pos: 25.5,11.5 + parent: 4 +- proto: SpawnMobCorgi + entities: + - uid: 2240 + components: + - type: Transform + pos: 22.5,2.5 + parent: 4 +- proto: SpawnMobCow + entities: + - uid: 2008 + components: + - type: Transform + pos: 25.5,17.5 + parent: 4 +- proto: StairStageWhite + entities: + - uid: 1644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 4 + - uid: 1645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 4 +- proto: StoolBar + entities: + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 4 + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 4 + - uid: 1648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 4 + - uid: 1649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 4 +- proto: SyndicateMicrowave + entities: + - uid: 1652 + components: + - type: Transform + pos: 20.5,23.5 + parent: 4 +- proto: TableCounterMetal + entities: + - uid: 1653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 4 + - uid: 1654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 4 + - uid: 1655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 4 + - uid: 1656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 4 + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 4 + - uid: 1658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 4 + - uid: 1659 + components: + - type: Transform + pos: 22.5,17.5 + parent: 4 + - uid: 1660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 4 + - uid: 1661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 4 + - uid: 1662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 4 + - uid: 1663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 4 +- proto: TableCounterWood + entities: + - uid: 1664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 4 + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 4 + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 4 + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 4 + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 4 + - uid: 1669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 4 + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 4 + - uid: 1671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 4 + - uid: 1672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 4 + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 4 + - uid: 1674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 4 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,15.5 + parent: 4 +- proto: TableFancyBlack + entities: + - uid: 1676 + components: + - type: Transform + pos: -11.5,11.5 + parent: 4 + - uid: 1677 + components: + - type: Transform + pos: -11.5,10.5 + parent: 4 + - uid: 1678 + components: + - type: Transform + pos: -11.5,9.5 + parent: 4 + - uid: 1679 + components: + - type: Transform + pos: -11.5,8.5 + parent: 4 + - uid: 1680 + components: + - type: Transform + pos: -11.5,7.5 + parent: 4 +- proto: TableFancyRed + entities: + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 4 + - uid: 1682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 4 + - uid: 1683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 4 + - uid: 1684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 4 + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 4 + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 4 + - uid: 1687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 4 + - uid: 1688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 4 + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,18.5 + parent: 4 + - uid: 1690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 4 + - uid: 1691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 4 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 4 + - uid: 1693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 4 + - uid: 1694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 4 + - uid: 1695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 4 + - uid: 1696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 4 + - uid: 1697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 4 + - uid: 1698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 4 + - uid: 1699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 4 + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 4 + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 4 + - uid: 1702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 4 + - uid: 1703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 4 + - uid: 1704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 4 + - uid: 1705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 4 + - uid: 1706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 4 + - uid: 1707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 4 + - uid: 1708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 4 + - uid: 1709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 4 + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 4 + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 4 +- proto: TableFancyWhite + entities: + - uid: 1712 + components: + - type: Transform + pos: -11.5,13.5 + parent: 4 + - uid: 1713 + components: + - type: Transform + pos: -11.5,12.5 + parent: 4 + - uid: 1714 + components: + - type: Transform + pos: -11.5,6.5 + parent: 4 + - uid: 1715 + components: + - type: Transform + pos: -11.5,5.5 + parent: 4 +- proto: TableReinforced + entities: + - uid: 1716 + components: + - type: Transform + pos: 20.5,23.5 + parent: 4 + - uid: 1717 + components: + - type: Transform + pos: 21.5,23.5 + parent: 4 + - uid: 1718 + components: + - type: Transform + pos: 21.5,22.5 + parent: 4 + - uid: 1719 + components: + - type: Transform + pos: 22.5,22.5 + parent: 4 + - uid: 1721 + components: + - type: Transform + pos: 24.5,22.5 + parent: 4 + - uid: 1722 + components: + - type: Transform + pos: 24.5,21.5 + parent: 4 +- proto: TableWood + entities: + - uid: 1723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 4 + - uid: 1724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 4 + - uid: 1725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 4 +- proto: TomDrumsInstrument + entities: + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 4 +- proto: TubaInstrument + entities: + - uid: 1727 + components: + - type: Transform + pos: 21.5,8.5 + parent: 4 +- proto: TurboItemRecharger + entities: + - uid: 1446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 4 +- proto: UniformShortsRed + entities: + - uid: 1728 + components: + - type: Transform + pos: -11.525084,7.4533453 + parent: 4 + - uid: 1729 + components: + - type: Transform + pos: -11.540709,7.7033453 + parent: 4 + - uid: 1730 + components: + - type: Transform + pos: -11.540709,7.9064703 + parent: 4 + - uid: 1731 + components: + - type: Transform + pos: -11.525084,8.12522 + parent: 4 +- proto: UniformShortsRedWithTop + entities: + - uid: 1732 + components: + - type: Transform + pos: -11.634459,11.734595 + parent: 4 + - uid: 1733 + components: + - type: Transform + pos: -11.290709,11.71897 + parent: 4 + - uid: 1734 + components: + - type: Transform + pos: -11.603209,11.203345 + parent: 4 + - uid: 1735 + components: + - type: Transform + pos: -11.259459,11.21897 + parent: 4 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 1344 + components: + - type: Transform + pos: 26.587887,16.521667 + parent: 4 + - uid: 1403 + components: + - type: Transform + pos: 26.348305,16.865417 + parent: 4 + - uid: 1405 + components: + - type: Transform + pos: 26.598305,16.855 + parent: 4 + - uid: 1441 + components: + - type: Transform + pos: 26.32747,16.521667 + parent: 4 + - uid: 2214 + components: + - type: Transform + pos: 26.348305,17.19875 + parent: 4 + - uid: 2217 + components: + - type: Transform + pos: 26.619137,17.19875 + parent: 4 +- proto: VendingBarDrobe + entities: + - uid: 1740 + components: + - type: Transform + pos: 18.5,23.5 + parent: 4 + - uid: 1741 + components: + - type: Transform + pos: 17.5,23.5 + parent: 4 +- proto: VendingMachineBooze + entities: + - uid: 1742 + components: + - type: Transform + pos: 12.5,21.5 + parent: 4 +- proto: VendingMachineChefDrobe + entities: + - uid: 1744 + components: + - type: Transform + pos: 26.5,21.5 + parent: 4 +- proto: VendingMachineChefvend + entities: + - uid: 1745 + components: + - type: Transform + pos: 25.5,21.5 + parent: 4 +- proto: VendingMachineCigs + entities: + - uid: 1122 + components: + - type: Transform + pos: 24.5,3.5 + parent: 4 + - type: Emagged + - uid: 2021 + components: + - type: Transform + pos: 14.5,3.5 + parent: 4 + - type: Emagged +- proto: VendingMachineClothing + entities: + - uid: 1746 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4 + - type: Emagged + - uid: 1747 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4 + - type: Emagged +- proto: VendingMachineDinnerware + entities: + - uid: 1748 + components: + - type: Transform + pos: 27.5,20.5 + parent: 4 +- proto: VendingMachineHydrobe + entities: + - uid: 2000 + components: + - type: Transform + pos: 33.5,10.5 + parent: 4 +- proto: VendingMachineJaniDrobe + entities: + - uid: 1750 + components: + - type: Transform + pos: 32.5,8.5 + parent: 4 +- proto: VendingMachineNutri + entities: + - uid: 2010 + components: + - type: Transform + pos: 32.5,14.5 + parent: 4 +- proto: VendingMachineSeeds + entities: + - uid: 1751 + components: + - type: Transform + pos: 30.5,17.5 + parent: 4 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 1753 + components: + - type: Transform + pos: 9.5,11.5 + parent: 4 + - type: Emagged + missingComponents: + - AccessReader + - uid: 1925 + components: + - type: Transform + pos: 5.5,11.5 + parent: 4 + - type: Emagged + missingComponents: + - AccessReader +- proto: VendingMachineWinter + entities: + - uid: 1754 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4 + - type: Emagged +- proto: WallReinforced + entities: + - uid: 1755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 4 + - uid: 1756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 4 + - uid: 1757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 4 + - uid: 1758 + components: + - type: Transform + pos: 19.5,21.5 + parent: 4 + - uid: 1759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 4 + - uid: 1760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 4 + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 4 + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 4 + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,9.5 + parent: 4 + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 4 + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 4 + - uid: 1766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 4 + - uid: 1767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 4 + - uid: 1768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 4 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 4 + - uid: 1770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,16.5 + parent: 4 + - uid: 1771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,14.5 + parent: 4 + - uid: 1772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 4 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,18.5 + parent: 4 + - uid: 1774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 4 + - uid: 1775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 4 + - uid: 1776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 4 + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 4 + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 4 + - uid: 1779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 4 + - uid: 1780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 4 + - uid: 1781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 4 + - uid: 1782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 4 + - uid: 1783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 4 + - uid: 1784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,8.5 + parent: 4 + - uid: 1785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,6.5 + parent: 4 + - uid: 1786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 4 + - uid: 1787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 4 + - uid: 1788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 4 + - uid: 1789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 4 + - uid: 1790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 4 + - uid: 1791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 4 + - uid: 1793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 4 + - uid: 1794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 4 + - uid: 1795 + components: + - type: Transform + pos: 12.5,3.5 + parent: 4 + - uid: 1796 + components: + - type: Transform + pos: 13.5,3.5 + parent: 4 + - uid: 1797 + components: + - type: Transform + pos: 13.5,2.5 + parent: 4 + - uid: 1798 + components: + - type: Transform + pos: 25.5,3.5 + parent: 4 + - uid: 1799 + components: + - type: Transform + pos: 25.5,2.5 + parent: 4 + - uid: 1800 + components: + - type: Transform + pos: 26.5,3.5 + parent: 4 + - uid: 1801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 4 + - uid: 1802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 4 + - uid: 1803 + components: + - type: Transform + pos: 19.5,23.5 + parent: 4 + - uid: 1804 + components: + - type: Transform + pos: 19.5,22.5 + parent: 4 + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 4 +- proto: WallRiveted + entities: + - uid: 73 + components: + - type: Transform + pos: 44.5,4.5 + parent: 4 + - uid: 436 + components: + - type: Transform + pos: 44.5,14.5 + parent: 4 + - uid: 1460 + components: + - type: Transform + pos: 4.5,7.5 + parent: 4 + - uid: 1805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 4 + - uid: 1806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 4 + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 4 + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 4 + - uid: 1809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 4 + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,24.5 + parent: 4 + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 4 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 4 + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,23.5 + parent: 4 + - uid: 1814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 4 + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 4 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,22.5 + parent: 4 + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 4 + - uid: 1818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,22.5 + parent: 4 + - uid: 1819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 4 + - uid: 1820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 4 + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 4 + - uid: 1822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 4 + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 4 + - uid: 1824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 4 + - uid: 1825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 4 + - uid: 1826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 4 + - uid: 1827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,17.5 + parent: 4 + - uid: 1828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,17.5 + parent: 4 + - uid: 1829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 4 + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,16.5 + parent: 4 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 4 + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 4 + - uid: 1833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 4 + - uid: 1834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,12.5 + parent: 4 + - uid: 1835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 4 + - uid: 1836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 4 + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,9.5 + parent: 4 + - uid: 1838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 4 + - uid: 1839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 4 + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,11.5 + parent: 4 + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 4 + - uid: 1842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 4 + - uid: 1843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 4 + - uid: 1844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 4 + - uid: 1845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,3.5 + parent: 4 + - uid: 1846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 4 + - uid: 1847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,2.5 + parent: 4 + - uid: 1848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 4 + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 4 + - uid: 1850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 4 + - uid: 1851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 4 + - uid: 1852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 4 + - uid: 1853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 4 + - uid: 1854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 4 + - uid: 1855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 4 + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 4 + - uid: 1857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 4 + - uid: 1858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 4 + - uid: 1859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 4 + - uid: 1860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 4 + - uid: 1861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 4 + - uid: 1862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 4 + - uid: 1863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 4 + - uid: 1864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 4 + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 4 + - uid: 1866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 4 + - uid: 1867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 4 + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 4 + - uid: 1869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 4 + - uid: 1870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 4 + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 4 + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 4 + - uid: 1873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 4 + - uid: 1874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 4 + - uid: 1875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 4 + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 4 + - uid: 1877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 4 + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 4 + - uid: 1880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 4 + - uid: 1881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 4 + - uid: 1882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 4 + - uid: 1883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 4 + - uid: 1884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 4 + - uid: 1885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 4 + - uid: 1886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 4 + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 4 + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 4 + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 4 + - uid: 1890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 4 + - uid: 1891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,18.5 + parent: 4 + - uid: 1892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 4 + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 4 + - uid: 1894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 4 + - uid: 1895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 4 + - uid: 1896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 4 + - uid: 1897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 4 + - uid: 1898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,22.5 + parent: 4 + - uid: 1899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,22.5 + parent: 4 + - uid: 1900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 4 + - uid: 1901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 4 + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 4 + - uid: 1903 + components: + - type: Transform + pos: 24.5,32.5 + parent: 4 + - uid: 1904 + components: + - type: Transform + pos: 24.5,34.5 + parent: 4 + - uid: 1905 + components: + - type: Transform + pos: 24.5,35.5 + parent: 4 + - uid: 1906 + components: + - type: Transform + pos: 24.5,36.5 + parent: 4 + - uid: 1907 + components: + - type: Transform + pos: 24.5,37.5 + parent: 4 + - uid: 1908 + components: + - type: Transform + pos: 24.5,38.5 + parent: 4 + - uid: 1909 + components: + - type: Transform + pos: 20.5,39.5 + parent: 4 + - uid: 1910 + components: + - type: Transform + pos: 22.5,38.5 + parent: 4 + - uid: 1911 + components: + - type: Transform + pos: 19.5,39.5 + parent: 4 + - uid: 1912 + components: + - type: Transform + pos: 20.5,38.5 + parent: 4 + - uid: 1913 + components: + - type: Transform + pos: 18.5,39.5 + parent: 4 + - uid: 1914 + components: + - type: Transform + pos: 18.5,38.5 + parent: 4 + - uid: 1915 + components: + - type: Transform + pos: 17.5,39.5 + parent: 4 + - uid: 1916 + components: + - type: Transform + pos: 16.5,38.5 + parent: 4 + - uid: 1917 + components: + - type: Transform + pos: 16.5,39.5 + parent: 4 + - uid: 1918 + components: + - type: Transform + pos: 14.5,38.5 + parent: 4 + - uid: 1919 + components: + - type: Transform + pos: 14.5,37.5 + parent: 4 + - uid: 1920 + components: + - type: Transform + pos: 14.5,36.5 + parent: 4 + - uid: 1921 + components: + - type: Transform + pos: 14.5,35.5 + parent: 4 + - uid: 1922 + components: + - type: Transform + pos: 14.5,34.5 + parent: 4 + - uid: 1923 + components: + - type: Transform + pos: 14.5,32.5 + parent: 4 + - uid: 1924 + components: + - type: Transform + pos: 16.5,37.5 + parent: 4 + - uid: 1926 + components: + - type: Transform + pos: 18.5,37.5 + parent: 4 + - uid: 1927 + components: + - type: Transform + pos: 22.5,39.5 + parent: 4 + - uid: 1928 + components: + - type: Transform + pos: 20.5,37.5 + parent: 4 + - uid: 1929 + components: + - type: Transform + pos: 23.5,39.5 + parent: 4 + - uid: 1930 + components: + - type: Transform + pos: 22.5,37.5 + parent: 4 + - uid: 1931 + components: + - type: Transform + pos: 24.5,39.5 + parent: 4 + - uid: 1932 + components: + - type: Transform + pos: 15.5,39.5 + parent: 4 + - uid: 1933 + components: + - type: Transform + pos: 20.5,36.5 + parent: 4 + - uid: 1934 + components: + - type: Transform + pos: 14.5,39.5 + parent: 4 + - uid: 1935 + components: + - type: Transform + pos: 16.5,36.5 + parent: 4 + - uid: 1936 + components: + - type: Transform + pos: 18.5,36.5 + parent: 4 + - uid: 1937 + components: + - type: Transform + pos: 22.5,36.5 + parent: 4 + - uid: 1938 + components: + - type: Transform + pos: 43.5,14.5 + parent: 4 + - uid: 1939 + components: + - type: Transform + pos: 41.5,14.5 + parent: 4 + - uid: 1941 + components: + - type: Transform + pos: 45.5,14.5 + parent: 4 + - uid: 1942 + components: + - type: Transform + pos: 46.5,14.5 + parent: 4 + - uid: 1943 + components: + - type: Transform + pos: 47.5,14.5 + parent: 4 + - uid: 1944 + components: + - type: Transform + pos: 48.5,14.5 + parent: 4 + - uid: 1945 + components: + - type: Transform + pos: 48.5,4.5 + parent: 4 + - uid: 1946 + components: + - type: Transform + pos: 48.5,5.5 + parent: 4 + - uid: 1947 + components: + - type: Transform + pos: 48.5,6.5 + parent: 4 + - uid: 1948 + components: + - type: Transform + pos: 48.5,7.5 + parent: 4 + - uid: 1949 + components: + - type: Transform + pos: 48.5,8.5 + parent: 4 + - uid: 1950 + components: + - type: Transform + pos: 48.5,9.5 + parent: 4 + - uid: 1951 + components: + - type: Transform + pos: 48.5,10.5 + parent: 4 + - uid: 1952 + components: + - type: Transform + pos: 48.5,11.5 + parent: 4 + - uid: 1953 + components: + - type: Transform + pos: 48.5,12.5 + parent: 4 + - uid: 1954 + components: + - type: Transform + pos: 48.5,13.5 + parent: 4 + - uid: 1955 + components: + - type: Transform + pos: 47.5,4.5 + parent: 4 + - uid: 1956 + components: + - type: Transform + pos: 46.5,4.5 + parent: 4 + - uid: 1957 + components: + - type: Transform + pos: 45.5,4.5 + parent: 4 + - uid: 1959 + components: + - type: Transform + pos: 43.5,4.5 + parent: 4 + - uid: 1960 + components: + - type: Transform + pos: 41.5,4.5 + parent: 4 + - uid: 1961 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 4 + - uid: 1962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 4 + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 4 + - uid: 1964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 4 + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 4 + - uid: 1966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 4 + - uid: 1967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 4 + - uid: 1968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 4 + - uid: 1969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 4 + - uid: 1970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 4 + - uid: 1971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 4 + - uid: 1972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 4 + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 4 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 4 + - uid: 1975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 4 + - uid: 1976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 4 + - uid: 1977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 4 + - uid: 1978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 4 + - uid: 1979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 4 + - uid: 1980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 4 + - uid: 1981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 4 + - uid: 1982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 4 + - uid: 1983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 4 + - uid: 1984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 4 + - uid: 1985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 4 + - uid: 1986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 4 + - uid: 1987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 4 + - uid: 1988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 4 + - uid: 1989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 4 + - uid: 1990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 4 + - uid: 1991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 4 + - uid: 1992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 4 + - uid: 1993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 4 + - uid: 1994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 4 + - uid: 1995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 4 + - uid: 1996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 4 + - uid: 1997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 4 + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 4 + - uid: 2009 + components: + - type: Transform + pos: 21.5,39.5 + parent: 4 +- proto: WardrobeBotanistFilled + entities: + - uid: 1999 + components: + - type: Transform + pos: 31.5,16.5 + parent: 4 +- proto: WardrobeMixedFilled + entities: + - uid: 2251 + components: + - type: Transform + pos: 7.5,7.5 + parent: 4 + - uid: 2252 + components: + - type: Transform + pos: 8.5,7.5 + parent: 4 +- proto: WarpPoint + entities: + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 4 + - type: WarpPoint + location: Ghost Bar +- proto: WaterTankHighCapacity + entities: + - uid: 1535 + components: + - type: Transform + pos: 33.5,11.5 + parent: 4 +- proto: WeaponDisablerPractice + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.3403616,9.525703 + parent: 4 + - uid: 60 + components: + - type: Transform + pos: 7.2466116,9.728828 + parent: 4 + - uid: 1736 + components: + - type: Transform + pos: 7.2466116,9.728828 + parent: 4 + - uid: 1737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.3403616,9.525703 + parent: 4 + - uid: 1738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.6841116,9.603828 + parent: 4 + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.3559866,9.447578 + parent: 4 + - uid: 2001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.3559866,9.447578 + parent: 4 + - uid: 2002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.6841116,9.603828 + parent: 4 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.9028616,9.541328 + parent: 4 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.9028616,9.541328 + parent: 4 + - uid: 2003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.9028616,9.541328 + parent: 4 +- proto: WeaponRifleFoam + entities: + - uid: 2033 + components: + - type: Transform + pos: 3.7159958,217.37047 + parent: 1 + - type: Gun + lastFire: 2444.3785557 + currentAngle: 0.022573139086181596 rad + fireRate: 200 +- proto: WindoorHydroponicsLocked + entities: + - uid: 2011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 4 + - uid: 2012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 4 +- proto: WindoorKitchenLocked + entities: + - uid: 2013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 4 + - uid: 2014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 4 +- proto: Window + entities: + - uid: 2015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 4 +- proto: WindowReinforcedDirectional + entities: + - uid: 2016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 4 + - uid: 2017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 4 + - uid: 2018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 4 +... diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index aa61c9bb3a..be3a842884 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -58311,6 +58311,14 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,7.5 parent: 6747 +- proto: ComputerPsionicsRecords + entities: + - uid: 27824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-62.5 + parent: 6747 - proto: ComputerRadar entities: - uid: 3976 diff --git a/Resources/Maps/asterisk.yml b/Resources/Maps/asterisk.yml index 41fc0f2e73..4966832b24 100644 --- a/Resources/Maps/asterisk.yml +++ b/Resources/Maps/asterisk.yml @@ -25465,6 +25465,14 @@ entities: rot: 3.141592653589793 rad pos: 30.5,6.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 11188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 2 - proto: ComputerRadar entities: - uid: 10761 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml new file mode 100644 index 0000000000..38c53ce7ee --- /dev/null +++ b/Resources/Maps/box.yml @@ -0,0 +1,180275 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 13: FloorAstroIce + 14: FloorBar + 16: FloorBlue + 17: FloorBlueCircuit + 19: FloorBrokenWood + 20: FloorCarpetClown + 21: FloorCarpetOffice + 25: FloorClown + 29: FloorDark + 33: FloorDarkMini + 38: FloorDarkPlastic + 1: FloorDesert + 4: FloorDirt + 41: FloorEighties + 44: FloorFreezer + 45: FloorGlass + 47: FloorGrass + 49: FloorGrassJungle + 6: FloorGym + 58: FloorHydro + 60: FloorKitchen + 61: FloorLaundry + 62: FloorLino + 64: FloorMetalDiamond + 5: FloorMetalYellow + 65: FloorMime + 2: FloorMono + 9: FloorRGlass + 77: FloorReinforced + 78: FloorReinforcedHardened + 79: FloorRockVault + 80: FloorShowroom + 82: FloorShuttleOrange + 87: FloorSnow + 89: FloorSteel + 3: FloorSteelCheckerDark + 92: FloorSteelCheckerLight + 96: FloorSteelDirty + 98: FloorSteelLime + 104: FloorTechMaint + 105: FloorTechMaint2 + 106: FloorTechMaint3 + 108: FloorWhite + 117: FloorWhitePlastic + 118: FloorWood + 119: FloorWoodTile + 120: Lattice + 121: Plating +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 + - uid: 2 + components: + - type: MetaData + name: Box Station + - type: Transform + pos: 0.50032806,0.50115013 + parent: 1 + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: WQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAACIQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAWQAAAAABEQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAB + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAFAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABEQAAAAAAEQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACEQAAAAAAHQAAAAACHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAACWQAAAAACWQAAAAACWQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAACdgAAAAADWQAAAAAAeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: WQAAAAADWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: WQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAdgAAAAABdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAB + version: 6 + 1,-2: + ind: 1,-2 + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABWQAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAADWQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAADbAAAAAAAHQAAAAABHQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAADWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAADHQAAAAAAHQAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAADHQAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACHQAAAAACHQAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABHQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAB + version: 6 + 0,-2: + ind: 0,-2 + tiles: WQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACdgAAAAABHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAABHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABLAAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAACHQAAAAACLQAAAAABHQAAAAADHQAAAAACHQAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: WQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADLwAAAAAAWQAAAAABeQAAAAAAHQAAAAABdgAAAAACdgAAAAAAdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAWQAAAAACeQAAAAAAHQAAAAABdgAAAAAAdgAAAAADdgAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAALwAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAADHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADLwAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAACdgAAAAACHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADdgAAAAAAdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAHQAAAAABdgAAAAABdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAABLQAAAAACHQAAAAACLQAAAAAD + version: 6 + -2,0: + ind: -2,0 + tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAABWQAAAAADAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAB + version: 6 + 0,-3: + ind: 0,-3 + tiles: WQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdwAAAAABdgAAAAAAdgAAAAAAdgAAAAACdwAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAdwAAAAADdgAAAAAAdgAAAAABdgAAAAACdwAAAAABaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAB + version: 6 + 1,-3: + ind: 1,-3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABdQAAAAAAdQAAAAACdQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAdQAAAAACdQAAAAACdQAAAAACdQAAAAACdQAAAAADWQAAAAADLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAaQAAAAAAdQAAAAAAdQAAAAACdQAAAAABdQAAAAAAdQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAJgAAAAADJgAAAAABdQAAAAACJgAAAAADJgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACWQAAAAABWQAAAAABWQAAAAABHQAAAAACeQAAAAAAJgAAAAACJgAAAAAAdQAAAAACJgAAAAAAJgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAADWQAAAAACWQAAAAADWQAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: eQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAADgAAAAABDgAAAAABDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAADDgAAAAABDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAQAAAAADAQAAAAAFAQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAQAAAAAEAQAAAAABAQAAAAAFWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACAQAAAAACAQAAAAAEAQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAQAAAAACAQAAAAAFAQAAAAABFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABAQAAAAADAQAAAAABAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAQAAAAAFAQAAAAACAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: eQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: HQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAWQAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: WQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAFAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAACAQAAAAADAQAAAAAFAQAAAAADAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAFAQAAAAADAQAAAAAFAQAAAAABAQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAADAQAAAAAFAQAAAAAAAQAAAAADAQAAAAABAQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAFAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: eQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: eAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: WQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: WQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAB + version: 6 + -3,-1: + ind: -3,-1 + tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAC + version: 6 + 3,0: + ind: 3,0 + tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: eQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAACHQAAAAADWQAAAAABeQAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADdgAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAABXAAAAAACeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACWQAAAAADHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAAAWQAAAAACHQAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADWQAAAAACHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAABWQAAAAACeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACWQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABLwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACWQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAADWQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAACWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAPgAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAACEQAAAAAAHQAAAAACHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAACHQAAAAABEQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: eQAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACWQAAAAADWQAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAD + version: 6 + 2,-2: + ind: 2,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAABaQAAAAAAHQAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABaQAAAAAAHQAAAAABaQAAAAAAHQAAAAAC + version: 6 + 2,-4: + ind: 2,-4 + tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACLwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADWQAAAAACWQAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAWQAAAAACbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAAAaQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAADHQAAAAADaQAAAAAAbAAAAAACbAAAAAACbAAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACbAAAAAABbAAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAWQAAAAAAEQAAAAAAHQAAAAACWQAAAAABbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAHQAAAAADWQAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: eQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAABWQAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-3: + ind: 4,-3 + tiles: eQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADaAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACaAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABbAAAAAACbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAACbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACEwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAABbAAAAAABWQAAAAADbAAAAAAAWQAAAAABbAAAAAACWQAAAAABbAAAAAAAWQAAAAAAbAAAAAAAWQAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAADWQAAAAADHQAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 4,-4: + ind: 4,-4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,-3: + ind: 5,-3 + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-4: + ind: 5,-4 + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAD + version: 6 + 4,-1: + ind: 4,-1 + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAACWQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABHQAAAAABHQAAAAACHQAAAAABWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAADHQAAAAABHQAAAAABHQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAAAWQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-5: + ind: 4,-5 + tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + version: 6 + 5,-5: + ind: 5,-5 + tiles: AAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-5: + ind: 3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + 2,-5: + ind: 2,-5 + tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,-5: + ind: 1,-5 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAABagAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAAD + version: 6 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAACDgAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAADgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAATQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAATQAAAAAAWQAAAAABWQAAAAADTQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAATQAAAAAAWQAAAAADWQAAAAABTQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABTQAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,-6: + ind: 0,-6 + tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,-6: + ind: 1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,-6: + ind: 2,-6 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-7: + ind: 2,-7 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-8: + ind: 2,-8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-7: + ind: 1,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAA + version: 6 + 1,-8: + ind: 1,-8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: dgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAABAAAAAAABAAAAAAABAAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-6: + ind: 5,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-6: + ind: 4,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-7: + ind: -1,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 0,-7: + ind: 0,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-6: + ind: 3,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Boxstation + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: 1 + decals: + 3414: 14,-76 + - node: + color: '#FFFFFFFF' + id: 2 + decals: + 3415: 21,-76 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2373: 30,-34 + 2374: 32,-34 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1100: -24,-18 + 1101: -24,-16 + 2721: 2,-67 + 2722: 2,-66 + 2795: 66,-52 + 2796: 66,-51 + 2984: -23,-25 + 2985: -25,-25 + 3189: 2,-64 + 3190: 2,-63 + 3191: 2,-62 + 3192: 2,-61 + 3193: 2,-60 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1456: 73,-55 + 2496: 5,-49 + 2497: 6,-49 + 2498: 7,-49 + 2536: 3,-45 + 2791: 80,-54 + 2792: 79,-54 + 2793: 74,-54 + 2794: 72,-54 + 3666: -1,-81 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2986: -25,-27 + 2987: -23,-27 + 3194: 8,-64 + 3195: 8,-63 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 3381: 60,-52 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 386: -25,-66 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 2723: 5,-66 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 278: 10,37 + 279: 10,38 + 280: 10,39 + 281: 10,40 + 282: 10,41 + 283: 6,41 + 284: 8,37 + 285: 8,38 + 286: 8,39 + 287: 8,40 + 364: -39,1 + 422: -23,-24 + 466: -14,-24 + 467: -14,-25 + 468: -14,-26 + 469: -14,-27 + 470: -14,-28 + 651: 76,-37 + 652: 77,-37 + 653: 77,-36 + 654: 76,-36 + 655: 76,-35 + 656: 77,-35 + 657: 77,-34 + 658: 76,-34 + 659: 76,-33 + 660: 77,-33 + 672: 61,-21 + 673: 61,-23 + 990: 81,-6 + 991: 81,-4 + 992: 81,-12 + 993: 81,-14 + 1099: -23,-16 + 1104: -25,-18 + 1105: -25,-16 + 1195: 59,-38 + 1196: 59,-37 + 1197: 60,-37 + 1198: 60,-38 + 1199: 61,-38 + 1200: 61,-37 + 1201: 62,-37 + 1202: 62,-38 + 1451: 72,-58 + 1452: 72,-57 + 1453: 73,-58 + 1454: 74,-58 + 1455: 74,-57 + 2245: -73,8 + 2246: -74,8 + 2247: -75,8 + 2248: -76,8 + 2249: -73,-4 + 2250: -74,-4 + 2251: -75,-4 + 2252: -76,-4 + 2372: 33,-33 + 2387: 11,-45 + 2388: 10,-45 + 2389: 9,-45 + 2390: 9,-44 + 2391: 10,-44 + 2392: 11,-44 + 2393: 11,-43 + 2394: 9,-43 + 2395: 10,-43 + 2398: 14,-45 + 2399: 14,-44 + 2400: 14,-43 + 2534: 6,-41 + 2535: 7,-41 + 2678: -1,-63 + 2679: -1,-64 + 2719: 1,-67 + 2720: 1,-66 + 2785: 65,-52 + 2786: 65,-51 + 2787: 72,-55 + 2788: 74,-55 + 2789: 79,-55 + 2790: 80,-55 + 2798: 74,-44 + 2799: 73,-44 + 2853: 34,-47 + 2854: 34,-46 + 2855: 34,-50 + 2856: 34,-49 + 2857: 37,-50 + 2858: 37,-49 + 2867: 34,-44 + 2868: 35,-44 + 2869: 34,-39 + 2951: -35,-19 + 2952: -36,-19 + 2953: -37,-19 + 2954: -38,-19 + 2955: -37,-27 + 2956: -38,-27 + 2957: -39,-27 + 2958: -37,-25 + 2959: -38,-25 + 2960: -39,-25 + 2961: -37,-23 + 2962: -38,-23 + 2963: -39,-23 + 2973: -26,-32 + 2974: -27,-32 + 2975: -27,-34 + 2976: -27,-33 + 2977: -26,-33 + 2978: -26,-34 + 2979: -26,-35 + 2980: -27,-35 + 3181: 3,-55 + 3182: 1,-64 + 3183: 1,-63 + 3184: 1,-62 + 3185: 1,-61 + 3186: 1,-60 + 3187: 9,-64 + 3188: 9,-63 + 3257: -10,31 + 3258: -7,31 + 3285: -10,29 + 3377: 60,-51 + 3378: 59,-51 + 3380: 57,-51 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 383: -26,-69 + 384: -26,-68 + 385: -26,-67 + 1044: -1,-22 + 1045: -2,-21 + 1046: -1,-20 + 1047: 0,-21 + 1063: -2,-14 + 1064: 0,-14 + 3308: -16,36 + 3309: -15,36 + 3310: -14,36 + 3311: -13,36 + 3312: -12,36 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1641: 55,-32 + 2970: -40,-28 + 2971: -39,-28 + 2972: -38,-28 + 3327: -1,37 + 3328: 0,37 + 3329: 1,37 + 3330: 2,37 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 381: -24,-67 + 1042: 0,-20 + 1043: -2,-22 + - node: + color: '#DE3A3A96' + id: BotRight + decals: + 1391: -9,41 + 1392: -9,40 + 1393: -9,39 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 2396: 10,-42 + 2397: 10,-41 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 382: -24,-69 + 1040: 0,-22 + 1041: -2,-20 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 3284: -7,32 + 3416: -1,-82 + 3417: 5,-82 + 3418: 3,-83 + 3419: 2,-83 + 3420: 5,-86 + 3421: 5,-89 + 3422: 2,-93 + 3423: 0,-93 + 3424: -2,-93 + 3425: -4,-93 + 3426: -7,-93 + 3427: -6,-85 + 3428: -7,-83 + 3429: -4,-82 + 3430: 3,-84 + 3431: 2,-84 + 3432: -8,-80 + 3433: -4,-80 + 3434: 2,-80 + 3435: 6,-80 + 3446: 8,-87 + 3447: 8,-86 + 3448: 8,-91 + 3449: 8,-92 + 3604: 8,-84 + 3605: 8,-83 + 3648: 4,-88 + 3649: -7,-86 + 3650: 8,-95 + 3651: 7,-95 + 3652: 6,-95 + 3653: -9,-95 + 3654: -10,-95 + 3655: -10,-92 + 3656: -10,-91 + 3657: -10,-90 + 3658: -1,-95 + 3659: 8,-85 + 3660: 8,-90 + 3661: 8,-89 + 3662: 8,-88 + 3663: 3,-80 + 3664: -5,-80 + 3669: 8,-93 + 3670: 8,-94 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 2401: 14,-42 + 2402: 14,-41 + - node: + color: '#334E6DC8' + id: BrickBoxOverlay + decals: + 3413: 11,-69 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 2003: -3,-17 + 2004: -1,-17 + 2005: 1,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 2740: 11,-35 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 3325: -2,36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 3326: 3,36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 3324: -2,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 3323: 3,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 2741: 11,-34 + 3314: -2,37 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 2708: -6,-66 + 2709: -7,-66 + 2710: -8,-66 + 2733: 13,-36 + 2734: 11,-36 + 2737: 12,-36 + 2738: 10,-36 + 2739: 9,-36 + 3319: -1,36 + 3320: 0,36 + 3321: 1,36 + 3322: 2,36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 2711: -8,-62 + 2712: -7,-62 + 2713: -6,-62 + 2714: -4,-62 + 2715: -3,-62 + 2716: -2,-62 + 2717: -1,-62 + 2731: 10,-35 + 2732: 9,-35 + 3315: -1,38 + 3316: 0,38 + 3317: 1,38 + 3318: 2,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 3276: -6,29 + 3277: -6,30 + 3278: -6,31 + 3279: -6,32 + 3313: 3,37 + - node: + color: '#9FED584D' + id: BrickTileSteelCornerNe + decals: + 2827: 35,-46 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 1431: 74,-51 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNe + decals: + 2833: 35,-49 + - node: + color: '#9FED584D' + id: BrickTileSteelCornerNw + decals: + 2828: 34,-46 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 1428: 71,-51 + 1437: 78,-51 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNw + decals: + 2834: 34,-49 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSe + decals: + 2745: 19,-34 + - node: + color: '#9FED584D' + id: BrickTileSteelCornerSe + decals: + 2829: 35,-47 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSe + decals: + 2832: 35,-50 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSw + decals: + 2744: 21,-34 + - node: + color: '#9FED584D' + id: BrickTileSteelCornerSw + decals: + 2830: 34,-47 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSw + decals: + 2831: 34,-50 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNe + decals: + 1440: 74,-53 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 2348: 28,-36 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNw + decals: + 1441: 78,-53 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 2347: 34,-36 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 2383: 46,-53 + - node: + color: '#52B4E996' + id: BrickTileSteelLineE + decals: + 2747: 19,-33 + 2835: 37,-50 + 2836: 37,-49 + 2837: 37,-47 + 2838: 37,-46 + - node: + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 1432: 74,-52 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 2339: 28,-33 + 2340: 28,-34 + 2341: 28,-35 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 1429: 72,-51 + 1430: 73,-51 + 1433: 75,-53 + 1434: 76,-53 + 1435: 77,-53 + 1438: 79,-51 + 1439: 80,-51 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 1351: -16,45 + 1352: -15,45 + 1353: -13,45 + 1354: -12,45 + 1355: -11,45 + 1356: -10,45 + 1357: -9,45 + 1358: -7,45 + 1359: -6,45 + 1360: -5,45 + 1361: -17,45 + 1362: -19,45 + 1363: -20,45 + 1364: -22,45 + 1365: -23,45 + 1366: -25,45 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 2342: 33,-36 + 2343: 32,-36 + 2344: 31,-36 + 2345: 30,-36 + 2346: 29,-36 + - node: + color: '#52B4E996' + id: BrickTileSteelLineS + decals: + 2742: 22,-34 + 2743: 18,-34 + - node: + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 1442: 72,-55 + 1443: 73,-55 + 1444: 74,-55 + 1445: 75,-55 + 1446: 76,-55 + 1447: 77,-55 + 1448: 78,-55 + 1449: 79,-55 + 1450: 80,-55 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineS + decals: + 1342: -10,43 + 1343: -9,43 + 1344: -8,43 + 1345: -7,43 + 1346: -5,43 + 1347: -12,43 + 1348: -13,43 + 1349: -14,43 + 1350: -16,43 + 1367: -25,43 + 1368: -23,43 + 1369: -21,43 + 1370: -20,43 + 1371: -18,43 + 1372: -17,43 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 2380: 45,-53 + 2381: 44,-53 + 2382: 43,-53 + - node: + color: '#52B4E996' + id: BrickTileSteelLineW + decals: + 2746: 21,-33 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 1426: 71,-53 + 1427: 71,-52 + 1436: 78,-52 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 2371: 34,-35 + 2379: 46,-54 + 3114: 45,-1 + 3115: 45,0 + - node: + color: '#D4D4D428' + id: BrickTileWhiteBox + decals: + 2217: -16,-56 + 2218: -16,-52 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 1299: -7,-12 + 2060: -10,-14 + 2213: -6,-51 + - node: + color: '#5299B43A' + id: BrickTileWhiteCornerNe + decals: + 2817: 37,-40 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 1638: 54,-24 + 2187: -15,-50 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 1279: 48,-4 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 1420: 70,-51 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerNe + decals: + 2201: -12,-57 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 2197: -15,-57 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 1462: -4,9 + 2193: -12,-50 + 2514: 7,-41 + 2680: 9,-66 + 3496: 9,-73 + 3601: -12,-73 + - node: + color: '#FFEBAE96' + id: BrickTileWhiteCornerNe + decals: + 1573: 19,-21 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 1293: -14,-12 + 2059: -11,-14 + 2212: -8,-51 + - node: + color: '#5299B43A' + id: BrickTileWhiteCornerNw + decals: + 2818: 34,-40 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 1637: 52,-24 + 2186: -16,-50 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1274: 43,-4 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerNw + decals: + 2200: -13,-57 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 2196: -16,-57 + 3266: -15,27 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 1461: -7,9 + 2192: -13,-50 + 2513: 3,-41 + 2542: -18,-73 + 2686: 1,-66 + 2691: -4,-67 + 2692: -8,-68 + 3479: -10,-73 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 1306: -7,-20 + 2061: -10,-16 + 2195: -15,-58 + - node: + color: '#5299B43A' + id: BrickTileWhiteCornerSe + decals: + 2820: 37,-43 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 2198: -12,-58 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 2191: -12,-51 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 2188: -15,-51 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 2208: -6,-58 + 2521: 7,-45 + 3501: 9,-78 + 3521: -7,-78 + 3600: -12,-77 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 1307: -9,-20 + 2062: -11,-16 + 2194: -16,-58 + - node: + color: '#5299B43A' + id: BrickTileWhiteCornerSw + decals: + 2819: 34,-43 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 2199: -13,-58 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 2190: -13,-51 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 2189: -16,-51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 3267: -15,26 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 1464: -7,6 + 2206: -8,-58 + 2510: 3,-45 + 2552: -18,-77 + 3472: -8,-71 + 3505: 5,-78 + 3524: -10,-78 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 1469: -4,6 + - node: + color: '#FFEBAE96' + id: BrickTileWhiteInnerNe + decals: + 1572: 19,-22 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 3274: -6,27 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 2695: -4,-68 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1485: -10,8 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 3518: -7,-75 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 1309: -9,-18 + 1484: -14,8 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 3508: 5,-75 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 1300: -7,-13 + 1301: -7,-14 + 1302: -7,-15 + 1303: -7,-16 + 1304: -7,-18 + 1305: -7,-19 + 1486: -10,7 + 1487: -10,6 + 1492: -11,2 + 1493: -11,3 + 2063: -10,-15 + 2215: -6,-52 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineE + decals: + 2823: 37,-42 + 2824: 37,-41 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 1636: 54,-25 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1280: 48,-5 + 1281: 48,-6 + 1282: 48,-7 + 1283: 48,-8 + 1284: 48,-9 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 1496: -11,1 + 2262: -27,-17 + 2265: -27,-18 + 2266: -27,-16 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 1417: 70,-54 + 1418: 70,-53 + 1419: 70,-52 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 1497: -11,4 + 3270: -5,30 + 3271: -5,31 + 3272: -5,32 + 3273: -5,29 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 1467: -4,8 + 1468: -4,7 + 2209: -6,-56 + 2210: -6,-55 + 2211: -6,-54 + 2518: 7,-42 + 2519: 7,-43 + 2520: 7,-44 + 3497: 9,-74 + 3498: 9,-75 + 3499: 9,-76 + 3500: 9,-77 + 3519: -7,-76 + 3520: -7,-77 + 3602: -12,-76 + 3603: -12,-74 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 1294: -13,-12 + 1295: -12,-12 + 1296: -11,-12 + 1297: -10,-12 + 1298: -9,-12 + 1475: -9,8 + 1476: -10,8 + 1477: -11,8 + 1478: -12,8 + 1479: -14,8 + 1480: -13,8 + 1481: -15,8 + 2214: -7,-51 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineN + decals: + 2815: 36,-40 + 2816: 35,-40 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 1634: 53,-27 + 1639: 53,-24 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1275: 44,-4 + 1276: 45,-4 + 1277: 46,-4 + 1278: 47,-4 + 1285: 46,-10 + 1286: 45,-10 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1169: 64,-27 + 1170: 60,-27 + 1171: 59,-27 + 1172: 58,-27 + 1173: 57,-27 + 1174: 56,-27 + 1175: 55,-27 + 1176: 54,-27 + 1183: 74,-26 + 1184: 73,-26 + 1185: 72,-26 + 1186: 71,-26 + 1187: 70,-26 + 1188: 69,-26 + 1189: 70,-44 + 1190: 71,-44 + 1191: 72,-44 + 1192: 73,-44 + 1193: 74,-44 + 1194: 75,-44 + 1421: 69,-51 + 1422: 68,-51 + 1423: 67,-51 + 1424: 65,-51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 3261: -7,27 + 3262: -10,27 + 3263: -11,27 + 3264: -13,27 + 3265: -14,27 + 3295: -12,36 + 3296: -13,36 + 3297: -14,36 + 3298: -15,36 + 3299: -16,36 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 1465: -6,9 + 1466: -5,9 + 2515: 6,-41 + 2516: 5,-41 + 2517: 4,-41 + 2538: -20,-69 + 2539: -21,-69 + 2543: -17,-73 + 2544: -16,-73 + 2545: -15,-73 + 2546: -14,-73 + 2547: -13,-73 + 2548: -11,-73 + 2681: 7,-66 + 2682: 6,-66 + 2683: 5,-66 + 2684: 4,-66 + 2685: 2,-66 + 2687: 0,-67 + 2688: -1,-67 + 2689: -2,-67 + 2690: -3,-67 + 2693: -6,-68 + 2694: -5,-68 + 3480: -9,-73 + 3481: -8,-73 + 3482: -7,-73 + 3483: -6,-73 + 3484: -5,-73 + 3485: -4,-73 + 3486: -3,-73 + 3487: -1,-73 + 3488: 1,-73 + 3489: 2,-73 + 3490: 3,-73 + 3491: 4,-73 + 3492: 5,-73 + 3493: 6,-73 + 3494: 7,-73 + 3495: 8,-73 + - node: + color: '#FFEBAE96' + id: BrickTileWhiteLineN + decals: + 1569: 22,-22 + 1570: 21,-22 + 1571: 20,-22 + 1574: 18,-21 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1310: -10,-18 + 1311: -11,-18 + 1312: -12,-18 + 1313: -13,-18 + 1482: -9,8 + 1483: -15,8 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineS + decals: + 2821: 36,-43 + 2822: 35,-43 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 2012: -11,26 + 2013: -10,26 + 2014: -9,26 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 2015: -7,26 + 2016: -6,26 + 2017: -5,26 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1159: 64,-28 + 1160: 63,-28 + 1161: 62,-28 + 1162: 60,-28 + 1163: 59,-28 + 1164: 58,-28 + 1165: 56,-28 + 1166: 57,-28 + 1167: 54,-28 + 1168: 53,-28 + 1178: 57,-25 + 1179: 58,-25 + 1180: 59,-25 + 1181: 60,-25 + 1182: 56,-25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 2021: -4,26 + 2022: 0,26 + 2023: -8,26 + 2024: -12,26 + 2025: -13,26 + 2026: 1,26 + 2027: 2,26 + 2028: 3,26 + 2029: 5,26 + 2030: 10,26 + 2031: 8,26 + 2032: 7,26 + 3300: -12,34 + 3301: -13,34 + 3302: -14,34 + 3303: -16,34 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1463: -5,6 + 2018: -3,26 + 2019: -2,26 + 2020: -1,26 + 2207: -7,-58 + 2522: 6,-45 + 2523: 5,-45 + 2524: 4,-45 + 2540: -20,-71 + 2541: -21,-71 + 2553: -11,-77 + 2554: -13,-77 + 2555: -14,-77 + 2556: -15,-77 + 2557: -16,-77 + 2558: -17,-77 + 3502: 8,-78 + 3503: 7,-78 + 3504: 6,-78 + 3509: 4,-75 + 3510: 3,-75 + 3511: 2,-75 + 3512: 1,-75 + 3513: -1,-75 + 3514: -3,-75 + 3515: -4,-75 + 3516: -5,-75 + 3517: -6,-75 + 3522: -8,-78 + 3523: -9,-78 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 1287: -14,-18 + 1288: -14,-17 + 1289: -14,-16 + 1290: -14,-15 + 1291: -14,-14 + 1292: -14,-13 + 1308: -9,-19 + 1488: -14,6 + 1489: -14,7 + 1490: -13,2 + 1491: -13,3 + 1767: -19,-13 + 1768: -19,-12 + 1769: -19,-11 + 1770: -19,-10 + 2216: -8,-52 + 2268: -19,-14 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineW + decals: + 2825: 34,-42 + 2826: 34,-41 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 1494: -13,4 + 1640: 52,-25 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 1269: 43,-9 + 1270: 43,-8 + 1271: 43,-7 + 1272: 43,-6 + 1273: 43,-5 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 1495: -13,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 3275: -6,28 + 3280: -6,29 + 3281: -6,30 + 3282: -6,31 + 3283: -6,32 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 1460: -7,7 + 2203: -8,-55 + 2204: -8,-56 + 2205: -8,-57 + 2511: 3,-44 + 2512: 3,-42 + 2549: -18,-74 + 2550: -18,-75 + 2551: -18,-76 + 3473: -8,-70 + 3474: -8,-69 + 3475: -10,-74 + 3476: -10,-75 + 3477: -10,-76 + 3478: -10,-77 + 3506: 5,-77 + 3507: 5,-76 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 477: -14.963916,-26.286882 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 1329: 6.4905357,-24.138845 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 485: -15.010791,-24.240007 + 1330: 8.037411,-24.076345 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 484: -14.963916,-26.974382 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 483: -15.026416,-24.552507 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1127: 44.560696,-52.296127 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 1128: 47.01382,-53.968002 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 1126: 45.623196,-52.499252 + 1331: 6.9749107,-24.013845 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 1327: 7.9749107,-24.107595 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 1328: 6.1780357,-24.02947 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 488: -14.995166,-24.818132 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 1633: 66,-22 + 2377: 31,-34 + 3438: 9,-80 + 3439: -11,-80 + 3440: 17,-76 + 3441: 18,-76 + 3442: 17,-74 + 3443: 18,-74 + 3665: -1,-81 + - node: + color: '#3B393B85' + id: CheckerNESW + decals: + 2487: 5,-50 + 2488: 6,-50 + 2489: 7,-50 + 2490: 5,-47 + 2491: 6,-47 + 2492: 7,-47 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 174: 43,-58 + 175: 47,-58 + 1232: 1,-48 + 1534: 43,-48 + 1535: 44,-48 + 1536: 45,-48 + 1537: 46,-48 + 1538: 46,-47 + 1539: 45,-47 + 1540: 44,-47 + 1541: 43,-47 + 1542: 43,-46 + 1543: 44,-46 + 1544: 45,-46 + 1545: 46,-46 + 1546: 46,-45 + 1547: 45,-45 + 1548: 44,-45 + 1549: 43,-45 + 1550: 42,-46 + 2859: 34,-44 + 2860: 35,-44 + 2861: 36,-44 + 2862: 37,-44 + 2863: 37,-39 + 2864: 36,-39 + 2865: 35,-39 + 2866: 34,-39 + - node: + color: '#92929B96' + id: CheckerNESW + decals: + 1268: 37,-7 + - node: + color: '#9D9D97FF' + id: CheckerNESW + decals: + 618: 69,-37 + 619: 69,-38 + 620: 70,-38 + 621: 70,-37 + 622: 71,-38 + 623: 71,-37 + 624: 72,-37 + 625: 72,-38 + 626: 73,-38 + 627: 73,-37 + 628: 74,-38 + 629: 74,-37 + 630: 71,-36 + 631: 70,-36 + 632: 69,-36 + 633: 69,-35 + 634: 70,-35 + 635: 71,-35 + 636: 71,-34 + 637: 70,-34 + 638: 69,-34 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 3102: 45,-1 + 3103: 45,0 + 3104: 46,-1 + 3105: 46,0 + 3106: 47,-1 + 3107: 47,0 + 3108: 48,-1 + 3109: 48,0 + 3110: 48,1 + 3111: 49,1 + 3112: 49,0 + 3113: 49,-1 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 266: 68,-37 + 1509: 49,-28 + - node: + color: '#D4D4D428' + id: CheckerNESW + decals: + 617: 69,-38 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 1230: 1,-50 + 1231: 1,-49 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 940: 1,-42 + 2499: 3,-50 + 2500: 3,-49 + 2501: 3,-48 + 2502: 3,-47 + - node: + color: '#EFCC4163' + id: CheckerNESW + decals: + 2654: -1,-65 + 2655: -2,-65 + 2656: -2,-64 + 2657: -1,-64 + 2658: -1,-63 + 2659: -2,-63 + 2660: -4,-63 + 2661: -3,-63 + 2662: -3,-64 + 2663: -4,-64 + 2664: -5,-64 + 2665: -5,-63 + 2666: -3,-65 + 2667: -4,-65 + 2668: -5,-65 + 2669: -6,-65 + 2670: -8,-65 + 2671: -7,-65 + 2672: -6,-64 + 2673: -7,-64 + 2674: -8,-64 + 2675: -8,-63 + 2676: -7,-63 + 2677: -6,-63 + - node: + color: '#FFEBAE96' + id: CheckerNESW + decals: + 1551: 21,-21 + 1552: 22,-21 + 1553: 22,-20 + 1554: 21,-20 + 1555: 21,-19 + 1556: 22,-19 + 1557: 22,-18 + 1558: 21,-18 + 1559: 21,-17 + 1560: 22,-17 + - node: + color: '#FFFFFFFF' + id: CheckerNESW + decals: + 3090: 45,-1 + 3091: 45,0 + 3092: 46,0 + 3093: 46,-1 + 3094: 47,-1 + 3095: 47,0 + 3096: 48,-1 + 3097: 48,0 + 3098: 49,-1 + 3099: 49,0 + 3100: 49,1 + 3101: 48,1 + - node: + color: '#334E6DC8' + id: CheckerNWSE + decals: + 489: -25,-14 + 490: -25,-13 + 491: -25,-12 + 492: -25,-11 + 493: -25,-10 + 494: -24,-10 + 495: -23,-10 + 496: -22,-10 + 497: -21,-10 + 498: -21,-11 + 499: -21,-12 + 500: -21,-13 + 501: -21,-14 + 502: -22,-14 + 503: -23,-14 + 504: -24,-14 + 505: -24,-13 + 506: -24,-12 + 507: -24,-11 + 508: -23,-11 + 509: -22,-11 + 510: -22,-12 + 511: -22,-13 + 512: -23,-13 + 513: -23,-12 + - node: + color: '#474F52FF' + id: CheckerNWSE + decals: + 935: 1,-41 + 937: 1,-44 + - node: + color: '#4A464A85' + id: CheckerNWSE + decals: + 2506: 3,-50 + 2507: 3,-49 + 2508: 3,-48 + 2509: 3,-47 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 783: 28,-22 + 784: 28,-21 + 785: 29,-21 + 786: 29,-22 + 787: 30,-22 + 788: 30,-21 + 789: 31,-21 + 790: 31,-22 + 791: 32,-22 + 792: 32,-21 + 1598: 49,-38 + 1599: 49,-37 + 1600: 49,-36 + 1601: 49,-35 + 1602: 49,-34 + 2752: 38,-30 + 2753: 38,-29 + 2754: 38,-28 + 2755: 38,-27 + 2756: 39,-27 + 2757: 40,-27 + 2758: 41,-27 + 2759: 41,-28 + 2760: 40,-28 + 2761: 39,-28 + 2762: 39,-29 + 2763: 39,-30 + 2764: 40,-30 + 2765: 40,-29 + 2766: 41,-29 + 2767: 41,-30 + 2843: 40,-49 + 2844: 40,-48 + 2845: 40,-47 + 2846: 40,-46 + 2847: 40,-45 + 2848: 40,-44 + 2849: 40,-43 + 2850: 40,-42 + 2851: 40,-41 + 2852: 40,-40 + - node: + color: '#9FED5896' + id: CheckerNWSE + decals: + 719: 43,-61 + 720: 43,-60 + 721: 43,-59 + 722: 44,-59 + 723: 44,-60 + 724: 44,-61 + 725: 46,-61 + 726: 46,-60 + 727: 46,-59 + 728: 47,-59 + 729: 47,-60 + 730: 47,-61 + 2893: 3,-36 + 2894: 3,-35 + 2895: 4,-35 + 2896: 4,-36 + 2897: 5,-36 + 2898: 5,-35 + 2899: 6,-35 + 2900: 6,-36 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 2911: -33,-31 + 2912: -33,-30 + 2913: -32,-30 + 2914: -32,-31 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 1143: 82,-25 + 1144: 82,-24 + 1145: 81,-24 + 1146: 81,-25 + 1147: 80,-25 + 1148: 80,-24 + 1149: 79,-24 + 1150: 79,-25 + 1151: 78,-25 + 1152: 78,-24 + 1153: 77,-24 + 1154: 76,-24 + 1155: 76,-25 + 1156: 77,-25 + - node: + color: '#D4D4D496' + id: CheckerNWSE + decals: + 1227: 1,-50 + 1228: 1,-49 + 1229: 1,-48 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 1470: -7,3 + 1471: -7,4 + 1472: -6,4 + 1473: -6,3 + 2484: 5,-50 + 2485: 6,-50 + 2486: 7,-50 + 2493: 7,-47 + 2494: 6,-47 + 2495: 5,-47 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSe + decals: + 3456: 9,-71 + - node: + color: '#EFB34196' + id: ConcreteTrimLineE + decals: + 3455: 9,-68 + 3457: 9,-70 + - node: + color: '#EFB34196' + id: ConcreteTrimLineS + decals: + 3458: 8,-71 + 3459: 7,-71 + 3460: 6,-71 + 3461: 5,-71 + 3462: 4,-71 + 3463: 3,-71 + 3464: 2,-71 + 3465: 1,-71 + 3466: -1,-71 + 3467: -3,-71 + 3468: -4,-71 + 3469: -5,-71 + 3470: -6,-71 + 3471: -7,-71 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 365: -40,1 + 387: 9,-10 + 388: 9,-9 + 389: 9,-8 + 390: -11,-10 + 391: -11,-9 + 392: -11,-8 + 421: -23,-23 + 465: -14,-23 + 667: 63,-34 + 668: 62,-34 + 669: 61,-34 + 670: 60,-34 + 671: 59,-34 + 888: 35,-16 + 889: 34,-16 + 890: 33,-16 + 891: 25,-16 + 892: 26,-16 + 893: 27,-16 + 986: 82,-14 + 987: 82,-12 + 988: 82,-6 + 989: 82,-4 + 1102: -26,-18 + 1103: -26,-16 + 1106: 28,-30 + 1107: 28,-29 + 1108: 34,-30 + 1109: 34,-29 + 1110: 35,-27 + 1111: 36,-27 + 1112: 25,-27 + 1113: 26,-27 + 1114: 23,-26 + 1115: 23,-25 + 1116: 39,-38 + 1117: 40,-38 + 1118: 41,-38 + 2080: 14,-24 + 2081: 15,-24 + 2082: 16,-24 + 2083: 16,-11 + 2084: 15,-11 + 2085: 14,-11 + 2086: -10,-32 + 2087: -10,-31 + 2088: -10,-30 + 2089: -16,-21 + 2090: -17,-21 + 2091: -7,-3 + 2092: -7,-2 + 2093: -7,-1 + 2094: 5,-3 + 2095: 5,-2 + 2096: 5,-1 + 2269: -18,-21 + 2375: 30,-33 + 2376: 32,-33 + 2419: 0,-51 + 2420: -1,-51 + 2421: -2,-51 + 2432: 0,-34 + 2433: -1,-34 + 2434: -2,-34 + 2456: 3,-51 + 2457: 2,-57 + 2503: 3,-46 + 2504: 4,-49 + 2505: 4,-48 + 2537: -19,-70 + 2718: -1,-62 + 2797: 67,-54 + 2800: 70,-44 + 2801: 78,-42 + 2802: 78,-40 + 2947: -38,-20 + 2948: -37,-20 + 2949: -36,-20 + 2950: -35,-20 + 2964: -40,-27 + 2965: -40,-25 + 2966: -40,-23 + 2967: -38,-31 + 2968: -39,-31 + 2969: -40,-31 + 2981: -26,-39 + 2982: -27,-39 + 2983: -28,-39 + 3116: 87,-6 + 3117: 87,-4 + 3118: 87,-12 + 3119: 87,-14 + 3120: 83,-14 + 3121: 83,-12 + 3122: 83,-6 + 3123: 83,-4 + 3127: 9,-32 + 3128: 9,-31 + 3129: 9,-30 + 3196: 3,-65 + 3197: 8,-65 + 3198: 8,-59 + 3199: 4,-59 + 3372: 57,-44 + 3373: 58,-44 + 3374: 59,-44 + 3375: 60,-44 + 3379: 58,-51 + - node: + cleanable: True + color: '#474F52FF' + id: Dirt + decals: + 205: -33,-11 + 206: -32,-11 + 207: -31,-11 + 208: -30,-11 + 209: -30,-12 + 210: -31,-12 + 211: -32,-12 + 212: -33,-12 + 213: -33,-13 + 214: -32,-13 + 215: -31,-13 + 216: -30,-13 + 217: -30,-14 + 218: -31,-14 + 219: -32,-14 + 220: -33,-14 + 221: -33,-15 + 222: -32,-15 + 223: -31,-15 + 224: -30,-15 + 225: -30,-16 + 226: -31,-16 + 227: -32,-16 + 228: -33,-16 + 229: -33,-17 + 230: -32,-17 + 231: -31,-17 + 232: -30,-17 + 258: -6,-46 + 259: -3,-44 + 271: 59,-34 + 272: 60,-34 + 273: 61,-34 + 274: 62,-34 + 275: 63,-34 + 276: 64,-36 + - node: + cleanable: True + zIndex: 1 + color: '#474F52FF' + id: Dirt + decals: + 242: -32,-18 + - node: + cleanable: True + color: '#D4D4D4A4' + id: Dirt + decals: + 2471: 0,-57 + 2472: -1,-57 + 2473: -2,-55 + 2474: 0,-53 + 2475: 0,-54 + 2476: -2,-53 + 2477: 0,-52 + 2478: -2,-50 + 2479: -1,-49 + 2480: 0,-48 + 2481: -2,-47 + 2482: -1,-46 + 2483: -1,-45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 3200: 3,-63 + 3201: 3,-62 + 3202: 4,-61 + 3203: 7,-61 + 3204: 8,-61 + 3205: 8,-60 + 3206: 8,-56 + 3207: 8,-55 + 3208: 6,-54 + 3209: 4,-53 + 3345: 55,-53 + 3346: 53,-55 + 3347: 60,-55 + 3348: 61,-56 + 3349: 65,-56 + 3350: 51,-56 + 3351: 50,-55 + 3352: 44,-50 + 3353: 43,-50 + 3354: 51,-49 + 3355: 50,-48 + 3356: 47,-42 + 3357: 48,-43 + 3358: 44,-43 + 3359: 51,-46 + 3360: 57,-51 + 3361: 57,-52 + 3362: 61,-53 + 3363: 63,-52 + 3364: 60,-51 + 3367: 60,-48 + 3368: 53,-50 + 3369: 55,-49 + 3370: 57,-45 + 3371: 58,-46 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 439: -28,-37 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2470: -1,-55 + 3004: -32,-22 + 3005: -36,-22 + 3006: -38,-24 + 3007: -36,-26 + 3008: -36,-29 + 3039: -27,-38 + 3040: -28,-36 + 3041: -28,-35 + 3042: -28,-34 + 3043: -25,-33 + 3210: 3,-61 + 3211: 8,-62 + 3212: 8,-57 + 3337: 63,-56 + 3338: 58,-56 + 3386: -43,-12 + 3407: -47,-11 + 3408: -47,-12 + 3409: -46,-11 + 3410: -47,-17 + 3411: -47,-16 + 3412: -46,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2698: 3,-66 + 3332: 51,-56 + 3333: 51,-48 + - node: + cleanable: True + color: '#474F52FF' + id: DirtLight + decals: + 277: 61,-34 + - node: + cleanable: True + zIndex: 1 + color: '#474F52FF' + id: DirtLight + decals: + 243: -32,-16 + 244: -32,-15 + 245: -33,-15 + 246: -33,-16 + 247: -33,-17 + 248: -33,-14 + 249: -33,-13 + 250: -32,-13 + 251: -31,-11 + 252: -30,-11 + 253: -30,-12 + 254: -30,-13 + 255: -30,-14 + 256: -32,-11 + 257: -30,-10 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 430: -30,-38 + 431: -29,-37 + 432: -27,-31 + 433: -26,-28 + 434: -26,-27 + 435: -23,-25 + 436: -20,-24 + 440: -29,-22 + 441: -28,-23 + 442: -31,-22 + 443: -32,-23 + 444: -36,-24 + 445: -40,-24 + 446: -40,-29 + 447: -33,-26 + 448: -32,-25 + 450: -32,-19 + 451: -31,-20 + 452: -25,-20 + 2049: -6,24 + 2050: -5,23 + 2051: -6,25 + 2052: -2,25 + 2053: -3,23 + 2054: -3,24 + 2055: -11,24 + 2056: -10,25 + 2057: -10,23 + 2058: -9,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1004: -62,-5 + 1005: -61,-5 + 1006: -55,-3 + 1007: -57,1 + 1008: -64,2 + 1009: -47,-1 + 1010: -46,1 + 1011: -45,2 + 1012: -39,-1 + 1013: -38,-2 + 1014: -3,0 + 1015: -2,1 + 1016: -1,5 + 1017: -2,7 + 1018: -1,10 + 1019: 16,-12 + 1020: 19,-14 + 1021: 31,-13 + 1022: 44,-15 + 1023: 49,-14 + 1024: 60,-13 + 1025: 71,-14 + 1026: 1,-48 + 1027: 0,-47 + 1028: 5,-46 + 1029: -7,-67 + 1030: -15,-73 + 1031: -17,-70 + 1032: -29,-39 + 1033: -27,-39 + 1034: -25,-37 + 1035: -38,-30 + 1036: -40,-31 + 1037: -41,-30 + 1038: -42,-25 + 1233: 11,-53 + 1234: 6,-49 + 1235: 7,-48 + 1236: -1,-42 + 1237: -2,-44 + 1238: 0,-45 + 1239: 0,-49 + 1240: 1,-45 + 1241: 0,-42 + 1242: -1,-38 + 1243: -2,-35 + 1244: -1,-35 + 1245: 0,-33 + 1246: 1,-32 + 1247: -2,-32 + 1394: -6,47 + 1395: -6,47 + 1396: -9,49 + 1397: -8,48 + 1398: -5,50 + 1399: -3,50 + 1400: 0,49 + 1401: 1,48 + 1402: 2,50 + 1403: 3,50 + 1404: -10,50 + 1405: -12,49 + 1406: -16,43 + 1407: -14,43 + 1408: -11,41 + 1409: -6,35 + 1410: -8,35 + 1411: -6,39 + 1413: -10,49 + 1414: -7,51 + 1415: -10,52 + 1416: 3,49 + 2458: -1,-50 + 2459: 0,-50 + 2460: -1,-51 + 2461: -1,-52 + 2462: -1,-53 + 2463: -1,-54 + 2464: 0,-56 + 2465: 1,-57 + 2466: 2,-57 + 2577: 8,-75 + 2578: 4,-74 + 2579: 1,-74 + 2580: 0,-74 + 2581: -1,-73 + 2582: -4,-74 + 2583: -4,-75 + 2584: -5,-74 + 2585: -5,-69 + 2586: -4,-68 + 2587: -10,-70 + 2588: -11,-69 + 2589: -13,-70 + 2590: -15,-70 + 2591: -17,-69 + 2592: -11,-76 + 2593: -13,-77 + 2596: -7,-69 + 2597: -6,-68 + 2598: -5,-68 + 2599: -4,-69 + 2600: -4,-70 + 2699: 2,-67 + 2700: 3,-67 + 2701: 2,-66 + 2702: 5,-67 + 2703: 5,-67 + 2704: 4,-67 + 2705: -7,-70 + 2706: -10,-71 + 2707: -12,-71 + 2988: -40,-30 + 2989: -41,-31 + 2990: -38,-30 + 2991: -38,-31 + 2992: -36,-31 + 2993: -38,-28 + 2994: -41,-27 + 2995: -38,-25 + 2996: -36,-26 + 2997: -39,-24 + 2998: -37,-22 + 2999: -35,-21 + 3000: -33,-21 + 3001: -33,-21 + 3002: -31,-22 + 3003: -29,-23 + 3049: -26,-35 + 3050: -26,-35 + 3051: -25,-35 + 3052: -27,-35 + 3053: -26,-33 + 3054: -27,-33 + 3055: -27,-31 + 3056: -28,-31 + 3057: -28,-32 + 3058: -29,-32 + 3059: -31,-31 + 3060: -30,-31 + 3061: -35,-31 + 3062: -26,-29 + 3063: -25,-30 + 3064: -25,-28 + 3065: -26,-28 + 3066: -28,-28 + 3067: -28,-27 + 3068: -28,-26 + 3069: -26,-25 + 3070: -25,-27 + 3071: -25,-27 + 3072: -23,-27 + 3073: -22,-27 + 3074: -21,-25 + 3213: 8,-58 + 3214: 7,-57 + 3215: 8,-54 + 3216: 7,-54 + 3217: 4,-54 + 3218: 5,-53 + 3219: 3,-53 + 3220: 3,-64 + 3221: 2,-63 + 3222: 5,-61 + 3223: 6,-61 + 3224: 4,-60 + 3225: 8,-64 + 3226: 6,-57 + 3227: 5,-57 + 3228: 5,-57 + 3229: 3,-57 + 3230: 4,-58 + 3231: 4,-56 + 3331: 53,-55 + 3339: 62,-56 + 3340: 58,-55 + 3341: 57,-56 + 3342: 59,-56 + 3343: 60,-56 + 3344: 54,-55 + 3385: -42,-12 + 3388: -43,-13 + 3389: -44,-12 + 3390: -44,-13 + - node: + cleanable: True + zIndex: 1 + color: '#474F52FF' + id: DirtMedium + decals: + 233: -33,-11 + 234: -32,-12 + 235: -31,-12 + 236: -31,-13 + 237: -31,-14 + 238: -30,-15 + 239: -31,-16 + 240: -32,-17 + 241: -32,-18 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 437: -22,-25 + 438: -26,-31 + 449: -32,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1412: -8,50 + 2467: 0,-58 + 2468: -1,-58 + 2469: -1,-56 + 2594: -5,-70 + 2595: -6,-69 + 3009: -37,-29 + 3010: -36,-28 + 3011: -36,-30 + 3012: -36,-27 + 3013: -37,-26 + 3014: -36,-25 + 3015: -36,-24 + 3016: -37,-24 + 3017: -36,-23 + 3018: -39,-22 + 3019: -41,-24 + 3020: -40,-24 + 3021: -41,-25 + 3022: -41,-26 + 3023: -32,-20 + 3024: -32,-19 + 3025: -34,-20 + 3026: -33,-20 + 3027: -28,-21 + 3028: -27,-23 + 3029: -26,-24 + 3030: -26,-26 + 3031: -27,-26 + 3032: -27,-27 + 3033: -27,-28 + 3034: -29,-37 + 3035: -29,-38 + 3036: -28,-38 + 3037: -26,-38 + 3038: -25,-36 + 3044: -28,-33 + 3045: -26,-36 + 3046: -27,-36 + 3047: -27,-33 + 3048: -28,-32 + 3334: 55,-53 + 3335: 64,-56 + 3336: 62,-55 + 3387: -42,-13 + 3391: -46,-17 + 3392: -46,-16 + 3393: -46,-15 + 3394: -46,-13 + 3395: -46,-12 + 3396: -47,-13 + 3397: -47,-14 + 3398: -47,-15 + 3399: -48,-17 + 3400: -49,-17 + 3401: -49,-15 + 3402: -48,-15 + 3403: -48,-13 + 3404: -49,-13 + 3405: -49,-11 + 3406: -48,-11 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 1326: 7.3655357,-24.02947 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 1125: 43.154446,-52.983627 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 487: -15.026416,-25.521257 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 1124: 43.85757,-52.030502 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 486: -15.026416,-24.599382 + 1123: 46.216946,-53.983627 + 1325: 6.2405357,-24.09197 + - node: + color: '#334E6D5A' + id: FullTileOverlayGreyscale + decals: + 2167: -1,-5 + - node: + color: '#52B4E931' + id: FullTileOverlayGreyscale + decals: + 2176: 2,-5 + - node: + color: '#52B4E937' + id: FullTileOverlayGreyscale + decals: + 2768: 42,-29 + 2769: 42,-28 + 2770: 43,-29 + 2771: 43,-28 + 2772: 44,-29 + 2773: 44,-28 + 2774: 45,-29 + 2775: 45,-28 + 2776: 46,-29 + 2777: 46,-28 + 2778: 45,-27 + 2779: 45,-26 + 2780: 45,-25 + 2781: 45,-24 + 2782: 44,-24 + 2783: 46,-24 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 756: 33,-21 + 757: 33,-20 + 758: 32,-20 + 759: 31,-20 + 760: 30,-20 + 761: 29,-20 + 762: 28,-20 + 763: 27,-20 + 764: 27,-21 + 882: 35,-16 + 883: 34,-16 + 884: 33,-16 + 885: 27,-16 + 886: 26,-16 + 887: 25,-16 + 2011: -10,25 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2010: -6,25 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 417: -30,-31 + 1131: -21,-31 + 1132: -22,-31 + - node: + color: '#D381C934' + id: FullTileOverlayGreyscale + decals: + 2179: 6,-7 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 1630: 65,-22 + 1631: 66,-22 + 1632: 67,-22 + 1666: 61,-41 + 1667: 59,-41 + 1668: 57,-41 + 1669: 55,-41 + 1670: 53,-41 + 2892: 5,-33 + - node: + color: '#DE3A3A2B' + id: FullTileOverlayGreyscale + decals: + 2157: -8,-7 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 985: 77,-5 + 1083: 58,-16 + 1339: -8,37 + 1340: -7,37 + 1341: -5,37 + - node: + color: '#EFB34131' + id: FullTileOverlayGreyscale + decals: + 2158: -4,-5 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 2009: -2,25 + - node: + color: '#EFCF412B' + id: FullTileOverlayGreyscale + decals: + 2455: 2,-57 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 1323: 7.2717857,-23.90447 + 1324: 6.2249107,-24.045095 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 478: -14.995166,-26.943132 + 1129: 47.091946,-51.921127 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 479: -14.917041,-24.615007 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 1130: 42.85757,-51.827377 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1122: 46.57632,-52.483627 + 3082: 42,0 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 1121: 44.04507,-52.733627 + 3081: 44,0 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 475: -14.979541,-25.083757 + 3083: 43,0 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 474: -14.995166,-24.161882 + 1119: 46.42007,-53.327377 + 1120: 43.29507,-52.358627 + 3079: 43,-1 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 473: -15.010791,-27.036882 + 1318: 6,-24 + 1319: 7,-24 + 1320: 8,-24 + 3080: 42,-1 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 476: -14.995166,-25.786882 + 1321: 8,-24 + 1322: 6.3967857,-23.96697 + 3078: 44,-1 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 92: 29,-17 + 93: 30,-17 + 94: 31,-17 + 112: 37,-32 + 113: 38,-32 + 114: 39,-32 + 115: 40,-32 + 116: 41,-32 + 120: 42,-32 + 161: 28,-29 + 166: 30,-28 + 167: 32,-28 + 168: 31,-28 + 169: 33,-28 + 778: 33,-24 + 779: 32,-24 + 780: 31,-24 + 781: 29,-24 + 782: 27,-24 + 797: 23,-25 + 1501: 49,-27 + 1528: 40,-23 + 2006: -4,28 + 2369: 34,-35 + 2748: 22,-35 + 2749: 21,-35 + 2750: 18,-35 + 2751: 19,-35 + - node: + color: '#9D9D97FF' + id: HalfTileOverlayGreyscale + decals: + 1089: 62,-27 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 733: 46,-56 + 734: 44,-56 + 735: 43,-56 + 736: 42,-56 + 737: 41,-56 + 738: 39,-56 + 960: 35,-52 + 961: 36,-52 + 2007: -3,28 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 198: -32,-11 + 1090: -24,-16 + 1091: -23,-16 + 1092: -22,-16 + 1093: -21,-16 + 2259: 5,28 + 2260: 28,-24 + 2261: 69,-18 + 2907: -32,-29 + 2908: -33,-29 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 861: 70,-18 + 862: 71,-18 + 1642: 63,-40 + 1643: 62,-40 + 1644: 61,-40 + 1645: 60,-40 + 1646: 59,-40 + 1647: 58,-40 + 1648: 57,-40 + 1649: 56,-40 + 1650: 55,-40 + 1651: 53,-40 + 1652: 52,-40 + 1653: 51,-40 + 2878: 6,-34 + 2879: 5,-34 + 2880: 4,-34 + 2881: 3,-34 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 0: -1,28 + 1: 0,28 + 2: 4,28 + 3: 9,28 + 4: 10,28 + 9: 9,24 + 10: 8,24 + 11: 10,24 + 41: 17,35 + 42: 16,35 + 43: 12,35 + 44: 11,35 + 49: 10,33 + 50: 6,33 + 176: -23,-30 + 177: -22,-30 + 178: -21,-30 + 179: -20,-30 + 397: -61,5 + 398: -60,5 + 399: -59,5 + 400: -58,5 + 973: 77,-2 + 974: 78,-2 + 975: 79,-2 + 976: 80,-2 + 977: 81,-2 + 1082: 58,-17 + 1086: 60,-18 + 1087: 61,-18 + 1088: 62,-18 + 2037: 14,32 + 3286: -5,36 + 3287: -7,36 + 3288: -8,36 + 3289: -9,36 + 3290: -10,36 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 2008: -2,28 + 2527: 5,-42 + 2528: 5,-44 + 2529: 5,-43 + - node: + color: '#F5DB9E96' + id: HalfTileOverlayGreyscale + decals: + 1588: 20,-25 + 1589: 22,-25 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 97: 28,-26 + 98: 29,-26 + 99: 30,-26 + 100: 31,-26 + 101: 32,-26 + 102: 33,-26 + 103: 34,-26 + 122: 42,-37 + 144: 38,-33 + 145: 37,-33 + 160: 28,-30 + 170: 30,-31 + 171: 31,-31 + 172: 32,-31 + 173: 33,-31 + 337: -10,23 + 751: 23,-26 + 754: 21,-28 + 755: 19,-28 + 769: 33,-19 + 770: 32,-19 + 771: 31,-19 + 772: 30,-19 + 773: 29,-19 + 774: 28,-19 + 775: 27,-19 + 1502: 49,-29 + 1520: 37,-25 + 1521: 38,-25 + 1522: 41,-25 + 2353: 29,-37 + 2354: 30,-37 + 2355: 31,-37 + 2356: 32,-37 + 2357: 33,-37 + 2358: 34,-37 + 2359: 35,-37 + 2360: 36,-37 + - node: + color: '#9D9D97FF' + id: HalfTileOverlayGreyscale180 + decals: + 803: 67,-49 + 804: 66,-49 + 805: 65,-49 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 338: -6,23 + 967: 35,-56 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 2909: -33,-32 + 2910: -32,-32 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 868: 70,-16 + 869: 69,-16 + 870: 68,-16 + 871: 67,-16 + 872: 65,-16 + 873: 64,-16 + 874: 63,-16 + 875: 62,-16 + 1622: 51,-15 + 1623: 55,-15 + 1654: 51,-42 + 1655: 52,-42 + 1656: 53,-42 + 1657: 54,-42 + 1658: 55,-42 + 1659: 57,-42 + 1660: 59,-42 + 1661: 60,-42 + 1662: 62,-42 + 1663: 63,-42 + 1664: 61,-42 + 2870: 5,-32 + 2884: 3,-37 + 2885: 4,-37 + 2886: 6,-37 + 2887: 5,-37 + 3365: 56,-42 + 3366: 58,-42 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 18: 9,23 + 25: -14,22 + 55: 9,30 + 56: 10,30 + 57: 11,30 + 58: 12,30 + 59: 13,30 + 60: 14,30 + 61: 15,30 + 62: 16,30 + 180: -23,-32 + 181: -22,-32 + 182: -21,-32 + 183: -20,-32 + 403: -61,3 + 404: -60,3 + 405: -59,3 + 406: -58,3 + 980: 77,-4 + 981: 78,-4 + 982: 79,-4 + 983: 80,-4 + 984: 81,-4 + 2035: 14,34 + 2040: 14,31 + 3293: -10,34 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 347: -2,23 + - node: + color: '#334E6D5A' + id: HalfTileOverlayGreyscale270 + decals: + 2165: -2,-6 + - node: + color: '#52B4E931' + id: HalfTileOverlayGreyscale270 + decals: + 2178: 1,-6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 104: 24,-24 + 105: 24,-23 + 133: 39,-45 + 134: 39,-44 + 135: 39,-43 + 136: 39,-42 + 139: 39,-38 + 140: 39,-37 + 141: 39,-36 + 142: 39,-35 + 143: 39,-34 + 148: 35,-27 + 150: 24,-28 + 153: 24,-31 + 154: 24,-30 + 155: 24,-29 + 162: 29,-28 + 163: 29,-31 + 767: 34,-21 + 768: 34,-20 + 777: 34,-23 + 796: 18,-26 + 1072: 56,-24 + 1504: 48,-28 + 2349: 28,-33 + 2350: 28,-35 + 2351: 28,-36 + 2366: 35,-32 + 2367: 35,-33 + 2368: 35,-34 + 2840: 39,-49 + 2841: 39,-47 + 2842: 39,-46 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 964: 34,-55 + 965: 34,-54 + 966: 34,-53 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 190: -33,-17 + 191: -33,-16 + 192: -33,-15 + 193: -33,-14 + 194: -33,-13 + 195: -33,-12 + 196: -33,-11 + 407: -29,-22 + 408: -29,-21 + 415: -30,-38 + 416: -30,-37 + 423: -42,-21 + 424: -42,-22 + 425: -42,-23 + 426: -42,-24 + 427: -42,-25 + 428: -42,-26 + 429: -42,-27 + 2901: -34,-30 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 263: 65,-18 + 264: 65,-19 + 265: 65,-20 + 1672: 63,-41 + 2882: 2,-35 + 2883: 2,-36 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 14: 8,23 + 38: 18,36 + 46: 11,34 + 402: -62,4 + 979: 76,-3 + 1075: 57,-20 + 1076: 57,-19 + 1077: 57,-18 + 1383: -12,38 + 1384: -12,39 + 1385: -12,40 + 1386: -12,41 + 3294: -11,35 + - node: + color: '#EFB34131' + id: HalfTileOverlayGreyscale270 + decals: + 2164: -5,-6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 1048: -3,-25 + 1051: -2,-27 + - node: + color: '#334E6D5A' + id: HalfTileOverlayGreyscale90 + decals: + 2166: 0,-6 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 85: -8,-24 + 86: -8,-25 + 87: -8,-26 + 526: -16,-28 + 527: -16,-23 + - node: + color: '#52B4E931' + id: HalfTileOverlayGreyscale90 + decals: + 2177: 3,-6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 106: 36,-26 + 107: 36,-27 + 108: 36,-28 + 109: 36,-29 + 110: 36,-30 + 111: 36,-31 + 117: 42,-33 + 118: 42,-34 + 123: 41,-38 + 124: 41,-39 + 125: 41,-40 + 126: 41,-41 + 130: 41,-48 + 151: 27,-28 + 152: 27,-31 + 750: 22,-27 + 765: 26,-21 + 766: 26,-20 + 776: 26,-23 + 1503: 50,-28 + 2364: 37,-36 + 2365: 36,-34 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 962: 37,-53 + 963: 36,-55 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 199: -30,-17 + 200: -30,-16 + 201: -30,-15 + 202: -30,-14 + 203: -30,-13 + 204: -30,-12 + 1095: -20,-17 + 1096: -20,-18 + 1097: -20,-19 + 1098: -20,-20 + 2902: -31,-30 + 2929: -36,-32 + 2930: -36,-30 + 2931: -36,-29 + 2932: -36,-28 + 2933: -36,-27 + 2934: -36,-26 + 2935: -36,-25 + 2936: -36,-24 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 260: 67,-18 + 261: 67,-19 + 262: 67,-20 + 267: 63,-20 + 268: 63,-21 + 269: 63,-22 + 1671: 51,-41 + 2876: 7,-36 + 2877: 7,-35 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 15: 10,23 + 19: -13,24 + 20: -13,23 + 21: -13,22 + 35: 19,35 + 36: 19,36 + 186: -20,-31 + 401: -57,4 + 978: 82,-3 + 1078: 63,-19 + 1387: -10,38 + 1388: -10,39 + 1389: -10,40 + 1390: -10,41 + 2036: 13,33 + - node: + color: '#EFB34131' + id: HalfTileOverlayGreyscale90 + decals: + 2163: -3,-6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 1052: 0,-27 + 2525: 4,-43 + 2526: 4,-42 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 418: -37,-32 + 472: -15,-23 + 968: 1,-43 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 3376: 57,-52 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 419: -41,-28 + 471: -15,-28 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 420: -25,-30 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 2064: -11,-15 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 520: 11,-8 + 521: 12,-8 + 522: 13,-8 + 1958: 27,-90 + 1959: 27,-91 + 1964: 31,-91 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale + decals: + 2807: 36,-43 + 2808: 37,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 90: 32,-17 + 138: 39,-39 + 149: 35,-28 + 158: 29,-29 + 795: 18,-27 + 1073: 56,-25 + 1530: 37,-23 + 1771: -77,10 + 1772: -76,10 + 1773: -75,10 + 1774: -74,10 + 1775: -72,10 + 1776: -73,10 + 1777: -71,10 + 1778: -70,10 + 1779: -69,10 + 1780: -68,10 + 1781: -66,10 + 1782: -65,10 + 1795: -77,-14 + 1796: -76,-14 + 1797: -75,-14 + 1798: -74,-14 + 1799: -73,-14 + 1800: -72,-14 + 1801: -71,-14 + 1802: -70,-14 + 1803: -69,-14 + 1804: -68,-14 + 1805: -67,-14 + 1806: -66,-14 + 2225: -78,10 + 2226: -79,10 + 2370: 35,-35 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale + decals: + 1851: 75,-6 + 1852: 75,-7 + 1853: 75,-8 + 1854: 75,-9 + 1855: 75,-10 + 1856: 75,-11 + 1857: 75,-12 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale + decals: + 802: 63,-27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 187: -31,-11 + 410: -29,-23 + 2270: -18,-22 + 2271: -18,-23 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 863: 72,-18 + 2296: -29,-35 + 2297: -29,-34 + 2298: -29,-33 + 2299: -29,-32 + 2300: -29,-31 + 2301: -29,-30 + 2302: -28,-30 + 2303: -27,-30 + 2319: -29,-36 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1702: 14,-4 + 1703: 14,-5 + 1704: 14,-6 + 1705: 14,-7 + 1712: -3,1 + 1713: -4,1 + 1714: -4,0 + 1715: -4,-1 + 1716: -5,-1 + 1717: -6,-1 + 1718: -8,-1 + 1719: -9,-1 + 1720: -10,-1 + 1734: -2,10 + 1735: -2,9 + 1736: -2,8 + 1737: -2,7 + 1738: -2,6 + 1739: -2,5 + 1740: -2,4 + 1741: -2,3 + 1873: 18,-13 + 1874: 19,-13 + 1875: 20,-13 + 1876: 21,-13 + 1877: 23,-13 + 1878: 22,-13 + 1879: 24,-13 + 1880: 25,-13 + 1881: 26,-13 + 1882: 27,-13 + 1883: 28,-13 + 1884: 29,-13 + 1885: 30,-13 + 1886: 31,-13 + 1887: 32,-13 + 1888: 73,-13 + 1889: 72,-13 + 1890: 71,-13 + 1891: 70,-13 + 1892: 69,-13 + 1893: 68,-13 + 1894: 67,-13 + 1895: 66,-13 + 1896: 65,-13 + 1897: 64,-13 + 1898: 63,-13 + 1899: 62,-13 + 1900: 61,-13 + 1901: 60,-13 + 1902: 59,-13 + 1903: 58,-13 + 1904: 57,-13 + 1905: 56,-13 + 1906: 55,-13 + 1907: 54,-13 + 1908: -21,-1 + 1909: -22,-1 + 1910: -23,-1 + 1911: -24,-1 + 1912: -25,-1 + 1913: -28,-1 + 1914: -29,-1 + 1915: -27,-1 + 1916: -30,-1 + 1917: -31,-1 + 1924: -40,-1 + 1925: -41,-1 + 1928: -48,-1 + 1929: -49,-1 + 1930: -50,-1 + 1931: -51,-1 + 1932: -52,-1 + 1933: -62,1 + 1934: -61,1 + 1935: -60,1 + 1936: -59,1 + 1937: -58,1 + 1938: -57,1 + 1939: -56,1 + 1940: -55,1 + 1941: -54,1 + 2121: -18,-9 + 2122: -18,-8 + 2123: -18,-7 + 2124: -18,-6 + 2125: -18,-5 + 2126: -18,-4 + 2601: 19,12 + 2602: 19,13 + 2603: 19,14 + 2604: 19,15 + 2605: 20,15 + 2606: 21,15 + 2607: 22,15 + 2608: 23,15 + 2635: 8,17 + 2636: 8,16 + 2637: 8,15 + 2638: 8,14 + 2639: 8,13 + 2640: 8,12 + 2641: 8,10 + 2642: 8,11 + 2643: 8,9 + 2644: 8,8 + 2645: 8,7 + 2646: 8,6 + 2647: 8,5 + 2648: 8,4 + 2649: 8,3 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 1843: 33,-12 + 1844: 34,-12 + 1845: 35,-12 + 1846: 36,-12 + 1847: 37,-12 + 1848: 38,-12 + 1849: 39,-12 + 1850: 40,-12 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 5: 1,28 + 6: 6,28 + 22: -15,24 + 28: 4,23 + 39: 19,36 + 40: 18,35 + 45: 13,35 + 48: 11,33 + 52: 7,33 + 53: 6,32 + 288: 21,36 + 289: 21,34 + 290: 21,35 + 319: -3,33 + 320: -2,33 + 321: -1,33 + 322: 0,33 + 323: 1,33 + 328: -3,32 + 329: -3,31 + 330: -3,30 + 553: 4,21 + 554: 3,21 + 555: 2,21 + 556: 1,21 + 557: 0,21 + 558: -1,21 + 559: -2,21 + 560: -3,21 + 561: -4,21 + 562: -5,21 + 563: -6,21 + 564: -7,21 + 565: -8,21 + 566: -9,21 + 567: -10,21 + 568: -11,21 + 588: -2,18 + 589: -2,17 + 590: -2,16 + 591: -2,15 + 592: -2,14 + 593: -2,13 + 594: -2,12 + 1084: 57,-21 + 2039: 15,31 + 2041: 15,33 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 366: -47,5 + 367: -47,4 + 368: -47,3 + 369: -47,2 + 370: -47,1 + 950: 12,-45 + 951: 12,-44 + 952: 12,-43 + 953: 12,-42 + 954: 12,-41 + 2435: -4,-52 + 2436: -4,-53 + 2437: -4,-54 + 2438: -4,-55 + 2439: -4,-56 + 2440: -2,-52 + 2441: -3,-52 + 2531: 6,-44 + 2532: 6,-42 + 2533: 6,-43 + 2559: -18,-69 + 2560: -17,-69 + 2561: -16,-69 + 2562: -15,-69 + 2563: -14,-69 + 2564: -13,-69 + 2565: -12,-69 + 2566: -11,-69 + 2567: -10,-69 + 3152: 1,-64 + 3153: 1,-63 + 3154: 1,-62 + 3155: 1,-61 + 3156: 1,-60 + 3157: 2,-60 + 3158: 3,-60 + 3176: 2,-52 + 3177: 2,-53 + 3178: 2,-54 + 3179: 3,-56 + 3180: 3,-55 + - node: + color: '#F5DB9E96' + id: QuarterTileOverlayGreyscale + decals: + 1578: 24,-17 + 1579: 24,-18 + 1580: 24,-19 + 1581: 24,-20 + 1582: 24,-21 + - node: + color: '#FFEBAE96' + id: QuarterTileOverlayGreyscale + decals: + 1561: 18,-20 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 89: -8,-23 + 514: -13,-10 + 515: -14,-10 + 516: -15,-10 + 530: -16,-27 + 531: -16,-22 + 532: -16,-19 + 533: -16,-18 + 534: -16,-17 + 535: -16,-16 + 536: -16,-15 + 537: -16,-14 + 538: -16,-13 + 539: -16,-12 + 1962: 29,-94 + 1963: 29,-93 + 1967: 25,-94 + 1968: 25,-93 + 1993: -9,-10 + 1994: -8,-10 + 1995: -7,-10 + 1996: -6,-10 + 1997: -6,-9 + 1998: -5,-9 + 1999: -4,-9 + 2000: -3,-9 + 2001: -2,-9 + - node: + color: '#474F52FF' + id: QuarterTileOverlayGreyscale180 + decals: + 936: 1,-42 + 938: 1,-45 + 939: 1,-46 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale180 + decals: + 2809: 34,-41 + 2810: 35,-40 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 96: 27,-26 + 119: 42,-32 + 128: 41,-47 + 131: 41,-44 + 146: 36,-33 + 156: 27,-30 + 164: 29,-31 + 753: 22,-26 + 794: 18,-28 + 894: 28,-15 + 895: 29,-15 + 898: 36,-15 + 899: 37,-15 + 900: 40,-15 + 901: 42,-15 + 902: 43,-15 + 903: 41,-15 + 1519: 36,-25 + 1590: 39,-15 + 2724: 38,-15 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale180 + decals: + 830: 67,-25 + 831: 67,-26 + 832: 67,-27 + 833: 67,-28 + 834: 67,-29 + 835: 67,-30 + 836: 67,-31 + 837: 67,-32 + 838: 67,-33 + 839: 67,-34 + 840: 67,-35 + 841: 67,-36 + 842: 67,-37 + 843: 67,-38 + 844: 67,-39 + 845: 67,-40 + 846: 67,-42 + 847: 67,-41 + 848: 67,-43 + 849: 67,-44 + 850: 67,-45 + 851: 67,-46 + 852: 67,-47 + 853: 67,-48 + 854: 68,-25 + 855: 69,-25 + 856: 70,-25 + 857: 71,-25 + 858: 72,-25 + 859: 73,-25 + 860: 74,-25 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 2874: 3,-32 + 2875: 2,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 188: -31,-17 + 412: -27,-28 + 2937: -36,-23 + 2938: -35,-23 + 2939: -34,-23 + 2940: -32,-23 + 2941: -31,-23 + 2942: -33,-23 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 1625: 50,-15 + 1626: 57,-15 + 2313: -24,-34 + 2314: -24,-35 + 2315: -24,-36 + 2316: -24,-37 + 2317: -24,-38 + 2318: -24,-39 + 2320: -25,-39 + 2321: -26,-39 + 2322: -27,-39 + 2323: -28,-39 + 2324: -29,-39 + 2871: 4,-32 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 1039: 59,-27 + 1689: 1,-3 + 1690: 2,-3 + 1691: 3,-3 + 1692: 4,-3 + 1693: 5,-3 + 1694: 6,-3 + 1695: 7,-3 + 1696: 8,-3 + 1697: 9,-3 + 1698: 10,-3 + 1699: 11,-3 + 1700: 12,-3 + 1701: 13,-3 + 1942: -54,1 + 1943: -54,0 + 2065: 16,-15 + 2066: 16,-16 + 2067: 16,-17 + 2068: 16,-19 + 2069: 16,-20 + 2070: 16,-18 + 2071: 16,-21 + 2072: 16,-22 + 2073: 16,-23 + 2117: 0,-32 + 2118: 1,-32 + 2120: 7,-32 + 2613: 27,8 + 2614: 27,9 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 1831: -77,-6 + 1832: -76,-6 + 1833: -75,-6 + 1834: -74,-6 + 1835: -73,-6 + 1836: -72,-6 + 1837: -71,-6 + 1838: -70,-6 + 1839: -69,-6 + 1840: -68,-6 + 1841: -67,-6 + 1842: -66,-6 + 1869: 76,-16 + 1870: 77,-16 + 1871: 78,-16 + 1872: 79,-16 + 2221: -78,-6 + 2222: -79,-6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 13: 10,24 + 16: 8,23 + 24: -15,22 + 29: 6,24 + 33: 8,30 + 184: -20,-30 + 331: 4,30 + 332: 3,30 + 602: 0,19 + 603: 1,19 + 604: 2,19 + 605: 3,19 + 606: 4,19 + 607: 5,19 + 608: 6,19 + 609: 15,37 + 610: 16,37 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 912: 0,-35 + 913: 0,-36 + 914: 0,-37 + 915: 0,-38 + 916: 0,-39 + 917: 0,-40 + 2445: 0,-58 + 2446: 1,-58 + 2568: -10,-71 + 2569: -11,-71 + 2570: -12,-71 + 2571: -13,-71 + 2572: -14,-71 + 2573: -15,-71 + 2574: -16,-71 + 2575: -17,-71 + 2576: -18,-71 + 3159: 9,-64 + 3160: 9,-63 + 3161: 9,-62 + 3162: 9,-61 + 3163: 9,-60 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 523: 11,-10 + 524: 12,-10 + 525: 13,-10 + 540: 14,-12 + 541: 14,-13 + 542: 14,-14 + 543: 14,-15 + 544: 14,-19 + 545: 14,-18 + 546: 14,-17 + 547: 14,-16 + 1960: 27,-94 + 1961: 27,-93 + 1965: 31,-94 + 1966: 31,-93 + 1984: 7,-10 + 1985: 6,-10 + 1986: 5,-10 + 1987: 4,-10 + 1988: 4,-9 + 1989: 3,-9 + 1990: 2,-9 + 1991: 1,-9 + 1992: 0,-9 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale270 + decals: + 2811: 36,-40 + 2812: 37,-41 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 95: 24,-21 + 137: 39,-41 + 147: 35,-31 + 159: 29,-30 + 752: 24,-26 + 896: 31,-15 + 897: 32,-15 + 904: 45,-15 + 905: 46,-15 + 906: 47,-15 + 907: 48,-15 + 908: 24,-15 + 909: 23,-15 + 910: 22,-15 + 911: 18,-15 + 1074: 56,-23 + 1576: 26,-18 + 1783: -77,-6 + 1784: -76,-6 + 1785: -75,-6 + 1786: -74,-6 + 1787: -73,-6 + 1788: -72,-6 + 1789: -71,-6 + 1790: -70,-6 + 1791: -69,-6 + 1792: -68,-6 + 1793: -67,-6 + 1794: -66,-6 + 2219: -78,-6 + 2220: -79,-6 + 3075: 12,-32 + 3076: 11,-32 + 3077: 10,-32 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale270 + decals: + 1865: 76,-16 + 1866: 77,-16 + 1867: 78,-16 + 1868: 79,-16 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale270 + decals: + 806: 65,-48 + 807: 65,-47 + 808: 65,-46 + 809: 65,-45 + 810: 65,-44 + 811: 65,-43 + 812: 65,-42 + 813: 65,-41 + 814: 65,-40 + 815: 65,-39 + 816: 65,-38 + 817: 65,-37 + 818: 65,-36 + 819: 65,-35 + 820: 65,-34 + 821: 65,-33 + 822: 65,-32 + 823: 65,-31 + 824: 65,-30 + 825: 65,-29 + 826: 65,-28 + 827: 65,-27 + 828: 65,-26 + 829: 65,-25 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 711: 41,-61 + 712: 40,-61 + 713: 39,-61 + 714: 38,-61 + 715: 38,-60 + 716: 38,-59 + 717: 38,-58 + 718: 38,-57 + 2873: 7,-32 + 3131: 8,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 189: -30,-17 + 409: -29,-20 + 411: -25,-28 + 453: -18,-20 + 454: -18,-19 + 455: -18,-18 + 456: -18,-17 + 457: -18,-16 + 458: -18,-26 + 459: -18,-27 + 460: -18,-28 + 461: -18,-29 + 462: -18,-30 + 463: -18,-31 + 464: -18,-32 + 2267: -18,-15 + 2290: -29,-35 + 2291: -29,-34 + 2292: -29,-33 + 2293: -29,-32 + 2294: -29,-31 + 2295: -29,-30 + 2325: -29,-39 + 2326: -28,-39 + 2327: -27,-39 + 2328: -26,-39 + 2329: -25,-39 + 2330: -24,-39 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 1510: 50,-28 + 1511: 49,-27 + 1514: 50,-27 + 1624: 56,-15 + 1627: 59,-15 + 2872: 6,-32 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 1673: -3,-3 + 1674: -4,-3 + 1675: -5,-3 + 1676: -6,-3 + 1677: -8,-3 + 1678: -9,-3 + 1679: -10,-3 + 1680: -12,-3 + 1681: -11,-3 + 1682: -13,-3 + 1683: -15,-3 + 1684: -14,-3 + 1742: 14,-20 + 1743: 14,-21 + 1744: 14,-22 + 1745: 14,-23 + 1746: 14,-28 + 1747: 14,-29 + 1944: -62,-6 + 1945: -61,-6 + 1946: -60,-6 + 1947: -59,-6 + 1948: -58,-6 + 1949: -57,-6 + 1950: -56,-6 + 1951: -55,-6 + 1952: -54,-6 + 2097: 13,-32 + 2098: 14,-32 + 2099: 15,-32 + 2100: 16,-32 + 2101: -17,-32 + 2102: -16,-32 + 2103: -15,-32 + 2104: -14,-32 + 2105: -13,-32 + 2106: -12,-32 + 2107: -11,-32 + 2108: -10,-32 + 2109: -9,-32 + 2110: -8,-32 + 2111: -7,-32 + 2112: -6,-32 + 2113: -5,-32 + 2114: -4,-32 + 2115: -3,-32 + 2116: -2,-32 + 2119: 2,-32 + 2278: 51,-12 + 2279: 51,-11 + 2280: 51,-10 + 2281: 51,-9 + 2285: 46,-12 + 2615: 23,8 + 2616: 22,8 + 2617: 21,8 + 2618: 20,8 + 2619: 20,9 + 2620: 19,9 + 3124: 14,-27 + 3125: 14,-26 + 3126: 14,-25 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 1858: 75,-12 + 1859: 75,-11 + 1860: 75,-10 + 1861: 75,-9 + 1862: 75,-8 + 1863: 75,-7 + 1864: 75,-6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 12: 8,24 + 17: 10,23 + 23: -15,22 + 26: -13,22 + 27: 4,24 + 47: 11,35 + 51: 6,33 + 54: 6,30 + 569: -20,19 + 570: -18,19 + 571: -19,19 + 572: -17,19 + 573: -16,19 + 574: -15,19 + 575: -14,19 + 576: -13,19 + 577: -12,19 + 578: -11,19 + 579: -10,19 + 580: -9,19 + 581: -8,19 + 582: -7,19 + 583: -6,19 + 584: -5,19 + 585: -4,19 + 586: -3,19 + 587: -2,19 + 611: 13,37 + 612: 12,37 + 613: 6,35 + 614: 7,35 + 615: 8,35 + 616: 9,35 + 2038: 15,32 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 918: -2,-50 + 919: -2,-49 + 920: -2,-48 + 921: -2,-47 + 922: -2,-46 + 923: -2,-45 + 924: -2,-44 + 925: -2,-43 + 926: -2,-42 + 927: -2,-41 + 928: -2,-40 + 929: -2,-39 + 930: -2,-38 + 931: -2,-37 + 932: -2,-36 + 933: -2,-35 + 2442: -4,-58 + 2443: -3,-58 + 2444: -2,-58 + - node: + color: '#F5DB9E96' + id: QuarterTileOverlayGreyscale270 + decals: + 1583: 21,-15 + 1584: 20,-15 + 1585: 19,-15 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 88: -8,-27 + 517: -13,-8 + 518: -14,-8 + 519: -15,-8 + 528: -16,-24 + 529: -16,-29 + 798: -9,-30 + 799: -8,-30 + 800: -7,-30 + 1956: 29,-90 + 1957: 29,-91 + 1969: 25,-91 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale90 + decals: + 2813: 35,-43 + 2814: 34,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 91: 28,-17 + 121: 42,-35 + 127: 41,-45 + 129: 41,-49 + 132: 41,-42 + 157: 27,-29 + 165: 29,-28 + 1133: 16,-28 + 1134: 16,-27 + 1529: 39,-23 + 1531: 36,-23 + 1577: 25,-19 + 2363: 36,-35 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale90 + decals: + 801: 61,-27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 197: -33,-11 + 2304: -29,-30 + 2305: -28,-30 + 2306: -27,-30 + 2307: -24,-34 + 2308: -24,-35 + 2309: -24,-36 + 2310: -24,-37 + 2311: -24,-38 + 2312: -24,-39 + 2943: -31,-19 + 2944: -32,-19 + 2945: -33,-19 + 2946: -34,-19 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 270: 63,-23 + 1512: 48,-28 + 1513: 49,-29 + 1515: 48,-29 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 1685: -16,-4 + 1686: -16,-5 + 1687: -16,-6 + 1688: -16,-7 + 1706: 4,-1 + 1707: 3,-1 + 1708: 2,-1 + 1709: 2,0 + 1710: 2,1 + 1711: 1,1 + 1721: -14,-1 + 1722: -15,-1 + 1723: -16,-1 + 1724: -17,-1 + 1725: -18,-1 + 1726: 0,3 + 1727: 0,4 + 1728: 0,5 + 1729: 0,6 + 1730: 0,7 + 1731: 0,8 + 1732: 0,9 + 1733: 0,10 + 1748: 13,-30 + 1749: 12,-30 + 1750: 11,-30 + 1751: 10,-30 + 1752: 7,-30 + 1753: 6,-30 + 1754: 5,-30 + 1755: 4,-30 + 1756: 3,-30 + 1757: 2,-30 + 1758: 1,-30 + 1759: -6,-30 + 1760: -5,-30 + 1761: -4,-30 + 1762: -11,-30 + 1763: -12,-30 + 1764: -13,-30 + 1765: -14,-30 + 1766: -15,-30 + 1918: -33,-1 + 1919: -34,-1 + 1920: -35,-1 + 1921: -37,-1 + 1922: -36,-1 + 1923: -38,-1 + 1926: -43,-1 + 1927: -44,-1 + 1953: -54,-6 + 1954: -54,-5 + 1955: -54,-4 + 2074: 16,-25 + 2075: 16,-26 + 2076: 16,-29 + 2077: 16,-30 + 2078: 16,-31 + 2079: 16,-32 + 2127: 10,-1 + 2128: 11,-1 + 2129: 12,-1 + 2130: 13,-1 + 2131: 14,-1 + 2132: 15,-1 + 2133: 16,-1 + 2134: 16,-2 + 2135: 16,-3 + 2136: 16,-4 + 2137: 16,-5 + 2138: 16,-6 + 2139: 16,-7 + 2140: 16,-8 + 2141: 16,-9 + 2142: 16,-10 + 2143: 16,-12 + 2144: 16,-13 + 2145: 9,-1 + 2146: 9,0 + 2147: 9,1 + 2148: 9,2 + 2149: 9,3 + 2150: 9,4 + 2151: 9,5 + 2152: 9,6 + 2272: 46,-12 + 2273: 47,-12 + 2274: 48,-12 + 2275: 49,-12 + 2276: 49,-13 + 2277: 50,-13 + 2282: 51,-9 + 2283: 52,-9 + 2284: 53,-9 + 2286: 45,-13 + 2287: 44,-13 + 2288: 43,-13 + 2289: 42,-13 + 2609: 25,15 + 2610: 26,15 + 2611: 27,15 + 2612: 27,14 + 2621: 17,12 + 2622: 16,12 + 2623: 15,12 + 2624: 14,12 + 2625: 13,12 + 2626: 12,12 + 2627: 11,12 + 2628: 10,12 + 2629: 9,12 + 2630: 9,13 + 2631: 9,14 + 2632: 9,15 + 2633: 9,16 + 2634: 9,17 + 3130: 8,-30 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 1807: -66,-14 + 1808: -67,-14 + 1809: -68,-14 + 1810: -69,-14 + 1811: -70,-14 + 1812: -71,-14 + 1813: -72,-14 + 1814: -73,-14 + 1815: -74,-14 + 1816: -75,-14 + 1817: -76,-14 + 1818: -77,-14 + 1819: -77,10 + 1820: -76,10 + 1821: -75,10 + 1822: -74,10 + 1823: -73,10 + 1824: -72,10 + 1825: -71,10 + 1826: -70,10 + 1827: -69,10 + 1828: -68,10 + 1829: -66,10 + 1830: -65,10 + 2223: -78,10 + 2224: -79,10 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 7: 3,28 + 8: 8,28 + 30: 6,23 + 31: 9,33 + 32: 15,35 + 34: 19,34 + 37: 18,36 + 185: -20,-32 + 291: 25,36 + 292: 25,35 + 293: 25,34 + 294: 25,33 + 295: 25,32 + 324: 2,33 + 325: 3,33 + 326: 4,33 + 327: 4,32 + 548: 6,21 + 549: 7,21 + 550: 8,21 + 551: 9,21 + 552: 10,21 + 595: 0,12 + 596: 0,13 + 597: 0,14 + 598: 0,15 + 599: 0,16 + 600: 0,17 + 601: 0,18 + 1085: 59,-18 + 2042: 13,31 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 371: -38,1 + 372: -38,2 + 373: -38,3 + 374: -38,4 + 375: -38,5 + 934: 1,-41 + 941: 1,-44 + 942: 1,-45 + 943: 1,-46 + 944: 1,-47 + 945: 14,-45 + 946: 14,-44 + 947: 14,-43 + 948: 14,-42 + 949: 14,-41 + 2447: 1,-56 + 2448: 0,-56 + 2449: 0,-55 + 2450: 0,-54 + 2451: 0,-53 + 2452: 0,-52 + 2530: 4,-44 + 3164: 9,-58 + 3165: 9,-57 + 3166: 9,-56 + 3167: 9,-55 + 3168: 9,-54 + 3169: 9,-53 + 3170: 9,-52 + 3171: 8,-52 + 3172: 7,-52 + 3173: 6,-52 + 3174: 5,-52 + 3175: 4,-52 + - node: + color: '#F9FFFEFF' + id: Remains + decals: + 63: 23,41 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 1065: -4,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 1066: -3,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 1067: -2,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 1068: -1,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 1069: 0,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 1070: 1,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 1071: 2,-2 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 2335: -32,-38 + 3667: 7,-80 + 3668: -9,-80 + - node: + color: '#334E6D5A' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2170: 0,-7 + 2171: -2,-5 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2806: 36,-42 + - node: + color: '#52B4E931' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2172: 3,-7 + 2175: 1,-5 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 334: -11,24 + 793: 18,-25 + 1505: 48,-27 + 1532: 37,-22 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 339: -7,24 + 956: 34,-52 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 414: -30,-36 + 2904: -34,-29 + - node: + color: '#D381C934' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2180: 5,-7 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2891: 2,-34 + - node: + color: '#DE3A3A2B' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2155: -9,-7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 396: -62,5 + 969: 76,-2 + 1080: 57,-17 + 3291: -11,36 + - node: + color: '#EFB34131' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2159: -3,-7 + 2160: -5,-5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 346: -3,24 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2805: 35,-41 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 336: -9,23 + 749: 22,-28 + 1506: 50,-29 + 1523: 42,-25 + 1575: 25,-18 + 2361: 37,-37 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 342: -5,23 + 732: 47,-57 + 958: 37,-54 + 959: 36,-56 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2906: -31,-32 + - node: + color: '#D381C934' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2181: 7,-8 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 867: 71,-16 + 2890: 7,-37 + - node: + color: '#DE3A3A2B' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2154: -7,-8 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 394: -57,3 + 971: 82,-4 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 343: -1,23 + 1049: 0,-28 + 3150: 1,-26 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2803: 36,-41 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 335: -11,23 + 1507: 48,-29 + 2352: 28,-37 + 2839: 39,-50 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 341: -7,23 + 955: 34,-56 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 413: -30,-39 + 2905: -34,-32 + - node: + color: '#D381C934' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2183: 5,-8 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 866: 61,-16 + 2889: 2,-37 + - node: + color: '#DE3A3A2B' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2153: -9,-8 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 393: -62,3 + 972: 76,-4 + 3292: -11,34 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 344: -3,23 + 1050: -2,-28 + 3151: -3,-26 + - node: + color: '#334E6D5A' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2168: -2,-7 + 2169: 0,-5 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2804: 35,-42 + - node: + color: '#52B4E931' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2173: 1,-7 + 2174: 3,-5 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 333: -9,24 + 1508: 50,-27 + 1524: 42,-23 + 1533: 39,-22 + 2362: 37,-35 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 340: -5,24 + 731: 47,-56 + 957: 37,-52 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1094: -20,-16 + 2903: -31,-29 + - node: + color: '#D381C934' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2182: 7,-7 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2888: 7,-34 + - node: + color: '#DE3A3A2B' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2156: -7,-7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 395: -57,5 + 970: 82,-2 + 1079: 63,-18 + 1081: 59,-17 + - node: + color: '#EFB34131' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2161: -5,-7 + 2162: -3,-5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 345: -1,24 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 2378: 31,-35 + - node: + color: '#FED83DFF' + id: WarnBox + decals: + 64: 47,21 + 65: 91,-26 + 66: 91,-27 + 67: 91,-30 + 68: 87,-39 + 69: 87,-58 + 70: 81,-67 + 71: 62,-72 + 72: 49,-67 + 73: -43,-49 + 74: -43,-50 + 75: -43,-51 + 76: -31,-38 + 77: -62,-22 + 78: -69,-16 + 79: -76,-16 + 80: -78,-14 + 81: -66,-10 + 82: -67,19 + 83: -62,15 + 84: -50,24 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 998: -69,-17 + 999: -76,-17 + 1000: -67,-10 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 2728: 42,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 3253: 23,19 + 3589: 8,-82 + 3591: 7,-80 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 3254: 25,19 + 3542: -9,-80 + 3544: -10,-82 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 3251: 23,17 + 3576: 8,-95 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1568: 21,-21 + 3255: 25,17 + 3558: -10,-95 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 1266: 44,-21 + 1267: 46,-21 + 2730: 42,-21 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 1264: 46,-21 + 1265: 44,-21 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 1057: -3,-30 + 1618: 51,-21 + 2255: -73,-4 + 3250: -13,-63 + 3598: 7,-82 + 3637: -4,-92 + 3638: -6,-90 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 666: 76,-42 + 1056: 1,-30 + 1158: 72,-22 + 1617: 55,-21 + 2229: -79,8 + 2232: -79,-6 + 2253: -69,-4 + 2254: -76,-4 + 3249: -11,-63 + 3545: -9,-82 + 3633: 2,-92 + 3634: 4,-90 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 1500: -13,6 + 1616: 51,-17 + 1982: 22,-90 + 2258: -73,8 + 3635: -4,-82 + 3636: -6,-84 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 362: 1,36 + 665: 76,-40 + 694: 72,-19 + 1499: -11,6 + 1615: 55,-17 + 1983: 34,-90 + 2228: -79,10 + 2231: -79,-4 + 2256: -69,8 + 2257: -76,8 + - node: + color: '#FFFFFFFF' + id: WarnEndGreyscaleN + decals: + 3084: 46,-17 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 3436: -1,-78 + 3437: -1,-77 + 3444: 17,-75 + 3445: 18,-75 + 3599: -1,-84 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 2043: -2,41 + 2044: -1,41 + 2045: 0,41 + 2046: 1,41 + 2047: 2,41 + 2048: 3,41 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 313: 24,37 + 314: 24,38 + 315: 24,39 + 316: 24,40 + 317: 24,41 + 318: 24,42 + 645: 74,-36 + 646: 74,-35 + 647: 74,-34 + 709: 78,-47 + 710: 78,-48 + 746: 41,-54 + 747: 41,-53 + 748: 41,-52 + 879: 67,-20 + 880: 67,-19 + 881: 67,-18 + 1606: 51,-20 + 1607: 51,-19 + 1608: 51,-18 + 1979: 22,-93 + 1980: 22,-92 + 1981: 22,-91 + 2417: 8,-49 + 2418: 8,-48 + 3248: -13,-62 + 3252: 23,18 + 3577: 8,-94 + 3578: 8,-93 + 3579: 8,-92 + 3580: 8,-91 + 3581: 8,-90 + 3582: 8,-89 + 3583: 8,-88 + 3584: 8,-87 + 3585: 8,-86 + 3586: 8,-85 + 3587: 8,-84 + 3588: 8,-83 + 3590: 7,-81 + 3612: -6,-89 + 3613: -6,-85 + 3614: -4,-90 + 3615: -4,-91 + 3620: -4,-84 + 3621: -4,-83 + 3642: -6,-88 + 3643: -6,-87 + 3644: -6,-86 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 1316: -7,-17 + 1474: -9,8 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 2784: 42,-24 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1255: 46,-20 + 1256: 46,-19 + 1257: 46,-18 + 1258: 44,-20 + 1259: 44,-19 + 1260: 44,-18 + 1261: 44,-17 + 2726: 42,-20 + 2727: 42,-19 + 3450: 9,-69 + 3454: 9,-67 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleN + decals: + 1317: -8,-12 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 1527: 41,-23 + 2725: 38,-22 + - node: + color: '#A4610696' + id: WarnLineGreyscaleN + decals: + 2264: -27,-16 + - node: + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 1425: 66,-51 + 1665: 54,-40 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 1338: -6,36 + 1378: -8,45 + 1379: -14,45 + 1380: -18,45 + 1381: -21,45 + 1382: -24,45 + 2184: -8,27 + 2185: -9,27 + 3269: -12,27 + - node: + color: '#F5DB9E96' + id: WarnLineGreyscaleN + decals: + 1586: 19,-25 + 1587: 21,-25 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1262: 43,-21 + 1263: 45,-21 + 2425: -1,-52 + 2426: 0,-35 + 2427: -1,-35 + 2428: -2,-35 + 2453: 0,-52 + 2454: -2,-52 + 2650: 8,16 + 2651: 9,16 + 2696: 3,-66 + 2697: 8,-66 + 2729: 41,-18 + 3453: -7,-68 + 3525: -2,-73 + 3526: 0,-73 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleS + decals: + 1314: -14,-18 + 1315: -8,-20 + 2002: -1,-9 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 1525: 40,-25 + 1526: 39,-25 + - node: + color: '#A4610696' + id: WarnLineGreyscaleS + decals: + 2263: -27,-18 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 1619: 54,-15 + 1620: 53,-15 + 1621: 52,-15 + 1628: 58,-15 + 1629: 66,-16 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 1337: -11,43 + 1373: -19,43 + 1374: -22,43 + 1375: -24,43 + 1376: -15,43 + 1377: -6,43 + 2033: 6,26 + 2034: 4,26 + 3259: -9,34 + 3260: -8,34 + 3268: -14,26 + 3304: -15,34 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleS + decals: + 1457: -6,6 + 1458: -4,6 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 2422: 0,-50 + 2423: -1,-50 + 2424: -2,-50 + 2429: 0,-33 + 2430: -1,-33 + 2431: -2,-33 + 3085: 46,-21 + 3086: 45,-21 + 3087: 44,-21 + 3088: 43,-21 + 3089: 42,-21 + 3451: 0,-71 + 3452: -2,-71 + 3527: 0,-75 + 3528: -2,-75 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleW + decals: + 1459: -7,8 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1248: 44,-20 + 1249: 44,-19 + 1250: 44,-18 + 1251: 44,-17 + 1252: 46,-20 + 1253: 46,-19 + 1254: 46,-18 + 2336: 75,-15 + 2337: 75,-14 + 2338: 75,-13 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 296: 24,37 + 297: 23,37 + 298: 22,37 + 299: 21,32 + 300: 22,32 + 301: 23,32 + 302: 24,32 + 303: 25,32 + 358: -2,36 + 359: -1,36 + 360: 0,36 + 639: 72,-36 + 640: 73,-36 + 641: 74,-36 + 661: 78,-38 + 662: 77,-38 + 663: 76,-38 + 674: 63,-24 + 675: 62,-24 + 676: 61,-24 + 677: 60,-24 + 678: 59,-24 + 689: 70,-19 + 690: 71,-19 + 699: 68,-47 + 739: 39,-54 + 740: 41,-54 + 865: 69,-19 + 994: -73,-17 + 995: -74,-17 + 996: -72,-17 + 997: -71,-17 + 1498: -12,6 + 1516: 50,-29 + 1517: 49,-29 + 1518: 48,-29 + 1562: 22,-21 + 1563: 21,-21 + 1612: 52,-17 + 1613: 53,-17 + 1614: 54,-17 + 1973: 33,-90 + 1974: 32,-90 + 1975: 31,-90 + 1976: 25,-90 + 1977: 24,-90 + 1978: 23,-90 + 2239: -70,8 + 2240: -71,8 + 2241: -72,8 + 2242: -77,8 + 2243: -78,8 + 2244: -79,8 + 2403: 14,-46 + 2404: 13,-46 + 2405: 12,-46 + 2406: 11,-46 + 2407: 10,-46 + 2408: 9,-46 + 3531: 0,-78 + 3532: -2,-78 + 3559: -9,-95 + 3560: -8,-95 + 3561: -7,-95 + 3562: -6,-95 + 3563: -5,-95 + 3564: -4,-95 + 3565: -3,-95 + 3566: -2,-95 + 3567: -1,-95 + 3568: 0,-95 + 3569: 1,-95 + 3570: 2,-95 + 3571: 3,-95 + 3572: 4,-95 + 3573: 5,-95 + 3574: 6,-95 + 3575: 7,-95 + 3622: 1,-82 + 3623: 0,-82 + 3624: -1,-82 + 3625: -2,-82 + 3626: -3,-82 + 3627: 3,-84 + 3628: 2,-84 + 3629: -4,-84 + 3630: -5,-84 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 307: 22,42 + 308: 22,41 + 309: 22,40 + 310: 22,39 + 311: 22,38 + 312: 22,37 + 355: -2,38 + 356: -2,37 + 357: -2,36 + 361: 1,35 + 363: 1,34 + 642: 72,-36 + 643: 72,-35 + 644: 72,-34 + 664: 76,-41 + 679: 59,-24 + 680: 59,-23 + 681: 59,-22 + 682: 59,-21 + 683: 59,-20 + 691: 72,-20 + 692: 72,-21 + 695: 68,-46 + 696: 68,-47 + 697: 68,-45 + 743: 39,-54 + 744: 39,-53 + 745: 39,-52 + 876: 65,-20 + 877: 65,-19 + 878: 65,-18 + 1177: 53,-28 + 1564: 21,-17 + 1565: 21,-18 + 1566: 21,-19 + 1567: 21,-20 + 1603: 55,-20 + 1604: 55,-19 + 1605: 55,-18 + 1635: 53,-27 + 1970: 34,-93 + 1971: 34,-92 + 1972: 34,-91 + 2202: -8,-54 + 2227: -79,9 + 2230: -79,-5 + 2331: -30,-38 + 2332: -30,-37 + 2333: -30,-36 + 2334: -30,-39 + 2415: 8,-49 + 2416: 8,-48 + 3247: -11,-62 + 3256: 25,18 + 3305: -11,34 + 3306: -11,35 + 3307: -11,36 + 3543: -9,-81 + 3546: -10,-83 + 3547: -10,-84 + 3548: -10,-85 + 3549: -10,-86 + 3550: -10,-87 + 3551: -10,-88 + 3552: -10,-89 + 3553: -10,-90 + 3554: -10,-91 + 3555: -10,-92 + 3556: -10,-93 + 3557: -10,-94 + 3616: 4,-89 + 3617: 4,-85 + 3618: 2,-84 + 3619: 2,-83 + 3631: 2,-91 + 3632: 2,-90 + 3639: 4,-88 + 3640: 4,-87 + 3641: 4,-86 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 304: 22,42 + 305: 23,42 + 306: 24,42 + 348: 4,38 + 349: 3,38 + 350: 2,38 + 351: 1,38 + 352: 0,38 + 353: -1,38 + 354: -2,38 + 376: -23,-70 + 377: -24,-70 + 378: -25,-70 + 379: -26,-70 + 380: -27,-70 + 648: 74,-34 + 649: 73,-34 + 650: 72,-34 + 684: 59,-20 + 685: 60,-20 + 686: 61,-20 + 687: 62,-20 + 688: 63,-20 + 693: 70,-22 + 698: 68,-45 + 700: 70,-47 + 701: 71,-47 + 702: 72,-47 + 703: 73,-47 + 704: 74,-47 + 705: 75,-47 + 706: 76,-47 + 707: 77,-47 + 708: 78,-47 + 741: 41,-52 + 742: 39,-52 + 864: 69,-22 + 1001: -33,3 + 1002: -32,3 + 1003: -31,3 + 1053: -1,-30 + 1054: 0,-30 + 1055: -2,-30 + 1058: 0,-25 + 1059: -1,-25 + 1060: -2,-25 + 1061: -3,-25 + 1062: 1,-25 + 1136: 76,-26 + 1137: 77,-26 + 1138: 78,-26 + 1139: 79,-26 + 1140: 80,-26 + 1141: 82,-26 + 1142: 81,-26 + 1157: 71,-22 + 1609: 54,-21 + 1610: 53,-21 + 1611: 52,-21 + 2233: -71,-4 + 2234: -72,-4 + 2235: -70,-4 + 2236: -78,-4 + 2237: -79,-4 + 2238: -77,-4 + 2409: 14,-46 + 2410: 13,-46 + 2411: 12,-46 + 2412: 11,-46 + 2413: 10,-46 + 2414: 9,-46 + 3246: -12,-63 + 3529: 0,-77 + 3530: -2,-77 + 3533: 0,-80 + 3534: -2,-80 + 3535: -1,-80 + 3536: -3,-80 + 3537: -4,-80 + 3538: -5,-80 + 3539: -6,-80 + 3540: -7,-80 + 3541: -8,-80 + 3592: 6,-80 + 3593: 5,-80 + 3594: 4,-80 + 3595: 3,-80 + 3596: 2,-80 + 3597: 1,-80 + 3606: 1,-92 + 3607: -3,-92 + 3608: -4,-90 + 3609: -5,-90 + 3610: 2,-90 + 3611: 3,-90 + 3645: 0,-92 + 3646: -1,-92 + 3647: -2,-92 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 2922: -31,-25 + 3136: 12,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 2925: -34,-25 + 3143: 6,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 2384: 12,-37 + 3137: 12,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2385: 10,-37 + 3142: 6,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 3133: 9,-25 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 3132: 9,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 3149: 9,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 3148: 9,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 3147: 9,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 3146: 9,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 1203: -8,15 + 1213: 11,-19 + 1214: 11,-18 + 1215: 11,-17 + 1216: 11,-16 + 1217: 11,-15 + 1218: 11,-14 + 1219: 11,-13 + 2735: 12,-36 + 2919: -31,-28 + 2920: -31,-27 + 2921: -31,-26 + 3239: -12,-28 + 3240: -12,-27 + 3241: -12,-26 + 3242: -12,-25 + 3243: -12,-24 + 3244: -12,-23 + 3245: -12,-22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1208: 16,37 + 1209: 15,37 + 1210: 14,37 + 1211: 13,37 + 1212: 12,37 + 1220: 11,-13 + 1221: 10,-13 + 1222: 9,-13 + 1223: 8,-13 + 1224: 7,-13 + 1225: 6,-13 + 1226: 5,-13 + 1591: 51,-38 + 1592: 52,-38 + 1593: 53,-38 + 1594: 54,-38 + 1595: 55,-38 + 1596: 56,-38 + 1597: 57,-38 + 2915: -34,-29 + 2916: -33,-29 + 2917: -32,-29 + 2918: -31,-29 + 2923: -32,-25 + 2924: -33,-25 + 3134: 10,-26 + 3135: 11,-26 + 3144: 7,-26 + 3145: 8,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1204: -7,16 + 1205: -6,16 + 1206: -5,16 + 1207: -4,16 + 1332: -12,53 + 1333: -13,53 + 1334: -14,53 + 1335: -15,53 + 1336: -16,53 + 2386: 11,-37 + 3138: 11,-27 + 3139: 10,-27 + 3140: 8,-27 + 3141: 7,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 2652: 32,-1 + 2653: 32,0 + 2736: 10,-36 + 2926: -34,-28 + 2927: -34,-27 + 2928: -34,-26 + 3232: -8,-28 + 3233: -8,-27 + 3234: -8,-26 + 3235: -8,-25 + 3236: -8,-24 + 3237: -8,-23 + 3238: -8,-22 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 481: -14.995166,-26.958757 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 482: -14.979541,-25.255632 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 480: -15.010791,-24.068132 + - node: + color: '#A4610606' + id: splatter + decals: + 1135: 34.46607,8.395077 + - node: + color: '#FFFFFFFF' + id: thinline + decals: + 3382: 32.88275,8.297449 + 3383: 32.88275,9.188074 + 3384: 32.88275,10.078699 + - type: GridAtmosphere + version: 2 + data: + tiles: + -4,-4: + 0: 56797 + -4,-5: + 0: 56671 + -5,-4: + 0: 61133 + -4,-3: + 0: 65309 + -5,-3: + 0: 52975 + -4,-2: + 0: 4383 + -5,-2: + 0: 52701 + -4,-1: + 0: 65521 + -5,-1: + 0: 65532 + -3,-4: + 0: 65535 + -3,-3: + 0: 64015 + -3,-1: + 0: 65520 + -3,-5: + 0: 65419 + -3,-2: + 0: 138 + -3,0: + 0: 48113 + -2,-4: + 0: 48051 + -2,-3: + 0: 63259 + -2,-2: + 0: 52479 + -2,-1: + 0: 65520 + -2,-5: + 0: 62259 + 1: 128 + -1,-4: + 0: 65520 + -1,-3: + 0: 61695 + -1,-2: + 0: 65535 + -1,-1: + 0: 65520 + -1,-5: + 0: 61678 + -1,0: + 0: 56831 + 0,-4: + 0: 65520 + 0,-3: + 0: 61567 + 0,-2: + 0: 65535 + 0,-1: + 0: 65520 + 0,0: + 0: 54647 + 0,1: + 0: 21845 + -1,1: + 0: 56797 + 0,2: + 0: 30037 + -1,2: + 0: 64733 + 0,3: + 0: 21845 + -1,3: + 0: 56796 + 0,4: + 0: 61909 + 1,0: + 0: 61576 + 1,1: + 0: 2032 + 1,2: + 0: 61567 + 1,3: + 0: 32519 + 1,-1: + 0: 65520 + 2,0: + 0: 48051 + 2,1: + 0: 15291 + 2,2: + 0: 65535 + 2,3: + 0: 47935 + 2,-1: + 0: 65520 + 2,4: + 0: 29683 + 3,0: + 0: 22001 + 3,1: + 0: 6129 + 3,2: + 0: 65527 + 3,3: + 0: 47903 + 3,-1: + 0: 65532 + 4,0: + 0: 21876 + 4,1: + 0: 30576 + 4,2: + 0: 65458 + 4,3: + 0: 48027 + 0,-5: + 0: 61491 + 1: 136 + 1,-3: + 0: 65358 + 1,-2: + 0: 4607 + 1,-5: + 0: 65256 + 1,-4: + 0: 61166 + 2,-4: + 0: 65535 + 2,-3: + 0: 64015 + 2,-5: + 0: 65520 + 2,-2: + 0: 10 + 3,-4: + 0: 56797 + 3,-3: + 0: 65485 + 3,-2: + 0: 52431 + 3,-5: + 0: 56797 + 4,-4: + 0: 65521 + 4,-3: + 0: 56785 + 4,-2: + 0: 56797 + 4,-1: + 0: 56797 + -5,0: + 0: 39864 + -4,0: + 0: 43744 + -4,1: + 0: 60942 + -5,1: + 0: 56799 + -4,2: + 0: 61679 + -5,2: + 0: 36860 + -4,3: + 0: 60083 + -5,3: + 0: 35771 + -4,4: + 0: 62702 + -3,1: + 0: 65311 + -3,2: + 0: 61695 + -3,3: + 0: 46008 + -3,4: + 0: 61627 + -2,2: + 0: 61679 + -2,3: + 0: 65264 + -2,0: + 0: 24576 + -2,1: + 0: 60998 + -2,4: + 0: 63743 + -1,4: + 0: 64733 + 4,-5: + 0: 56797 + 5,-4: + 0: 65521 + 5,-3: + 0: 65524 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 5,-5: + 0: 32639 + 5,0: + 0: 30511 + 6,-4: + 0: 65534 + 6,-3: + 0: 65521 + 6,-2: + 0: 65535 + 6,-1: + 0: 65527 + 6,-5: + 0: 65535 + 6,0: + 0: 65359 + 7,-4: + 0: 65520 + 7,-3: + 0: 32752 + 7,-2: + 0: 65535 + 7,-5: + 0: 65535 + 7,-1: + 0: 61006 + 7,0: + 0: 62702 + 8,-4: + 0: 65534 + 8,-3: + 0: 61326 + 8,-2: + 0: 61423 + 8,-1: + 0: 12320 + 2: 34944 + -8,-4: + 0: 30583 + -8,-5: + 0: 28731 + -9,-4: + 0: 43691 + -8,-3: + 0: 62583 + -9,-3: + 0: 58026 + -8,-2: + 0: 10914 + -9,-2: + 0: 61152 + -8,-1: + 0: 65530 + -9,-1: + 0: 65524 + -8,0: + 0: 28689 + 1: 128 + -7,-4: + 0: 64299 + -7,-3: + 0: 15291 + -7,-2: + 0: 6002 + -7,-1: + 0: 65535 + -7,-5: + 0: 15151 + -7,0: + 0: 17476 + 1: 256 + -6,-4: + 0: 65295 + -6,-3: + 0: 4095 + -6,-2: + 0: 20479 + -6,-1: + 0: 65535 + -6,-5: + 0: 65535 + -5,-5: + 0: 56829 + -8,-8: + 0: 15355 + -9,-8: + 0: 56829 + -8,-7: + 0: 48059 + -9,-7: + 0: 56797 + -8,-6: + 0: 65464 + -9,-6: + 0: 65521 + -9,-5: + 0: 45311 + -8,-9: + 0: 34956 + -7,-8: + 0: 53247 + -7,-7: + 0: 65535 + -7,-6: + 0: 16383 + -7,-9: + 0: 65535 + -6,-8: + 0: 3838 + -6,-7: + 0: 65278 + -6,-6: + 0: 20222 + -5,-8: + 0: 52703 + -5,-7: + 0: 64989 + -5,-6: + 0: 52703 + -5,-9: + 0: 18279 + -4,-8: + 0: 8191 + -4,-7: + 0: 30583 + -4,-6: + 0: 5623 + 4,-8: + 0: 7633 + 4,-9: + 0: 56829 + 3,-8: + 0: 53247 + 4,-7: + 0: 56799 + 3,-7: + 0: 57309 + 4,-6: + 0: 56793 + 3,-6: + 0: 56797 + 5,-8: + 0: 6000 + 5,-7: + 0: 65399 + 5,-6: + 0: 30579 + 5,-9: + 0: 30591 + 6,-8: + 0: 65522 + 6,-7: + 0: 65391 + 6,-6: + 0: 63103 + 6,-9: + 0: 32631 + 7,-8: + 0: 65512 + 7,-7: + 0: 65294 + 7,-6: + 0: 65359 + 7,-9: + 0: 65535 + 8,-8: + 0: 65464 + 8,-7: + 0: 65419 + 8,-6: + 0: 64975 + 8,-5: + 0: 65535 + 0,-8: + 0: 4095 + 0,-9: + 0: 7645 + -1,-8: + 0: 36863 + 0,-7: + 0: 13073 + 1: 12 + -1,-7: + 0: 61132 + 0,-6: + 0: 13104 + 1: 34816 + -1,-6: + 0: 61152 + 1,-8: + 0: 4095 + 1,-7: + 1: 4369 + 0: 52428 + 1,-6: + 1: 1 + 0: 52416 + 1,-9: + 0: 12287 + 2,-8: + 0: 4095 + 2,-7: + 0: 65535 + 2,-6: + 0: 30032 + 3,-9: + 0: 53695 + -3,-8: + 0: 4095 + -3,-7: + 0: 65535 + -3,-6: + 0: 4095 + -2,-8: + 0: 8191 + -2,-7: + 0: 4369 + 1: 17472 + -2,-6: + 0: 4369 + 1: 1092 + -1,-9: + 0: 52701 + -8,1: + 0: 1911 + -9,0: + 0: 49152 + 1: 288 + -9,1: + 0: 3276 + 1: 4096 + -8,2: + 0: 7936 + 1: 8 + -9,2: + 0: 32512 + 1: 2 + -8,3: + 0: 4369 + 1: 4 + -9,3: + 0: 4623 + 1: 9472 + -8,4: + 0: 13057 + -7,1: + 1: 4096 + 0: 52428 + -7,2: + 0: 4044 + -6,0: + 0: 12272 + -6,1: + 0: 61167 + -6,2: + 0: 36848 + -6,3: + 0: 3276 + -6,4: + 1: 1094 + -5,4: + 0: 64187 + -8,-12: + 0: 64783 + -8,-13: + 0: 7645 + -9,-12: + 0: 57116 + -8,-11: + 0: 17421 + 1: 43520 + -9,-11: + 0: 13 + -8,-10: + 0: 57296 + -9,-10: + 0: 35968 + 1: 13104 + -7,-12: + 0: 65327 + -7,-11: + 0: 17423 + 1: 43520 + -7,-10: + 0: 65520 + -6,-12: + 0: 4367 + -6,-11: + 0: 49351 + -6,-10: + 0: 53724 + -6,-9: + 0: 3869 + -5,-12: + 0: 17487 + -5,-11: + 0: 25716 + -5,-10: + 0: 26215 + -5,-13: + 0: 10922 + -4,-12: + 0: 35007 + -4,-10: + 0: 52224 + -4,-9: + 0: 12 + -3,-12: + 0: 65039 + -3,-11: + 0: 3822 + -3,-10: + 0: 61166 + -3,-9: + 0: 3822 + -2,-12: + 0: 65295 + -2,-11: + 0: 4095 + -2,-10: + 0: 65535 + -2,-9: + 0: 4095 + -2,-13: + 0: 33655 + -1,-12: + 0: 56783 + -1,-11: + 0: 52703 + -1,-10: + 0: 64989 + -1,-13: + 0: 56783 + 0,-12: + 0: 48059 + 0,-11: + 0: 48063 + 0,-10: + 0: 53745 + 0,-13: + 0: 48029 + 1,-12: + 0: 61679 + 1,-11: + 0: 65535 + 1,-10: + 0: 63728 + 1,-13: + 0: 65039 + 2,-12: + 0: 61167 + 2,-10: + 0: 57584 + 2,-13: + 0: 65163 + 2,-11: + 0: 61166 + 2,-9: + 0: 3822 + 3,-12: + 0: 30719 + 3,-11: + 0: 30583 + 3,-10: + 0: 45298 + 3,-13: + 0: 65535 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 53744 + 4,-13: + 0: 65535 + 5,-12: + 0: 30583 + 5,-11: + 0: 30583 + 5,-10: + 0: 28912 + 5,-13: + 0: 30583 + 6,-12: + 1: 4369 + 0: 204 + 3: 49152 + 6,-11: + 1: 61713 + 3: 204 + 6,-10: + 0: 29424 + 6,-13: + 1: 4369 + 0: 49152 + 3: 204 + 7,-12: + 0: 17 + 3: 4096 + 1: 17476 + 7,-11: + 3: 17 + 1: 29764 + 7,-10: + 0: 61680 + 7,-13: + 0: 4096 + 1: 17476 + 3: 17 + 8,-12: + 0: 7647 + 8,-11: + 0: 56797 + 8,-10: + 0: 61661 + 8,-9: + 0: 48127 + 5,1: + 0: 2039 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 4,4: + 0: 7416 + 6,1: + 0: 30583 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 6,4: + 0: 13105 + 7,2: + 0: 61422 + 7,3: + 0: 61182 + 7,1: + 0: 57344 + 7,4: + 0: 14 + 1: 8704 + 8,0: + 0: 63523 + 2: 8 + 8,1: + 0: 61440 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 0,5: + 0: 59135 + -1,5: + 0: 57599 + 0,6: + 0: 65326 + -1,6: + 0: 65358 + 0,7: + 0: 65359 + -1,7: + 0: 61071 + 0,8: + 0: 63231 + 1,4: + 0: 61680 + 1,5: + 0: 30207 + 1,6: + 0: 65367 + 1,7: + 0: 64911 + 1,8: + 0: 53469 + 2,5: + 0: 28799 + 2,6: + 0: 63271 + 2,7: + 0: 65287 + 2,8: + 0: 47615 + 3,4: + 0: 61680 + 3,5: + 0: 20479 + 3,6: + 0: 65535 + 3,7: + 0: 65295 + 3,8: + 0: 65535 + 4,5: + 0: 6015 + 4,6: + 0: 30583 + 4,7: + 0: 16135 + -4,5: + 0: 65039 + -5,5: + 0: 65359 + -4,6: + 0: 61006 + -5,6: + 0: 15 + 1: 20224 + -4,7: + 0: 65520 + -4,8: + 0: 65327 + -3,5: + 0: 57583 + -3,6: + 0: 65358 + -3,7: + 0: 56793 + -3,8: + 0: 65421 + -2,5: + 0: 57599 + -2,6: + 0: 65358 + -2,7: + 0: 65533 + -2,8: + 0: 64991 + -1,8: + 0: 57582 + 4,8: + 0: 65535 + 5,4: + 0: 48048 + 5,5: + 0: 48051 + 5,6: + 0: 65531 + 5,7: + 0: 4095 + 5,8: + 0: 61182 + 6,5: + 0: 56784 + 6,6: + 0: 65528 + 6,7: + 0: 4095 + 6,8: + 0: 13107 + 1: 34952 + 7,6: + 0: 1792 + 1: 34944 + 7,5: + 1: 34 + 7,7: + 1: 8928 + 7,8: + 1: 2 + 8,4: + 0: 15 + 1: 52224 + 8,7: + 1: 16 + -4,9: + 0: 15 + -4,10: + 0: 63351 + -4,11: + 0: 62719 + -5,10: + 0: 63078 + -5,11: + 0: 26367 + -4,12: + 0: 65535 + -3,9: + 0: 63279 + -3,10: + 0: 62207 + -3,11: + 0: 53503 + -3,12: + 0: 56799 + -2,9: + 0: 58623 + -2,10: + 0: 62698 + -2,11: + 0: 61951 + -2,12: + 0: 65535 + -1,9: + 0: 61166 + -1,10: + 1: 60928 + 0: 192 + -1,11: + 1: 14 + 0: 57344 + -1,12: + 0: 65518 + 0,9: + 0: 65535 + 0,10: + 0: 240 + 1: 65280 + 0,11: + 1: 15 + 0: 61440 + 0,12: + 0: 65535 + 1,9: + 0: 56829 + 1,10: + 1: 53504 + 0: 204 + 1,11: + 1: 19549 + 0: 4096 + 1,12: + 0: 4369 + 1: 17476 + 2,9: + 0: 30579 + 2,10: + 0: 119 + 1: 61440 + 2,11: + 1: 44975 + 2,12: + 1: 8738 + 3,9: + 0: 65524 + 3,10: + 0: 255 + 1: 61440 + 3,11: + 1: 12066 + 4,9: + 0: 4380 + 1: 35840 + 4,10: + 0: 17 + 1: 4104 + 4,11: + 1: 7953 + 4,12: + 1: 17 + 5,10: + 1: 1 + 0: 3276 + 5,11: + 1: 20292 + 5,9: + 0: 52430 + 6,9: + 0: 4371 + 1: 17416 + 6,10: + 0: 273 + 1: 17476 + 6,11: + 1: 8994 + 6,12: + 1: 2 + 7,9: + 1: 7 + 9,4: + 0: 3 + 1: 128 + 8,5: + 1: 8 + 9,5: + 1: 50737 + 9,3: + 0: 13307 + 10,4: + 1: 248 + 9,6: + 1: 34824 + 10,6: + 1: 20273 + 9,7: + 1: 34952 + 10,7: + 1: 33249 + 0: 3598 + 9,8: + 1: 34952 + 10,3: + 1: 34944 + 0: 17 + 11,4: + 1: 16 + 0: 52364 + 11,6: + 1: 40844 + 11,7: + 0: 771 + 1: 35064 + 10,8: + 0: 3598 + 1: 33249 + 11,5: + 0: 34956 + 11,3: + 0: 52416 + 12,4: + 0: 4559 + 1: 16384 + 12,5: + 0: 1 + 1: 19524 + 12,6: + 1: 20293 + 12,7: + 1: 33008 + 0: 3598 + 11,8: + 1: 35064 + 0: 771 + 9,0: + 2: 15 + 0: 65296 + 9,1: + 0: 47232 + 9,2: + 0: 48955 + 9,-1: + 2: 65520 + 0: 1 + 10,0: + 2: 1 + 0: 65292 + 10,1: + 0: 56789 + 10,2: + 0: 64961 + 10,-1: + 2: 4368 + 0: 57548 + 11,0: + 0: 30543 + 11,2: + 0: 65382 + 11,-1: + 0: 61695 + 11,1: + 0: 26214 + 12,0: + 0: 51387 + 12,1: + 1: 16 + 0: 45260 + 12,2: + 0: 48939 + 12,3: + 0: 65520 + -9,4: + 0: 65280 + 1: 1 + -8,5: + 0: 13107 + -9,5: + 0: 65535 + -8,6: + 0: 3 + -9,6: + 0: 15 + -6,5: + 0: 14 + -6,6: + 0: 14 + 1: 19456 + -6,7: + 1: 34816 + -6,8: + 1: 34952 + -5,7: + 1: 17476 + -5,8: + 1: 18244 + -7,10: + 1: 4369 + 0: 32768 + -7,11: + 1: 4371 + 0: 136 + -7,12: + 1: 4369 + -6,10: + 0: 64989 + -6,11: + 0: 56831 + -6,12: + 0: 65309 + -6,9: + 1: 8 + -5,12: + 0: 32518 + -5,9: + 1: 3140 + 0,13: + 1: 8944 + -1,13: + 1: 224 + 0,14: + 1: 15 + -1,14: + 1: 15 + 1,13: + 1: 124 + 1,14: + 1: 15 + 2,13: + 1: 547 + 2,14: + 1: 1 + -12,-1: + 0: 65520 + -12,0: + 0: 61156 + -13,0: + 0: 64724 + -12,1: + 0: 62702 + -13,1: + 0: 56797 + -12,2: + 0: 15283 + -13,2: + 0: 65532 + -12,3: + 0: 47935 + -13,3: + 0: 43944 + -12,4: + 0: 13115 + -11,0: + 0: 65520 + -11,1: + 0: 61695 + -11,2: + 0: 56784 + -11,3: + 0: 4383 + 1: 19456 + -11,-1: + 0: 65526 + -11,4: + 0: 1 + 1: 3724 + -10,0: + 0: 30578 + -10,1: + 0: 28791 + -10,2: + 0: 36646 + -10,3: + 0: 15 + 1: 60416 + -10,-1: + 0: 65520 + -10,4: + 1: 3 + 0: 59912 + 4: 1024 + -13,4: + 0: 61432 + -12,5: + 0: 1646 + -13,5: + 0: 61156 + -12,6: + 1: 44868 + -12,7: + 0: 3855 + 1: 16624 + -13,7: + 1: 17652 + 0: 257 + -12,8: + 0: 3855 + 1: 16624 + -11,5: + 0: 4095 + -11,6: + 1: 18210 + -11,7: + 0: 257 + 1: 18006 + -11,8: + 1: 18006 + 0: 257 + -10,5: + 0: 61182 + -10,6: + 0: 14 + -16,4: + 1: 22289 + 0: 68 + -16,3: + 0: 20343 + -16,5: + 1: 12 + -15,4: + 0: 4095 + -15,5: + 1: 17487 + -15,3: + 0: 65535 + -15,6: + 1: 19524 + -15,7: + 1: 19524 + -15,8: + 1: 19532 + -14,4: + 0: 4095 + -14,5: + 1: 39327 + -14,6: + 1: 44953 + -14,7: + 0: 3855 + 1: 16624 + -14,3: + 0: 65535 + -14,8: + 0: 3855 + 1: 16624 + -13,6: + 1: 57600 + 0: 1092 + -13,8: + 1: 17652 + 0: 257 + -16,0: + 0: 55807 + -16,-1: + 0: 56797 + -17,0: + 0: 34952 + -16,1: + 0: 53725 + -17,1: + 0: 34952 + -16,2: + 0: 21853 + -17,2: + 0: 12287 + -15,0: + 0: 62207 + -15,1: + 0: 63743 + -15,2: + 0: 65295 + -15,-1: + 0: 30583 + -14,0: + 0: 57463 + -14,1: + 0: 65262 + -14,2: + 0: 65472 + -14,-1: + 0: 65527 + -13,-1: + 0: 65522 + -20,2: + 0: 3838 + -21,2: + 0: 2248 + -20,3: + 1: 15 + -20,1: + 0: 16384 + -19,2: + 0: 4095 + -19,3: + 1: 13 + -18,2: + 0: 4095 + -18,3: + 1: 7 + -18,1: + 0: 8192 + -17,3: + 0: 30583 + -17,4: + 0: 10103 + -17,-1: + 0: 34959 + -18,5: + 1: 12 + -17,5: + 0: 34 + 1: 8 + -21,3: + 1: 4 + -20,-4: + 0: 4002 + -20,-2: + 0: 65024 + -21,-2: + 0: 51200 + -20,-1: + 0: 78 + -21,-1: + 0: 8 + -19,-4: + 0: 4093 + -19,-2: + 0: 65280 + -19,-1: + 0: 15 + -19,-5: + 0: 53504 + -18,-4: + 0: 4091 + -18,-2: + 0: 65280 + -18,-1: + 0: 47 + -18,-5: + 0: 47104 + -17,-4: + 0: 36862 + -17,-2: + 0: 65420 + -17,-3: + 0: 36748 + -16,-4: + 0: 7965 + -16,-3: + 0: 56829 + -16,-2: + 0: 65309 + -16,-5: + 0: 50244 + 1: 256 + -15,-4: + 0: 20231 + -15,-3: + 0: 65535 + -15,-2: + 0: 65327 + -15,-5: + 0: 30719 + -14,-4: + 0: 35615 + -14,-3: + 0: 46011 + -14,-2: + 0: 30475 + -14,-5: + 0: 65136 + -13,-4: + 0: 46003 + -13,-3: + 0: 29363 + -13,-2: + 0: 30583 + -13,-5: + 0: 46064 + -12,-4: + 0: 30326 + -12,-3: + 0: 62582 + -12,-2: + 0: 65535 + -12,-5: + 0: 29936 + -11,-4: + 0: 65295 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-5: + 0: 30704 + -10,-4: + 0: 65423 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-5: + 0: 61917 + 12,-1: + 0: 47547 + 13,1: + 0: 56567 + 13,2: + 0: 16349 + 13,3: + 0: 48120 + 13,0: + 0: 20206 + 13,4: + 0: 35003 + 1: 8192 + 13,-1: + 0: 61166 + 14,0: + 0: 30583 + 14,1: + 0: 26864 + 14,2: + 0: 36614 + 14,3: + 0: 30719 + 14,-1: + 0: 30719 + 14,4: + 0: 30583 + 15,0: + 0: 43967 + 15,1: + 0: 65523 + 15,2: + 0: 54781 + 15,3: + 0: 12061 + 15,-1: + 0: 45294 + 15,4: + 0: 30583 + 16,0: + 0: 32631 + 16,1: + 0: 8176 + 16,2: + 0: 60156 + 16,3: + 0: 12074 + 9,-4: + 0: 65520 + 9,-3: + 0: 65407 + 9,-2: + 0: 65535 + 9,-5: + 0: 61166 + 10,-4: + 0: 65520 + 10,-3: + 0: 56777 + 10,-2: + 0: 65533 + 10,-5: + 0: 61183 + 11,-4: + 0: 65521 + 11,-3: + 0: 65437 + 11,-2: + 0: 65535 + 11,-5: + 0: 65527 + 12,-4: + 0: 65522 + 12,-3: + 0: 48027 + 12,-2: + 0: 48059 + 13,5: + 1: 11042 + 0: 8 + 13,6: + 1: 40866 + 13,7: + 0: 771 + 1: 36024 + 12,8: + 0: 3598 + 1: 33008 + 14,5: + 0: 3 + 1: 51200 + 14,6: + 1: 310 + 13,8: + 1: 36028 + 0: 771 + 15,5: + 1: 304 + 16,4: + 0: 65535 + 16,5: + 0: 8738 + 1: 34944 + 16,6: + 1: 6552 + 16,7: + 1: 1 + 17,4: + 0: 30583 + 17,5: + 1: 10992 + 18,4: + 1: 5888 + 16,-1: + 0: 29934 + 17,0: + 0: 65535 + 17,1: + 0: 3838 + 17,2: + 0: 63359 + 17,3: + 0: 1815 + 17,-1: + 0: 12287 + 18,0: + 0: 30583 + 18,1: + 0: 16753 + 18,2: + 0: 65327 + 18,3: + 0: 4111 + 1: 3840 + 19,0: + 1: 61455 + 19,1: + 1: 36608 + 19,2: + 1: 742 + 0: 8192 + 19,3: + 1: 226 + 0: 32768 + 20,0: + 1: 61715 + 20,1: + 1: 1792 + 20,2: + 1: 49168 + 20,3: + 1: 24576 + 21,0: + 1: 4096 + 12,-5: + 0: 60074 + 13,-4: + 0: 65520 + 13,-3: + 0: 65459 + 13,-5: + 0: 65535 + 13,-2: + 0: 61160 + 14,-4: + 0: 65524 + 14,-3: + 0: 65520 + 14,-2: + 0: 65535 + 14,-5: + 0: 61439 + 15,-4: + 0: 65534 + 15,-3: + 0: 65520 + 15,-2: + 0: 20479 + 15,-5: + 0: 20479 + 16,-4: + 0: 65535 + 16,-3: + 0: 65504 + -20,-5: + 1: 1792 + -17,-5: + 1: 3660 + -17,-6: + 1: 32768 + -16,-6: + 1: 4352 + 0: 16384 + -15,-6: + 0: 61440 + -12,-8: + 0: 32896 + -11,-8: + 0: 64765 + -11,-7: + 0: 52429 + 1: 4352 + -11,-6: + 1: 4369 + 0: 52428 + -10,-8: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -12,-12: + 1: 65520 + -13,-12: + 1: 65504 + -12,-11: + 1: 255 + -13,-11: + 1: 239 + -11,-12: + 1: 65408 + -11,-11: + 1: 61183 + -11,-10: + 1: 61167 + -11,-13: + 0: 19520 + 1: 1 + -10,-10: + 1: 65528 + -11,-9: + 1: 2184 + -10,-13: + 0: 57296 + -10,-12: + 0: 61152 + -10,-11: + 0: 14 + 1: 34816 + -10,-9: + 1: 2184 + -9,-13: + 0: 65535 + -9,-9: + 1: 2176 + -8,-16: + 0: 61713 + -8,-17: + 0: 57105 + -9,-16: + 0: 61422 + -8,-15: + 0: 56785 + -9,-15: + 0: 65128 + -8,-14: + 0: 53244 + -9,-14: + 0: 20196 + -7,-16: + 0: 61440 + -7,-15: + 0: 65520 + -7,-14: + 0: 65535 + -7,-13: + 0: 4095 + -7,-17: + 0: 61422 + -6,-16: + 0: 61440 + -6,-15: + 0: 65520 + -6,-14: + 0: 65535 + -6,-13: + 0: 4095 + -6,-17: + 0: 15291 + -5,-16: + 0: 65192 + -5,-14: + 0: 43946 + -5,-15: + 0: 43562 + -5,-17: + 0: 52692 + -4,-16: + 0: 7645 + -4,-15: + 0: 65295 + -4,-14: + 0: 65535 + -4,-13: + 0: 4095 + -4,-17: + 0: 56785 + -3,-16: + 0: 1919 + -3,-15: + 0: 47887 + -3,-14: + 0: 7963 + -3,-13: + 0: 3003 + -3,-17: + 0: 30576 + -2,-16: + 0: 2047 + -2,-15: + 0: 63247 + -2,-14: + 0: 10103 + -2,-17: + 0: 63279 + -1,-16: + 0: 4095 + -1,-15: + 0: 65423 + -1,-14: + 0: 65535 + -1,-17: + 0: 61695 + 0,-15: + 0: 64270 + 0,-14: + 0: 56731 + 0,-16: + 0: 61166 + 0,-17: + 0: 36607 + 1,-16: + 0: 65535 + 1,-15: + 0: 65311 + 1,-14: + 0: 65535 + 2,-16: + 0: 48059 + 2,-15: + 0: 48027 + 2,-14: + 0: 48059 + 2,-17: + 0: 37875 + 3,-16: + 0: 65535 + 3,-15: + 0: 65535 + 3,-14: + 0: 65535 + 3,-17: + 0: 65278 + 4,-16: + 0: 65535 + 4,-15: + 0: 65535 + 4,-14: + 0: 65535 + 8,-13: + 0: 56605 + 9,-12: + 0: 43967 + 9,-11: + 0: 48059 + 9,-10: + 0: 47295 + 9,-9: + 0: 63931 + 9,-13: + 0: 47883 + 9,-8: + 0: 56607 + 10,-12: + 0: 49083 + 10,-11: + 0: 48115 + 10,-10: + 0: 29627 + 10,-9: + 0: 30591 + 10,-13: + 0: 16155 + 10,-8: + 0: 65287 + 11,-12: + 0: 30583 + 11,-11: + 0: 40176 + 11,-10: + 0: 61661 + 11,-9: + 0: 65535 + 11,-8: + 0: 30543 + 12,-12: + 0: 48063 + 12,-11: + 0: 60219 + 12,-9: + 0: 10927 + 9,-7: + 0: 63965 + 9,-6: + 0: 20223 + 10,-7: + 0: 29183 + 10,-6: + 0: 57983 + 11,-7: + 0: 30591 + 11,-6: + 0: 61567 + 12,-8: + 0: 30566 + 12,-7: + 0: 45695 + 12,-6: + 0: 46011 + 8,-16: + 0: 53503 + 8,-17: + 0: 64443 + 8,-15: + 0: 7967 + 8,-14: + 0: 56797 + 9,-16: + 0: 53744 + 9,-15: + 0: 52701 + 9,-14: + 0: 47903 + 9,-17: + 0: 64961 + 10,-16: + 0: 45241 + 10,-15: + 0: 64443 + 10,-14: + 0: 47903 + 10,-17: + 0: 16313 + 11,-16: + 0: 53435 + 11,-15: + 0: 63709 + 11,-14: + 0: 65327 + 11,-13: + 0: 3855 + 11,-17: + 0: 40942 + 12,-16: + 0: 10993 + 12,-13: + 0: 61422 + 13,-8: + 2: 819 + 0: 35016 + 13,-7: + 0: 62207 + 13,-6: + 0: 61695 + 14,-8: + 0: 3003 + 14,-7: + 0: 61695 + 14,-6: + 0: 61183 + 15,-8: + 0: 12287 + 15,-7: + 0: 62719 + 15,-6: + 0: 65535 + 16,-7: + 0: 61183 + 16,-6: + 0: 20207 + 16,-8: + 0: 61166 + 16,-5: + 0: 20206 + 16,-9: + 0: 61167 + 17,-7: + 0: 65262 + 17,-6: + 0: 61183 + 17,-8: + 0: 61166 + 17,-5: + 0: 20206 + 17,-4: + 0: 65535 + 18,-8: + 0: 30583 + 18,-7: + 0: 30583 + 18,-6: + 0: 32639 + 18,-5: + 0: 26487 + 19,-8: + 0: 65520 + 19,-7: + 0: 65456 + 19,-6: + 0: 60943 + 19,-5: + 0: 4383 + 1: 2048 + 19,-9: + 0: 30583 + 19,-4: + 0: 65535 + 20,-8: + 0: 30576 + 20,-7: + 0: 30484 + 20,-6: + 0: 3855 + 20,-5: + 0: 7 + 1: 25224 + 20,-9: + 0: 65319 + 20,-4: + 1: 2 + 0: 32512 + 21,-8: + 0: 63271 + 21,-7: + 0: 30583 + 21,-6: + 0: 1919 + 21,-5: + 1: 563 + 21,-9: + 0: 28999 + 22,-8: + 0: 32631 + 22,-7: + 0: 30711 + 22,-6: + 0: 15 + 23,-8: + 0: 768 + 23,-7: + 0: 305 + 23,-9: + 1: 12288 + 23,-6: + 1: 2 + 16,-12: + 0: 61166 + 15,-12: + 0: 56781 + 16,-11: + 0: 65262 + 15,-11: + 0: 65293 + 16,-10: + 0: 61166 + 15,-10: + 0: 65423 + 15,-9: + 0: 4095 + 16,-13: + 0: 58606 + 17,-12: + 0: 57309 + 17,-11: + 0: 34829 + 1: 8704 + 17,-10: + 0: 65032 + 1: 2 + 17,-9: + 0: 3822 + 18,-12: + 0: 65535 + 18,-11: + 0: 62735 + 18,-10: + 0: 30469 + 18,-9: + 0: 1911 + 19,-12: + 0: 65535 + 19,-11: + 0: 30591 + 19,-10: + 0: 63351 + 20,-12: + 0: 23901 + 20,-11: + 0: 32581 + 20,-10: + 0: 63271 + 12,-10: + 0: 43562 + 13,-12: + 0: 65518 + 13,-11: + 0: 65295 + 13,-10: + 0: 65359 + 13,-9: + 0: 4095 + 13,-13: + 0: 60943 + 14,-12: + 0: 61054 + 14,-11: + 0: 65294 + 14,-10: + 0: 47887 + 14,-9: + 0: 3003 + 14,-13: + 0: 61166 + 15,-13: + 0: 53759 + 16,-16: + 0: 60338 + 15,-16: + 0: 4080 + 16,-15: + 0: 58922 + 16,-14: + 0: 60999 + 15,-14: + 0: 61695 + 16,-17: + 0: 28262 + 17,-16: + 0: 65521 + 17,-15: + 0: 30479 + 17,-14: + 0: 63239 + 17,-13: + 0: 3839 + 17,-17: + 0: 32624 + 18,-16: + 0: 61440 + 18,-15: + 0: 30470 + 18,-14: + 0: 65527 + 18,-13: + 0: 4095 + 18,-17: + 0: 61713 + 1: 68 + 19,-16: + 0: 62327 + 19,-15: + 0: 57304 + 19,-14: + 0: 65520 + 19,-13: + 0: 4095 + 19,-17: + 0: 28672 + 1: 68 + 20,-16: + 0: 30503 + 20,-15: + 0: 23892 + 20,-14: + 0: 54612 + 20,-13: + 0: 17749 + 21,-12: + 0: 13063 + 1: 34816 + 21,-11: + 0: 30576 + 21,-10: + 0: 29040 + 21,-13: + 0: 28791 + 22,-12: + 1: 4096 + 22,-11: + 1: 4099 + 22,-10: + 1: 4867 + 22,-9: + 1: 273 + 20,-17: + 0: 30498 + 21,-15: + 0: 32631 + 21,-14: + 0: 30471 + 21,-16: + 1: 236 + 22,-16: + 1: 8818 + 22,-15: + 0: 768 + 1: 19526 + 22,-14: + 1: 61719 + 22,-13: + 1: 785 + 22,-17: + 1: 8818 + 23,-15: + 1: 3840 + 12,-17: + 0: 13090 + 12,-15: + 0: 8738 + 12,-14: + 0: 61166 + 13,-16: + 0: 4080 + 13,-14: + 0: 65535 + 13,-17: + 1: 17476 + 13,-15: + 1: 1092 + 14,-16: + 0: 4080 + 14,-14: + 0: 61695 + 15,-17: + 1: 21845 + 15,-15: + 1: 1365 + 16,-2: + 0: 61166 + 17,-3: + 0: 65520 + 17,-2: + 0: 65535 + 18,-4: + 0: 65520 + 18,-3: + 0: 65464 + 18,-2: + 0: 7099 + 18,-1: + 0: 1301 + 19,-3: + 0: 30719 + 19,-2: + 0: 45047 + 19,-1: + 0: 4095 + 20,-3: + 0: 30591 + 20,-2: + 0: 3959 + 20,-1: + 0: 1919 + 21,-4: + 0: 3840 + 21,-3: + 0: 15 + 1: 12544 + 21,-2: + 1: 1 + 0: 3840 + 21,-1: + 0: 15 + 16,-20: + 1: 16 + 0: 52454 + 15,-20: + 1: 44719 + 16,-19: + 0: 12288 + 1: 32768 + 16,-18: + 0: 63283 + 15,-19: + 0: 40960 + 1: 954 + 15,-18: + 0: 142 + 1: 21248 + 16,-21: + 0: 16384 + 1: 15 + 17,-20: + 1: 144 + 0: 14178 + 17,-19: + 0: 1 + 1: 63744 + 17,-18: + 1: 153 + 0: 61440 + 17,-21: + 1: 8207 + 0: 16384 + 18,-20: + 1: 9910 + 0: 2056 + 18,-19: + 1: 13990 + 0: 2056 + 18,-18: + 0: 4096 + 1: 17486 + 18,-21: + 1: 9895 + 0: 2056 + 19,-20: + 0: 3855 + 1: 8432 + 19,-19: + 0: 3855 + 1: 20720 + 19,-18: + 1: 17487 + 19,-21: + 1: 8432 + 0: 3855 + 20,-20: + 1: 8946 + 0: 2056 + 20,-19: + 1: 8946 + 0: 2056 + 20,-18: + 1: 1839 + 0: 8192 + 20,-21: + 1: 8946 + 0: 2056 + 21,-20: + 0: 3855 + 1: 8432 + 21,-19: + 0: 3855 + 1: 20720 + 21,-18: + 1: 21855 + 21,-17: + 1: 5621 + 21,-21: + 1: 8432 + 0: 3855 + 22,-20: + 1: 8995 + 22,-19: + 1: 8995 + 22,-18: + 1: 8739 + 22,-21: + 1: 8995 + 12,-20: + 1: 12288 + 11,-20: + 1: 61440 + 12,-19: + 1: 12002 + 11,-19: + 0: 62208 + 12,-18: + 1: 1570 + 0: 8192 + 11,-18: + 0: 61695 + 13,-19: + 1: 18417 + 13,-20: + 1: 4401 + 13,-21: + 1: 4369 + 13,-18: + 1: 17476 + 14,-20: + 0: 16 + 14,-19: + 1: 241 + 15,-21: + 1: 43694 + 8,-20: + 0: 3 + 1: 68 + 7,-20: + 0: 15 + 8,-19: + 1: 61440 + 8,-18: + 1: 287 + 0: 35840 + 7,-18: + 1: 19710 + 5: 4096 + 8,-21: + 1: 16632 + 9,-19: + 1: 6016 + 9,-18: + 0: 62912 + 9,-20: + 1: 34944 + 10,-20: + 1: 61440 + 10,-19: + 0: 65024 + 1: 5 + 10,-18: + 0: 63743 + 4,-20: + 1: 4095 + 0: 24576 + 4,-21: + 1: 65280 + 3,-20: + 1: 4095 + 4,-19: + 0: 26358 + 3,-19: + 0: 3822 + 4,-18: + 0: 65535 + 3,-18: + 0: 61166 + 4,-17: + 0: 65535 + 5,-20: + 1: 4095 + 5,-19: + 0: 1911 + 5,-18: + 0: 30583 + 5,-17: + 0: 30583 + 5,-21: + 1: 65280 + 5,-16: + 0: 30583 + 6,-20: + 1: 29491 + 0: 8 + 6,-19: + 1: 15359 + 6,-18: + 1: 4595 + 5: 49152 + 6,-17: + 1: 4369 + 5: 204 + 6: 49152 + 6,-21: + 1: 13057 + 0: 34824 + 6,-16: + 1: 4369 + 6: 204 + 7: 49152 + 7,-19: + 1: 29456 + 7,-17: + 5: 17 + 6: 4096 + 1: 17476 + 7,-21: + 0: 13203 + 7,-16: + 6: 17 + 1: 17476 + 7: 4096 + 5,-15: + 0: 30583 + 5,-14: + 0: 30583 + 6,-15: + 1: 4369 + 7: 204 + 3: 49152 + 6,-14: + 1: 4369 + 3: 49356 + 7,-15: + 7: 17 + 3: 4096 + 1: 17476 + 7,-14: + 3: 4113 + 1: 17476 + -4,-20: + 0: 61440 + 1: 142 + -4,-19: + 0: 65535 + -5,-20: + 0: 49152 + -5,-19: + 0: 57341 + -4,-18: + 0: 65520 + -5,-18: + 0: 57297 + -4,-21: + 1: 63231 + -3,-20: + 0: 56335 + -3,-19: + 0: 56797 + -3,-18: + 0: 65520 + -3,-21: + 0: 36044 + 1: 17 + -2,-20: + 0: 47887 + -2,-19: + 0: 65523 + -2,-18: + 0: 65520 + -2,-21: + 0: 65535 + -1,-20: + 0: 65359 + -1,-19: + 0: 65524 + -1,-18: + 0: 65524 + -1,-21: + 0: 65437 + 0,-20: + 0: 65311 + 0,-19: + 0: 65521 + 0,-18: + 0: 65521 + -8,-19: + 0: 13104 + 1: 34824 + -9,-19: + 0: 34944 + 1: 8192 + -8,-18: + 0: 4369 + 1: 3072 + -9,-17: + 0: 36608 + -7,-19: + 8: 2 + 0: 3820 + -7,-18: + 0: 61166 + -6,-19: + 0: 36863 + -6,-18: + 0: 49075 + -6,-20: + 1: 1092 + -6,-21: + 1: 17476 + -12,-16: + 1: 20292 + 0: 10 + -13,-16: + 1: 20292 + 0: 10 + -12,-15: + 1: 17732 + 0: 43690 + -13,-15: + 0: 43690 + 1: 17732 + -12,-14: + 1: 49060 + 0: 10 + -13,-14: + 1: 65444 + 0: 10 + -12,-13: + 1: 62 + -12,-17: + 0: 43690 + 1: 17732 + -11,-16: + 1: 8994 + 0: 3072 + -11,-15: + 1: 15922 + -11,-14: + 1: 62434 + -11,-17: + 1: 32434 + -10,-16: + 0: 61408 + -10,-14: + 1: 28672 + 0: 232 + -10,-15: + 0: 59616 + -10,-17: + 1: 34963 + -12,-18: + 1: 44800 + -13,-18: + 1: 44800 + -13,-17: + 0: 43690 + 1: 17732 + -11,-18: + 1: 8960 + -10,-18: + 1: 27776 + -9,-18: + 1: 1811 + 0,-21: + 0: 65485 + 1,-20: + 0: 60943 + 1,-19: + 0: 65534 + 1,-18: + 0: 65520 + 1,-17: + 0: 4095 + 1,-21: + 0: 65535 + 2,-20: + 0: 13063 + 1: 34952 + 2,-19: + 0: 13107 + 1: 34952 + 2,-18: + 0: 62256 + 1: 2184 + 2,-21: + 1: 35968 + 0: 273 + 3,-21: + 1: 65280 + 0,-24: + 0: 65520 + -1,-24: + 0: 65520 + 0,-23: + 0: 7631 + -1,-23: + 0: 52511 + 0,-22: + 3: 273 + 0: 9830 + -1,-22: + 3: 3276 + 0: 41779 + 0,-25: + 1: 36744 + 1,-24: + 0: 65520 + 1,-23: + 0: 65535 + 1,-22: + 0: 65535 + 1,-25: + 1: 36736 + 2,-24: + 0: 4368 + 1: 17408 + 2,-23: + 0: 4369 + 2,-22: + 0: 4369 + 3,-24: + 1: 35939 + 3,-25: + 1: 4096 + 4,-24: + 1: 4096 + -4,-24: + 1: 310 + -5,-24: + 1: 51200 + -4,-23: + 1: 61440 + -5,-23: + 1: 53558 + -4,-22: + 1: 65520 + -5,-22: + 1: 65521 + 0: 4 + -5,-21: + 1: 62463 + -4,-25: + 1: 51200 + -3,-23: + 1: 4352 + 0: 52428 + -3,-22: + 1: 4368 + 0: 52428 + -3,-24: + 1: 4096 + 0: 52416 + -3,-25: + 1: 36342 + -2,-24: + 0: 65520 + -2,-23: + 0: 32767 + -2,-22: + 0: 30583 + -2,-25: + 1: 36744 + -1,-25: + 1: 36744 + 4,-23: + 1: 35939 + 5,-23: + 1: 4096 + 0: 36044 + 5,-22: + 1: 36067 + 5,-24: + 1: 32 + 0: 51208 + 5,-25: + 0: 32768 + 1: 8804 + 6,-24: + 0: 47893 + 6,-23: + 0: 7099 + 6,-22: + 1: 4368 + 0: 52428 + 6,-25: + 0: 21847 + 7,-24: + 0: 47893 + 7,-23: + 0: 7099 + 7,-22: + 0: 32631 + 7,-25: + 0: 21853 + 8,-24: + 0: 29459 + 1: 128 + 8,-23: + 0: 14199 + 8,-22: + 0: 13104 + 1: 34952 + 8,-25: + 0: 12561 + 1: 35012 + 9,-21: + 1: 15 + 10,-21: + 1: 15 + 11,-21: + 1: 15 + 12,-21: + 1: 15 + 8,-29: + 0: 4096 + 1: 34816 + 7,-28: + 0: 65533 + 8,-28: + 0: 8192 + 1: 8 + 8,-27: + 0: 8738 + 8,-26: + 0: 4371 + 1: 19592 + 8,-30: + 1: 33 + 7,-30: + 1: 8 + 7,-29: + 0: 52735 + 5,-28: + 1: 2 + 0: 32768 + 5,-29: + 1: 8704 + 5,-27: + 1: 8192 + 0: 34952 + 5,-26: + 1: 17954 + 0: 8 + 6,-26: + 0: 21845 + 6,-29: + 0: 30446 + 6,-28: + 0: 61158 + 6,-27: + 0: 3264 + 7,-27: + 0: 1905 + 7,-26: + 0: 21845 + 5,-30: + 1: 128 + 6,-30: + 1: 3 + -6,-23: + 1: 27776 + -6,-22: + 1: 49346 + -15,-16: + 1: 23391 + 0: 1024 + -15,-15: + 1: 34959 + -15,-17: + 1: 34952 + -14,-16: + 1: 20292 + 0: 10 + -14,-15: + 1: 21588 + 0: 43690 + -15,-14: + 1: 2184 + -14,-14: + 1: 36772 + 0: 10 + -14,-17: + 0: 43690 + 1: 21588 + -15,-18: + 1: 34816 + -14,-18: + 1: 44800 + -15,9: + 1: 19532 + -15,10: + 1: 12 + -14,9: + 0: 3855 + 1: 41200 + -14,10: + 1: 15 + -13,9: + 0: 257 + 1: 17652 + -13,10: + 1: 62901 + 0: 64 + -12,9: + 1: 41200 + 0: 3855 + -12,10: + 1: 4383 + -11,9: + 0: 257 + 1: 18006 + -11,10: + 1: 7 + -4,13: + 0: 255 + 1: 28672 + -5,13: + 1: 61440 + -4,14: + 1: 3916 + -5,14: + 1: 3840 + -3,13: + 0: 221 + -3,14: + 1: 3855 + -2,13: + 0: 15 + 1: 11776 + -2,14: + 1: 1831 + 9,9: + 1: 34952 + 10,9: + 1: 16865 + 0: 3598 + 9,10: + 1: 8 + 10,10: + 1: 15 + 11,9: + 0: 771 + 1: 39160 + 11,10: + 1: 60011 + 0: 128 + 12,9: + 1: 16624 + 0: 3598 + 12,10: + 1: 12862 + 13,9: + 0: 771 + 1: 40124 + 13,10: + 1: 15 + -7,13: + 1: 58167 + -7,14: + 1: 3072 + -6,13: + 1: 64160 + -6,14: + 1: 3976 + 20,-23: + 1: 61440 + 19,-23: + 1: 32768 + 20,-22: + 1: 10970 + 0: 32 + 19,-22: + 1: 24456 + 21,-22: + 1: 24320 + 22,-22: + 1: 8960 + 18,-22: + 1: 11776 + -3,-26: + 1: 17408 + 0: 34944 + -2,-26: + 0: 61680 + -1,-26: + 0: 61680 + 0,-26: + 0: 61680 + 1,-26: + 0: 63728 + 2,-26: + 1: 4352 + 2,-25: + 1: 36211 + 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: 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: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding + - uid: 3 + components: + - type: MetaData + - type: Transform + pos: 5.5,-13.5 + parent: 2 +- proto: AcousticGuitarInstrument + entities: + - uid: 4 + components: + - type: Transform + pos: -58.55762,-61.482254 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: 1.5165133,30.497892 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: -1.4590547,-61.356407 + parent: 2 +- proto: AirAlarm + entities: + - uid: 7 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - type: DeviceList + devices: + - 17445 + - 17245 + - 657 + - 17446 + - 17260 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 17250 + - 17441 + - 599 + - uid: 9 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 622 + - 17305 + - 17497 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 13738 + - 13739 + - 13736 + - 13752 + - 13760 + - 13761 + - 620 + - 17474 + - 17283 + - uid: 11 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 17275 + - 17466 + - uid: 12 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 13827 + - 13826 + - 13640 + - 13659 + - 13650 + - 13647 + - 13649 + - 13648 + - 617 + - 17464 + - 17273 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 681 + - 13924 + - 13923 + - 13825 + - 13831 + - 13699 + - 13830 + - 13868 + - 13869 + - 17555 + - 17363 + - 17362 + - 17554 + - uid: 14 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 604 + - 13887 + - 13845 + - 13846 + - 13888 + - 17449 + - 17255 + - uid: 15 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 13676 + - 13657 + - 13652 + - 13658 + - 13682 + - 13651 + - 596 + - 17256 + - 17450 + - uid: 16 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13663 + - 13662 + - 13664 + - 13928 + - 13929 + - 13930 + - 17535 + - 17343 + - 13803 + - 13802 + - 13801 + - 13792 + - 13793 + - 638 + - 13813 + - 13812 + - 13811 + - 13776 + - 13777 + - 639 + - uid: 17 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 13651 + - 13682 + - 13658 + - 13848 + - 17263 + - 602 + - 17457 + - 17265 + - 13652 + - 13657 + - 13676 + - 597 + - 13656 + - 13655 + - 13654 + - 13641 + - 13653 + - 13642 + - 17438 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 13848 + - 17440 + - 17248 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 13886 + - 13859 + - 13856 + - 13855 + - 13854 + - 13853 + - 13852 + - 13851 + - 603 + - 17448 + - 17253 + - uid: 20 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - type: DeviceList + devices: + - 17261 + - 17454 + - 605 + - 13633 + - 13632 + - uid: 21 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 606 + - 13742 + - 13771 + - 13770 + - 17459 + - 17267 + - uid: 22 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 13742 + - 13771 + - 13770 + - 607 + - 13722 + - 13718 + - 13773 + - 13740 + - 13741 + - 13832 + - 13824 + - 17268 + - 17460 + - 17471 + - 17280 + - 17277 + - 17468 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 608 + - 13719 + - 17469 + - 17278 + - uid: 24 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 609 + - 17292 + - 17482 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 610 + - 17288 + - 17479 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 13819 + - 13820 + - 13821 + - 611 + - 13822 + - 13833 + - 13834 + - 17478 + - 17287 + - 17286 + - 17477 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 17290 + - 17481 + - 612 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 17480 + - 17291 + - 613 + - uid: 29 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13703 + - 13702 + - 13701 + - 13749 + - 13747 + - 13750 + - 615 + - 13819 + - 13820 + - 13821 + - 614 + - 13773 + - 13740 + - 13741 + - 17301 + - 17492 + - 17293 + - 17483 + - 17472 + - 17281 + - 13816 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 618 + - 13816 + - 17270 + - 17462 + - uid: 31 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13755 + - 13754 + - 13748 + - 13675 + - 13674 + - 619 + - 13822 + - 13833 + - 13834 + - 13735 + - 13734 + - 13737 + - 17300 + - 17490 + - 17484 + - 17294 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 621 + - 13738 + - 13739 + - 13736 + - 13735 + - 13734 + - 13737 + - 13808 + - 13809 + - 13810 + - 17476 + - 17285 + - uid: 33 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 13884 + - 13885 + - 623 + - 17502 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13884 + - 13885 + - 623 + - 17502 + - 17410 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 17504 + - 17313 + - 624 + - uid: 36 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 13804 + - 13805 + - 13806 + - 13807 + - 625 + - 13774 + - 17314 + - 17505 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 13776 + - 13777 + - 626 + - 17242 + - 17532 + - 17341 + - 17533 + - uid: 38 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13810 + - 13809 + - 13808 + - 13884 + - 13885 + - 13698 + - 13817 + - 13828 + - 13829 + - 13818 + - 13789 + - 13787 + - 627 + - 13813 + - 13812 + - 13811 + - 13805 + - 13804 + - 13806 + - 13807 + - 17509 + - 17318 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13698 + - 13700 + - 13823 + - 628 + - 13863 + - 17320 + - 17511 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13823 + - 13700 + - 13817 + - 13828 + - 13829 + - 629 + - 13818 + - 13789 + - 13787 + - 17317 + - 17507 + - 17316 + - 17508 + - uid: 41 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 13864 + - 13865 + - 13717 + - 13768 + - 13849 + - 13850 + - 630 + - 17510 + - 17319 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 13759 + - 13716 + - 13721 + - 13720 + - 631 + - 17518 + - 17325 + - uid: 43 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 632 + - 17519 + - 17329 + - uid: 44 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13759 + - 13716 + - 13849 + - 13850 + - 633 + - 13757 + - 13715 + - 13758 + - 17520 + - 17328 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 13757 + - 13715 + - 13758 + - 636 + - 17334 + - 17523 + - 17333 + - 17524 + - 17332 + - 17525 + - 17330 + - 17522 + - 17331 + - 17521 + - uid: 46 + components: + - type: Transform + pos: 42.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 17338 + - 637 + - 17530 + - 17529 + - 17337 + - 17528 + - 17339 + - 17527 + - 17340 + - 17526 + - 17335 + - uid: 47 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13803 + - 13802 + - 13801 + - 13792 + - 13793 + - 638 + - 13813 + - 13812 + - 13811 + - 13776 + - 13777 + - 639 + - 17342 + - 17534 + - 17343 + - 17535 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 13803 + - 13802 + - 13801 + - 640 + - 17252 + - 17444 + - 17295 + - 17485 + - 13663 + - 13662 + - 13664 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 641 + - 17536 + - 17344 + - 13665 + - 13666 + - 13678 + - 13679 + - 13667 + - 13668 + - 13670 + - 13669 + - uid: 50 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 17537 + - 17345 + - 642 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 17233 + - 17430 + - 643 + - 13671 + - 13672 + - 13680 + - 13681 + - 13669 + - 13670 + - 13667 + - 13668 + - uid: 52 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 644 + - 13793 + - 13794 + - 17541 + - 17348 + - uid: 53 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 13795 + - 13796 + - 13797 + - 13798 + - 13799 + - 13800 + - 645 + - 13714 + - 13713 + - 13724 + - 17355 + - 17548 + - 17354 + - 17547 + - 17544 + - 17349 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 13800 + - 13799 + - 13798 + - 646 + - 13792 + - 17346 + - 17540 + - uid: 55 + components: + - type: Transform + pos: 79.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 17347 + - 17539 + - 647 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 17546 + - 17353 + - 648 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 649 + - uid: 58 + components: + - type: Transform + pos: 73.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 13728 + - 13729 + - 13730 + - 13731 + - 13732 + - 13861 + - 650 + - 17552 + - 17359 + - uid: 59 + components: + - type: Transform + pos: 62.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 17550 + - 17357 + - 17551 + - 17358 + - 653 + - 652 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 654 + - 17351 + - 17350 + - 17542 + - 17543 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-61.5 + parent: 2 + - type: DeviceList + devices: + - 13845 + - 13846 + - 13847 + - 13889 + - 600 + - 17439 + - 17246 + - uid: 62 + components: + - type: Transform + pos: 73.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 13710 + - 13711 + - 13712 + - 594 + - 17356 + - 17549 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 17456 + - 17264 + - 655 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 656 + - 13827 + - 17467 + - 17276 + - uid: 65 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 17271 + - 17272 + - 17461 + - uid: 66 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 658 + - 17561 + - 17370 + - 17369 + - 17562 + - 17422 + - 17426 + - uid: 67 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13744 + - 13769 + - 13772 + - 13703 + - 13702 + - 13701 + - 659 + - 17568 + - 17376 + - uid: 68 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 17375 + - 17567 + - 660 + - uid: 69 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13744 + - 13769 + - 13772 + - 661 + - 13746 + - 13751 + - 13745 + - 17566 + - 17374 + - uid: 70 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 17563 + - 662 + - 17371 + - uid: 71 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 664 + - 17303 + - 17494 + - 17302 + - 663 + - 17493 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 665 + - 13749 + - 13747 + - 13750 + - 13755 + - 13754 + - 13748 + - 13767 + - 13786 + - 13783 + - 666 + - 17443 + - 17251 + - 17571 + - 17378 + - 17570 + - 17379 + - uid: 73 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 13767 + - 13786 + - 13783 + - 13780 + - 13784 + - 667 + - 668 + - 17384 + - 17576 + - 17578 + - 17385 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 17241 + - 17577 + - 669 + - uid: 75 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 17583 + - 17392 + - 17391 + - 17584 + - 17390 + - 17585 + - 17588 + - 17395 + - 670 + - 17396 + - 17589 + - 17394 + - 13766 + - 13756 + - 13753 + - 17387 + - 17581 + - uid: 76 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 17592 + - 671 + - 17400 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 672 + - 13766 + - 13763 + - 13764 + - 17398 + - 17590 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 13763 + - 13764 + - 673 + - 13862 + - 17397 + - 17591 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 17593 + - 17401 + - 674 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 17594 + - 17399 + - 675 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 17402 + - 17595 + - 676 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 677 + - 17573 + - 17382 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 678 + - 17572 + - 17383 + - uid: 84 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 13825 + - 13831 + - 13699 + - 13830 + - 13746 + - 13751 + - 13745 + - 680 + - 679 + - 17366 + - 17557 + - 17558 + - 17365 + - 13788 + - uid: 85 + components: + - type: Transform + pos: -74.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 682 + - 13869 + - 13868 + - 17361 + - 17553 + - uid: 86 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 683 + - 13867 + - 13866 + - 17360 + - 17442 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 684 + - 17368 + - 17560 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 685 + - 17327 + - 17517 + - uid: 89 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -14.5,-67.5 + parent: 2 + - type: DeviceList + devices: + - 13708 + - 13709 + - 13706 + - 595 + - 17603 + - 17421 + - 13707 + - 13683 + - 13637 + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 17429 + - 689 + - 17411 + - 13621 + - 13622 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 690 + - 17412 + - 17596 + - 17597 + - 17413 + - 13623 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 691 + - 17414 + - 17587 + - 13627 + - 13626 + - 13624 + - 13625 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-82.5 + parent: 2 + - type: DeviceList + devices: + - 692 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-72.5 + parent: 2 + - type: DeviceList + devices: + - 13629 + - 13630 + - 694 + - 17416 + - 17599 + - uid: 96 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 2 + - type: DeviceList + devices: + - 693 + - 17598 + - 17415 + - 13629 + - 13630 + - 13631 + - uid: 97 + components: + - type: Transform + pos: -0.5,-78.5 + parent: 2 + - type: DeviceList + devices: + - 17602 + - 17418 + - 17419 + - 17601 + - 695 + - 13620 + - 13619 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-72.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-72.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: -2.5,-71.5 + parent: 2 + - type: DeviceList + devices: + - 17606 + - 17424 + - 17607 + - 17425 + - 13618 + - 13617 + - 13635 + - 13636 + - 698 + - 17417 + - 17600 + - uid: 101 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - type: DeviceList + devices: + - 13708 + - 13709 + - 13706 + - 17604 + - 688 + - 17423 + - 17605 + - 13636 + - 13635 + - 13638 + - 13639 + - 13847 + - 13889 +- proto: AirCanister + entities: + - uid: 102 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 36.5,-69.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: -65.5,17.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 86.5,-47.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 86.5,-48.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 69.5,-59.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 22.5,-89.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 24.5,-88.5 + parent: 2 +- proto: Airlock + entities: + - uid: 124 + components: + - type: MetaData + name: Toilet + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 125 + components: + - type: MetaData + name: Toilet + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 126 + components: + - type: MetaData + name: Toilet + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 127 + components: + - type: MetaData + name: Bathroom + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 129 + components: + - type: MetaData + name: Bathroom + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 130 + components: + - type: MetaData + name: Dorm 6 + - type: Transform + pos: 16.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22420 + - uid: 131 + components: + - type: MetaData + name: Dorm 5 + - type: Transform + pos: 12.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22419 + - uid: 132 + components: + - type: MetaData + name: Dorm 4 + - type: Transform + pos: 7.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22418 + - uid: 133 + components: + - type: MetaData + name: Dorm 3 + - type: Transform + pos: 7.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22417 + - uid: 134 + components: + - type: MetaData + name: Dorm 2 + - type: Transform + pos: 7.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22416 + - uid: 135 + components: + - type: MetaData + name: Dorm 1 + - type: Transform + pos: 7.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22415 + - uid: 136 + components: + - type: MetaData + name: Bathroom + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 138 + components: + - type: MetaData + name: Lockers Toilets + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 139 + components: + - type: MetaData + name: Unit 1 + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 140 + components: + - type: MetaData + name: Unit 2 + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 141 + components: + - type: MetaData + name: Unit 3 + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 142 + components: + - type: MetaData + name: Unit 4 + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 44.5,-64.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 144 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 +- proto: AirlockAssemblyEngineeringGlass + entities: + - uid: 146 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 2 +- proto: AirlockAssemblyMaintenance + entities: + - uid: 147 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 +- proto: AirlockAssemblyVirologyGlass + entities: + - uid: 148 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 149 + components: + - type: MetaData + name: Atmospherics Lockers + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 150 + components: + - type: MetaData + name: Atmospherics Lockers + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-66.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-66.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 153 + components: + - type: Transform + pos: 83.5,-47.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 + - uid: 159 + components: + - type: MetaData + name: Atmospherics + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 160 + components: + - type: MetaData + name: Atmospherics + - type: Transform + pos: 8.5,-48.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 161 + components: + - type: MetaData + name: Bartender's Room + - type: Transform + pos: 30.5,-2.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 162 + components: + - type: MetaData + name: Captain's Room + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 163 + components: + - type: MetaData + name: Captain's Office + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 164 + components: + - type: MetaData + name: Captain's Bathroom + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 165 + components: + - type: MetaData + name: Captain Chunnel + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 166 + components: + - type: MetaData + name: Captain Chunnel + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 167 + components: + - type: MetaData + name: Show Room + - type: Transform + pos: 13.5,-25.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 168 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 169 + components: + - type: MetaData + name: Delivery Office Maint + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 170 + components: + - type: MetaData + name: Cargo Office + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 171 + components: + - type: MetaData + name: Cargo Office + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 172 + components: + - type: MetaData + name: Salvage + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 173 + components: + - type: MetaData + name: Cargo Bay + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 174 + components: + - type: MetaData + name: Cargo Bay + - type: Transform + pos: -29.5,-20.5 + parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 175 + components: + - type: Transform + pos: 67.5,2.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 176 + components: + - type: MetaData + name: Chaplain Crematorium + - type: Transform + pos: 62.5,0.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 177 + components: + - type: MetaData + name: Chemistry + - type: Transform + pos: 19.5,-23.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 178 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 180 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 182 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 183 + components: + - type: MetaData + name: Bridge + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 184 + components: + - type: MetaData + name: Bridge + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 185 + components: + - type: MetaData + name: Bridge + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 186 + components: + - type: MetaData + name: Bridge + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 189 + components: + - type: MetaData + name: Briefing + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 28.5,-94.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 28.5,-82.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-85.5 + parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 195 + components: + - type: MetaData + name: Detective's Office + - type: Transform + pos: -4.5,18.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 196 + components: + - type: MetaData + name: Engineering Desk + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 199 + components: + - type: MetaData + name: Server Room + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 200 + components: + - type: MetaData + name: Server Room + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 201 + components: + - type: MetaData + name: Engineering Foyer + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 202 + components: + - type: MetaData + name: Engineering Throughway + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 203 + components: + - type: MetaData + name: Engineering Toolroom + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 205 + components: + - type: MetaData + name: Engineering Toolroom + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -0.5,-82.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 210 + - type: DeviceLinkSource + linkedPorts: + 210: + - DoorStatus: DoorBolt + - uid: 209 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 208 + - type: DeviceLinkSource + linkedPorts: + 208: + - DoorStatus: DoorBolt + - uid: 211 + components: + - type: Transform + pos: -18.5,-74.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -18.5,-73.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 0.5,-71.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: -1.5,-71.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 218 + components: + - type: MetaData + name: Shuttle Construction + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 219 + components: + - type: MetaData + name: Starboard Bow Service Power + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 221 + components: + - type: MetaData + name: Science Power + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 224 + components: + - type: MetaData + name: Port Bow Service Power + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 225 + components: + - type: MetaData + name: 'Starboard Bow Solars ' + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 226 + components: + - type: MetaData + name: Port Bow Solars + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 + - uid: 228 + components: + - type: MetaData + name: Cargo Power + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 229 + components: + - type: MetaData + name: Port Quarter Maintenance Power + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 230 + components: + - type: MetaData + name: Port Quarter Solars + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 231 + components: + - type: MetaData + name: 'Technical Storage ' + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 233 + components: + - type: MetaData + name: Telecomms + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 234 + components: + - type: MetaData + name: Medbay Power + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - uid: 235 + components: + - type: MetaData + name: Gravity Gen + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 236 + components: + - type: MetaData + name: Starboard Quarter Solars + - type: Transform + pos: 81.5,-62.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 239 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 240 + - type: DeviceLinkSource + linkedPorts: + 240: + - DoorStatus: DoorBolt + - uid: 240 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 239 + - type: DeviceLinkSource + linkedPorts: + 239: + - DoorStatus: DoorBolt +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 241 + components: + - type: Transform + pos: -9.5,-79.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 242 + - type: DeviceLinkSource + linkedPorts: + 242: + - DoorStatus: DoorBolt + - uid: 242 + components: + - type: Transform + pos: -11.5,-79.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 241 + - type: DeviceLinkSource + linkedPorts: + 241: + - DoorStatus: DoorBolt + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-79.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 244 + - type: DeviceLinkSource + linkedPorts: + 244: + - DoorStatus: DoorBolt + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-79.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 243 + - type: DeviceLinkSource + linkedPorts: + 243: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 245 + components: + - type: Transform + pos: 91.5,-29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 377 + - type: DeviceLinkSource + linkedPorts: + 377: + - DoorStatus: Close + - uid: 246 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 83.5,-13.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 83.5,-11.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 83.5,-5.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 83.5,-3.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 91.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 378 + - type: DeviceLinkSource + linkedPorts: + 378: + - DoorStatus: Close +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-74.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 5 + links: + - 256 + - 255 + - 254 + - 258 + - 257 + - type: DeviceLinkSource + linkedPorts: + 257: + - DoorStatus: DoorBolt + 256: + - DoorStatus: DoorBolt + 255: + - DoorStatus: DoorBolt + 254: + - DoorStatus: DoorBolt + 258: + - DoorStatus: DoorBolt + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-76.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 256 + - 257 + - 255 + - 253 + - type: DeviceLinkSource + linkedPorts: + 256: + - DoorStatus: DoorBolt + 257: + - DoorStatus: DoorBolt + 253: + - DoorStatus: DoorBolt + 255: + - DoorStatus: DoorBolt + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-74.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 5 + links: + - 256 + - 257 + - 254 + - 258 + - 253 + - type: DeviceLinkSource + linkedPorts: + 256: + - DoorStatus: DoorBolt + 257: + - DoorStatus: DoorBolt + 253: + - DoorStatus: DoorBolt + 258: + - DoorStatus: DoorBolt + 254: + - DoorStatus: DoorBolt + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-72.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 255 + - 254 + - 258 + - 253 + - type: DeviceLinkSource + linkedPorts: + 254: + - DoorStatus: DoorBolt + 258: + - DoorStatus: DoorBolt + 255: + - DoorStatus: DoorBolt + 253: + - DoorStatus: DoorBolt + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-72.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 255 + - 254 + - 258 + - 253 + - type: DeviceLinkSource + linkedPorts: + 258: + - DoorStatus: DoorBolt + 254: + - DoorStatus: DoorBolt + 255: + - DoorStatus: DoorBolt + 253: + - DoorStatus: DoorBolt + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-76.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 256 + - 257 + - 255 + - 253 + - type: DeviceLinkSource + linkedPorts: + 257: + - DoorStatus: DoorBolt + 256: + - DoorStatus: DoorBolt + 255: + - DoorStatus: DoorBolt + 253: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 259 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 260 + - type: DeviceLinkSource + linkedPorts: + 260: + - DoorStatus: DoorBolt + - uid: 260 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 259 + - type: DeviceLinkSource + linkedPorts: + 259: + - DoorStatus: DoorBolt + - uid: 261 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 263 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 264 + - type: DeviceLinkSource + linkedPorts: + 264: + - DoorStatus: DoorBolt + - uid: 264 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 263 + - type: DeviceLinkSource + linkedPorts: + 263: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 265 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 266 + - type: DeviceLinkSource + linkedPorts: + 266: + - DoorStatus: DoorBolt + - uid: 266 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 265 + - type: DeviceLinkSource + linkedPorts: + 265: + - DoorStatus: DoorBolt + - uid: 267 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 376 + - type: DeviceLinkSource + linkedPorts: + 376: + - DoorStatus: Close + - uid: 268 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 300 + - type: DeviceLinkSource + linkedPorts: + 300: + - DoorStatus: DoorBolt + - uid: 269 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 297 + - type: DeviceLinkSource + linkedPorts: + 297: + - DoorStatus: DoorBolt + - uid: 270 + components: + - type: Transform + pos: -77.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 309 + - type: DeviceLinkSource + linkedPorts: + 309: + - DoorStatus: Close + - uid: 271 + components: + - type: Transform + pos: -68.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 311 + - type: DeviceLinkSource + linkedPorts: + 311: + - DoorStatus: Close + - uid: 272 + components: + - type: Transform + pos: -75.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 310 + - type: DeviceLinkSource + linkedPorts: + 310: + - DoorStatus: Close + - uid: 273 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 274 + - type: DeviceLinkSource + linkedPorts: + 274: + - DoorStatus: DoorBolt + - uid: 274 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 273 + - type: DeviceLinkSource + linkedPorts: + 273: + - DoorStatus: DoorBolt + - uid: 275 + components: + - type: Transform + pos: 49.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 301 + - type: DeviceLinkSource + linkedPorts: + 301: + - DoorStatus: DoorBolt + - uid: 276 + components: + - type: Transform + pos: 62.5,-71.5 + parent: 2 + - type: DeviceLinkSink + links: + - 304 + - type: DeviceLinkSource + linkedPorts: + 304: + - DoorStatus: DoorBolt + - uid: 277 + components: + - type: Transform + pos: 87.5,-57.5 + parent: 2 + - type: DeviceLinkSink + links: + - 305 + - type: DeviceLinkSource + linkedPorts: + 305: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-2.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-2.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-13.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-11.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-5.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-3.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-9.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-44.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-45.5 + parent: 2 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-43.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 312 + - type: DeviceLinkSource + linkedPorts: + 312: + - DoorStatus: Close + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 308 + - type: DeviceLinkSource + linkedPorts: + 308: + - DoorStatus: Close + - uid: 295 + components: + - type: Transform + pos: 82.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 306 + - type: DeviceLinkSource + linkedPorts: + 306: + - DoorStatus: DoorBolt + - uid: 296 + components: + - type: Transform + pos: 30.5,-79.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 269 + - type: DeviceLinkSource + linkedPorts: + 269: + - DoorStatus: DoorBolt + - uid: 298 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 299 + - type: DeviceLinkSource + linkedPorts: + 299: + - DoorStatus: DoorBolt + - uid: 299 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 298 + - type: DeviceLinkSource + linkedPorts: + 298: + - DoorStatus: DoorBolt + - uid: 300 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 268 + - type: DeviceLinkSource + linkedPorts: + 268: + - DoorStatus: DoorBolt + - uid: 301 + components: + - type: Transform + pos: 49.5,-68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 275 + - type: DeviceLinkSource + linkedPorts: + 275: + - DoorStatus: DoorBolt + - uid: 302 + components: + - type: Transform + pos: 81.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 303 + - type: DeviceLinkSource + linkedPorts: + 303: + - DoorStatus: DoorBolt + - uid: 303 + components: + - type: Transform + pos: 81.5,-68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 302 + - type: DeviceLinkSource + linkedPorts: + 302: + - DoorStatus: DoorBolt + - uid: 304 + components: + - type: Transform + pos: 61.5,-72.5 + parent: 2 + - type: DeviceLinkSink + links: + - 276 + - type: DeviceLinkSource + linkedPorts: + 276: + - DoorStatus: DoorBolt + - uid: 305 + components: + - type: Transform + pos: 89.5,-57.5 + parent: 2 + - type: DeviceLinkSink + links: + - 277 + - type: DeviceLinkSource + linkedPorts: + 277: + - DoorStatus: DoorBolt + - uid: 306 + components: + - type: Transform + pos: 80.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 295 + - type: DeviceLinkSource + linkedPorts: + 295: + - DoorStatus: DoorBolt + - uid: 307 + components: + - type: Transform + pos: 33.5,-79.5 + parent: 2 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 294: + - DoorStatus: Close + - type: DeviceLinkSink + links: + - 294 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 270: + - DoorStatus: Close + - type: DeviceLinkSink + links: + - 270 + - uid: 310 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 272: + - DoorStatus: Close + - type: DeviceLinkSink + links: + - 272 + - uid: 311 + components: + - type: Transform + pos: -68.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 271: + - DoorStatus: Close + - type: DeviceLinkSink + links: + - 271 + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 293: + - DoorStatus: Close + - type: DeviceLinkSink + links: + - 293 +- proto: AirlockFreezer + entities: + - uid: 313 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 314 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 315 + components: + - type: MetaData + name: Freezer + - type: Transform + pos: 36.5,-3.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 318 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 319 + components: + - type: MetaData + name: Dorms + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - type: Door + secondsUntilStateChange: -126152.336 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 322 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 326 + components: + - type: MetaData + name: Dorms + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 330 + components: + - type: MetaData + name: Bar + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 335 + components: + - type: MetaData + name: Courtroom + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 337 + components: + - type: MetaData + name: Library + - type: Transform + pos: 54.5,-8.5 + parent: 2 + - uid: 338 + components: + - type: MetaData + name: Library + - type: Transform + pos: 54.5,-9.5 + parent: 2 + - uid: 339 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 64.5,-8.5 + parent: 2 + - uid: 340 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 341 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 74.5,-8.5 + parent: 2 + - uid: 342 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 74.5,-9.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 344 + components: + - type: MetaData + name: Departure + - type: Transform + pos: 74.5,-12.5 + parent: 2 + - uid: 345 + components: + - type: MetaData + name: Departure + - type: Transform + pos: 74.5,-13.5 + parent: 2 + - uid: 346 + components: + - type: MetaData + name: Departure + - type: Transform + pos: 74.5,-14.5 + parent: 2 + - uid: 347 + components: + - type: MetaData + name: Primary Tool Storage + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 348 + components: + - type: MetaData + name: Primary Tool Storage + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 350 + components: + - type: MetaData + name: Art Storage + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 351 + components: + - type: MetaData + name: Auxiliary Tool Storage + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 352 + components: + - type: MetaData + name: Closets Room + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 353 + components: + - type: MetaData + name: Closets Room + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 354 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 355 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 356 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 361 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 367 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 368 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 369 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 370 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 371 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 372 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 69.5,-0.5 + parent: 2 + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,21.5 + parent: 2 + - type: Door + changeAirtight: False + state: Open + - type: DeviceLinkSource + linkedPorts: + 267: + - DoorStatus: Close + lastSignals: + DoorStatus: False + DockStatus: True + - type: Physics + canCollide: False + - type: DeviceLinkSink + links: + - 267 + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 245: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 245 + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 252: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 252 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 379 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 380 + components: + - type: MetaData + name: Head of Personnel + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 381 + components: + - type: MetaData + name: Head of Personnel + - type: Transform + pos: -7.5,-28.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 382 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 383 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 384 + components: + - type: MetaData + name: 'Hydroponics ' + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 385 + components: + - type: MetaData + name: 'Hydroponics ' + - type: Transform + pos: 43.5,-11.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 386 + components: + - type: MetaData + name: Janitor Closet + - type: Transform + pos: 5.5,-32.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 387 + components: + - type: MetaData + name: Kitchen + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 388 + components: + - type: MetaData + name: Kitchen + - type: Transform + pos: 32.5,-9.5 + parent: 2 +- proto: AirlockMailGlassLocked + entities: + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 391 + components: + - type: MetaData + name: Unit 3 + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 392 + components: + - type: MetaData + name: Unit 2 + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 393 + components: + - type: MetaData + name: Unit 1 + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 50.5,-62.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 79.5,-59.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 83.5,-52.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 83.5,-57.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 400 + components: + - type: MetaData + name: Atmos Maint + - type: Transform + pos: 13.5,-39.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 401 + components: + - type: MetaData + name: Bartender's Room Maintenance + - type: Transform + pos: 30.5,2.5 + parent: 2 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 402 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 404 + components: + - type: MetaData + name: 'Delivery Office Maintenance ' + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 405 + components: + - type: MetaData + name: Warehouse Maintenance + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 406 + components: + - type: MetaData + name: Cargo Bay Maintenance + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 407 + components: + - type: MetaData + name: Salvage Maintenance + - type: Transform + pos: -22.5,-33.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 408 + components: + - type: MetaData + name: Crematorium Maintenance + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 409 + components: + - type: MetaData + name: Chapel's Office + - type: Transform + pos: 66.5,-1.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 410 + components: + - type: MetaData + name: Command Maint + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 412 + components: + - type: MetaData + name: Detective's Office Maintenance Hatch + - type: Transform + pos: -7.5,13.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 413 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 416 + components: + - type: MetaData + name: EVA Maintenance + - type: Transform + pos: -15.5,8.5 + parent: 2 +- proto: AirlockMaintGlassLocked + entities: + - uid: 417 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -31.5,-71.5 + parent: 2 + - uid: 423 + components: + - type: MetaData + name: the church of the tide + - type: Transform + pos: 43.5,-69.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 424 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 425 + components: + - type: MetaData + name: Jani Maints + - type: Transform + pos: 7.5,-37.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 426 + components: + - type: MetaData + name: Freezer Maintenance + - type: Transform + pos: 36.5,1.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 427 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 25.5,-99.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 31.5,-99.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 51.5,-46.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 56.5,-46.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 436 + components: + - type: MetaData + name: Ghetto Kitchen + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 437 + components: + - type: MetaData + name: Incinerator + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 24.5,-94.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 32.5,-94.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 68.5,5.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 450 + components: + - type: MetaData + name: Primary Tool Storage Maintenance + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -63.5,11.5 + parent: 2 + - uid: 457 + components: + - type: MetaData + name: Ghetto Surgery + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 458 + components: + - type: MetaData + name: Ghetto Surgery + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 463 + components: + - type: MetaData + name: Incinerator + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 464 + components: + - type: MetaData + name: Construction Area + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 467 + components: + - type: MetaData + name: Bungle Town + - type: Transform + pos: 56.5,-52.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 2 + - uid: 471 + components: + - type: MetaData + name: Ghetto Port + - type: Transform + pos: 87.5,-23.5 + parent: 2 + - uid: 472 + components: + - type: MetaData + name: Ghetto Port + - type: Transform + pos: 87.5,-28.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 475 + components: + - type: MetaData + name: Courtroom Maintenance + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 479 + components: + - type: MetaData + name: Surgery + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 47.5,-23.5 + parent: 2 + - uid: 481 + components: + - type: MetaData + name: Psych maint hatch + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 482 + components: + - type: MetaData + name: Medbay Maintenance + - type: Transform + pos: 42.5,-42.5 + parent: 2 + - uid: 483 + components: + - type: MetaData + name: Medbay Maintenance + - type: Transform + pos: 42.5,-49.5 + parent: 2 + - uid: 484 + components: + - type: MetaData + name: 'Medbay Maintenance ' + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 485 + components: + - type: MetaData + name: 'Morgue Maintenance ' + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-47.5 + parent: 2 +- proto: AirlockMaintReporterLocked + entities: + - uid: 487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 488 + components: + - type: MetaData + name: Artifact Room Maintenance + - type: Transform + pos: 83.5,-23.5 + parent: 2 + - uid: 489 + components: + - type: MetaData + name: Atmos Sci Test Hall + - type: Transform + pos: 50.5,-40.5 + parent: 2 + - uid: 490 + components: + - type: MetaData + name: Testing Lab Maintenance + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - uid: 491 + components: + - type: MetaData + name: Mech Bay Maintenance + - type: Transform + pos: 50.5,-16.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 492 + components: + - type: MetaData + name: Security Checkpoint Maintenance + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 493 + components: + - type: MetaData + name: Security Maintenance + - type: Transform + pos: 18.5,30.5 + parent: 2 +- proto: AirlockMantisGlassLocked + entities: + - uid: 494 + components: + - type: MetaData + name: Mantis + - type: Transform + pos: 61.5,-28.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 495 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19302 + - uid: 500 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19302 + - uid: 501 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + - type: DeviceLinkSink + links: + - 22410 + - uid: 505 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-47.5 + parent: 2 + - uid: 507 + components: + - type: MetaData + name: Recovery Room + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 508 + components: + - type: MetaData + name: Cryonics + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 509 + components: + - type: MetaData + name: Cryonics + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 510 + components: + - type: MetaData + name: Cryonics + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 513 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 516 + components: + - type: MetaData + name: Psych office + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 518 + components: + - type: MetaData + name: Surgery Observation + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 521 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 2 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 522 + components: + - type: Transform + pos: 50.5,-35.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 48.5,-35.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 524 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 +- proto: AirlockReporterGlassLocked + entities: + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 527 + components: + - type: MetaData + name: Mystagogue + - type: Transform + pos: 68.5,-36.5 + parent: 2 + - uid: 528 + components: + - type: MetaData + name: Server Room + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 530 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 531 + components: + - type: MetaData + name: Testing Lab + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 534 + components: + - type: MetaData + name: Toxins Lab + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 537 + components: + - type: MetaData + name: Robotics + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 538 + components: + - type: MetaData + name: Sci West Hall + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 539 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 540 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: 73.5,-40.5 + parent: 2 + - uid: 541 + components: + - type: MetaData + name: Toxins Launch + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 542 + components: + - type: MetaData + name: Toxins Launch + - type: Transform + pos: 83.5,-36.5 + parent: 2 + - uid: 543 + components: + - type: MetaData + name: Artifact Research + - type: Transform + pos: 75.5,-23.5 + parent: 2 + - uid: 544 + components: + - type: MetaData + name: Artifact Room + - type: Transform + pos: 82.5,-27.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 2 + - uid: 546 + components: + - type: MetaData + name: Giga Break Room + - type: Transform + pos: 54.5,-38.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 548 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 64.5,-35.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 63.5,-38.5 + parent: 2 + - uid: 551 + components: + - type: MetaData + name: Research Division Access + - type: Transform + pos: 66.5,-16.5 + parent: 2 + - uid: 552 + components: + - type: MetaData + name: Research Division Access + - type: Transform + pos: 66.5,-20.5 + parent: 2 +- proto: AirlockSecurityGlass + entities: + - uid: 553 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 554 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 555 + components: + - type: MetaData + name: Perma Brig + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 557 + components: + - type: MetaData + name: Security EVA + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 558 + components: + - type: MetaData + name: Equipment Room + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 560 + components: + - type: MetaData + name: Evidence Storage + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 561 + components: + - type: MetaData + name: Brig Desk + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 562 + components: + - type: MetaData + name: Security Office + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 563 + components: + - type: MetaData + name: Permanent Detention + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 564 + components: + - type: MetaData + name: Permanent Detention + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - uid: 568 + components: + - type: MetaData + name: Firing Range + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 569 + components: + - type: MetaData + name: Security EVA + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 570 + components: + - type: MetaData + name: Holding Area + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 572 + components: + - type: MetaData + name: Security Checkpoint + - type: Transform + pos: -60.5,2.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 574 + components: + - type: MetaData + name: Security Office + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,28.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,33.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 577 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 582 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 584 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 585 + components: + - type: MetaData + name: Private Study + - type: Transform + pos: 62.5,-4.5 + parent: 2 +- proto: AirlockShuttle + entities: + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-78.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 587 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 588 + components: + - type: MetaData + name: Theatre + - type: Transform + pos: 21.5,1.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 589 + components: + - type: Transform + pos: 47.5,-57.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 45.5,-54.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 43.5,-57.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 593 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 594 + components: + - type: Transform + pos: 69.5,-52.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 596 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 78.5,-12.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 80.5,-24.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 72.5,-40.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 54.5,-39.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -1.5,-64.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -57.5,1.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -73.5,9.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-85.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 96 + - uid: 694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 95 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-74.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-74.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -0.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 +- proto: AltarConvertMaint + entities: + - uid: 699 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 700 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 +- proto: AmeController + entities: + - uid: 701 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 +- proto: AmeJar + entities: + - uid: 702 + components: + - type: Transform + pos: -16.347782,-75.49478 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 703 + components: + - type: Transform + pos: -16.699345,-75.52083 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 704 + components: + - type: Transform + pos: -13.681478,-61.41752 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -13.290853,-61.41752 + parent: 2 +- proto: AmePartFlatpack + entities: + - uid: 706 + components: + - type: Transform + pos: -16.492712,-72.483696 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -16.492712,-72.483696 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -16.492712,-72.483696 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -16.492712,-72.483696 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -16.492712,-72.483696 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -16.492712,-72.483696 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 712 + components: + - type: Transform + pos: 73.60628,-49.3431 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 73.76253,-49.43685 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 74.46565,-49.3431 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 74.59065,-49.452477 + parent: 2 +- proto: AntiPsychicKnife + entities: + - uid: 717 + components: + - type: Transform + pos: 59.48639,-29.421848 + parent: 2 +- proto: APCBasic + entities: + - uid: 718 + components: + - type: MetaData + name: Medical Storage APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-111.5 + parent: 2 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-100.5 + parent: 2 + - uid: 721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-92.5 + parent: 2 + - uid: 722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-92.5 + parent: 2 + - uid: 723 + components: + - type: MetaData + name: Janitor Closet APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 2 + - uid: 724 + components: + - type: MetaData + name: Maint Arrivals APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,14.5 + parent: 2 + - uid: 725 + components: + - type: MetaData + name: Cargo Bay APC + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 85 + supplyRampPosition: 53.91901 + - uid: 726 + components: + - type: MetaData + name: South Maint APC + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 727 + components: + - type: MetaData + name: Secure Storage APC + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 728 + components: + - type: MetaData + name: Engineering West APC + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 729 + components: + - type: MetaData + name: TEG APC + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 730 + components: + - type: MetaData + name: Engineering Locker RoomsAPC + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-60.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-86.5 + parent: 2 + - uid: 732 + components: + - type: MetaData + name: Captain's Office APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 733 + components: + - type: MetaData + name: Bridge APC + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 734 + components: + - type: MetaData + name: Conf Room APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - uid: 735 + components: + - type: MetaData + name: Captain's Bedroom APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - uid: 736 + components: + - type: MetaData + name: Hibernation APC + - type: Transform + pos: 25.5,20.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + currentReceiving: 10.019571 + currentSupply: 10 + - uid: 737 + components: + - type: MetaData + name: Telebay APC + - type: Transform + pos: 39.5,14.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 1.347667 + - uid: 738 + components: + - type: MetaData + name: Dorms APC + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 2 + - uid: 739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 740 + components: + - type: MetaData + name: Bathroom APC + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 741 + components: + - type: MetaData + name: Port Quarter Maintenance APC + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 55 + supplyRampPosition: 2.6408517 + - uid: 742 + components: + - type: MetaData + name: Kitchen APC + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 743 + components: + - type: MetaData + name: Bartender's Room APC + - type: Transform + pos: 31.5,2.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 20 + supplyRampPosition: 0.010999783 + - uid: 744 + components: + - type: MetaData + name: Bar APC + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 2.735612 + - uid: 745 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 746 + components: + - type: MetaData + name: Courtroom APC + - type: Transform + pos: 15.5,29.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 15 + currentReceiving: 15.000059 + currentSupply: 15 + supplyRampPosition: -5.9127808E-05 + - uid: 747 + components: + - type: MetaData + name: AI Upload APC + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + - uid: 748 + components: + - type: MetaData + name: Grav Gen APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,30.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,34.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,22.5 + parent: 2 + - uid: 755 + components: + - type: MetaData + name: Brig APC + - type: Transform + pos: -3.5,29.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 120 + currentReceiving: 120.00047 + currentSupply: 120 + supplyRampPosition: -0.00047302246 + - uid: 756 + components: + - type: MetaData + name: Brig Control APC + - type: Transform + pos: -1.5,34.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - uid: 757 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + - uid: 762 + components: + - type: MetaData + name: Chaplain Room APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 763 + components: + - type: MetaData + name: Library APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 2 + - uid: 764 + components: + - type: MetaData + name: Hydroponics APC + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 65 + supplyRampPosition: 17.574497 + - uid: 765 + components: + - type: MetaData + name: Chapel APC + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 45 + supplyRampPosition: 2.4463015 + - uid: 766 + components: + - type: MetaData + name: Departures APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-10.5 + parent: 2 + - uid: 767 + components: + - type: MetaData + name: Ghetto Morgue APC + - type: Transform + pos: 66.5,20.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + - uid: 768 + components: + - type: MetaData + name: EVA Storage APC + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + - uid: 770 + components: + - type: MetaData + name: Solars North West APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 772 + components: + - type: MetaData + name: Vault APC + - type: Transform + pos: -31.5,7.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 15 + supplyRampPosition: 1.142588 + - uid: 773 + components: + - type: MetaData + name: Primary Tool Storage APC + - type: Transform + pos: -43.5,6.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 30 + supplyRampPosition: 18.132214 + - uid: 774 + components: + - type: MetaData + name: Security Checkpoint APC + - type: Transform + pos: -57.5,6.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 25 + supplyRampPosition: 9.296312 + - uid: 775 + components: + - type: MetaData + name: Arrivals APC + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 145 + supplyRampPosition: 32.478764 + - uid: 776 + components: + - type: MetaData + name: Disposals APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 2 + - uid: 777 + components: + - type: MetaData + name: Garden APC + - type: Transform + pos: -21.5,3.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 6.0937796 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 + - uid: 780 + components: + - type: MetaData + name: Vacant Office B APC + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 781 + components: + - type: MetaData + name: Chemistry APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 782 + components: + - type: MetaData + name: Solars South West APC + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-63.5 + parent: 2 + - uid: 783 + components: + - type: MetaData + name: Janitor Closet APC + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + - uid: 784 + components: + - type: MetaData + name: Cargo Office APC + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 65 + supplyRampPosition: 2.4463015 + - uid: 785 + components: + - type: MetaData + name: Salvage APC + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 25 + supplyRampPosition: 9.488577 + - uid: 786 + components: + - type: MetaData + name: Technical Storage APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - uid: 787 + components: + - type: MetaData + name: Showroom APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 2 + - uid: 788 + components: + - type: MetaData + name: Telecomms APC + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 1.347667 + - uid: 789 + components: + - type: MetaData + name: Medical South APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 790 + components: + - type: MetaData + name: Surgery APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 2 + - uid: 791 + components: + - type: MetaData + name: SMES Bank APC + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + - uid: 792 + components: + - type: MetaData + name: QM Office APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 793 + components: + - type: MetaData + name: Medbay APC + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 55 + currentReceiving: 55.01975 + currentSupply: 55 + - uid: 794 + components: + - type: MetaData + name: Virology APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-54.5 + parent: 2 + - uid: 795 + components: + - type: MetaData + name: Aft Maintenance APC + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 20 + currentReceiving: 19.980549 + currentSupply: 20 + supplyRampPosition: 0.019451141 + - uid: 796 + components: + - type: MetaData + name: CE Room APC + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 797 + components: + - type: MetaData + name: Anomaly Lab APC + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-53.5 + parent: 2 + - uid: 798 + components: + - type: MetaData + name: Robotics APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 2 + - uid: 799 + components: + - type: MetaData + name: Xeno Arch APC + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-26.5 + parent: 2 + - uid: 800 + components: + - type: MetaData + name: Mantis Room APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-30.5 + parent: 2 + - uid: 801 + components: + - type: MetaData + name: mystagogue's APC + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-38.5 + parent: 2 + - uid: 802 + components: + - type: MetaData + name: Sci Server Room APC + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-32.5 + parent: 2 + - uid: 803 + components: + - type: MetaData + name: HoP Office APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - uid: 804 + components: + - type: MetaData + name: Toxins Lab APC + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + currentReceiving: 10.019571 + currentSupply: 10 + - uid: 805 + components: + - type: MetaData + name: Psych APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 2 + - uid: 806 + components: + - type: MetaData + name: Engineering APC + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 807 + components: + - type: MetaData + name: Cloning APC + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-48.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-69.5 + parent: 2 +- proto: APCConstructed + entities: + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-82.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 811 + components: + - type: Transform + pos: -22.30238,-5.274679 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 812 + components: + - type: MetaData + name: Morgue APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - uid: 814 + components: + - type: MetaData + name: Law Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 2 + - uid: 815 + components: + - type: MetaData + name: Detective Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,10.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 818 + components: + - type: MetaData + name: Solars North East APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - uid: 819 + components: + - type: MetaData + name: Medical Breakroom APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 2 + - uid: 820 + components: + - type: MetaData + name: Maints South West APC + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-46.5 + parent: 2 + - uid: 821 + components: + - type: MetaData + name: Toxins Storage APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-36.5 + parent: 2 + - uid: 822 + components: + - type: MetaData + name: Solars South East APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-64.5 + parent: 2 + - uid: 823 + components: + - type: MetaData + name: RND APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-25.5 + parent: 2 + - uid: 824 + components: + - type: MetaData + name: Engineering Desk APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 2 +- proto: APCSuperCapacity + entities: + - uid: 825 + components: + - type: MetaData + name: Atmospherics APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 826 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: Ash + entities: + - uid: 827 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 +- proto: Ashtray + entities: + - uid: 828 + components: + - type: Transform + pos: -4.5263214,45.53943 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 3.5185595,-70.603806 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 830 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 831 + components: + - type: Transform + pos: 55.5,-76.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 55.5,-80.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 56.5,-76.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 56.5,-80.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 57.5,-76.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 57.5,-80.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 54.5,-79.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 54.5,-78.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 54.5,-77.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 58.5,-77.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 58.5,-78.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 58.5,-79.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 58.5,-81.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 57.5,-81.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 56.5,-81.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 59.5,-80.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 59.5,-79.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 59.5,-78.5 + parent: 2 +- proto: AsteroidRockMining + entities: + - uid: 849 + components: + - type: Transform + pos: 58.5,-80.5 + parent: 2 +- proto: AsteroidRockUraniumCrab + entities: + - uid: 850 + components: + - type: Transform + pos: 57.5,-77.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 55.5,-78.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 55.5,-77.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 56.5,-77.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 55.5,-79.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 57.5,-78.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 56.5,-79.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 57.5,-79.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 858 + components: + - type: Transform + pos: 87.5,-11.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 87.5,-13.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 87.5,-5.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 87.5,-3.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-9.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 + - uid: 872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 874 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: -0.5,-85.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -1.5,-85.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -0.5,-87.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 26.5,-56.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 28.5,-55.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 910 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 940 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 949 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 958 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 26.5,-60.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 28.5,-60.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 28.5,-58.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 967 + components: + - type: Transform + pos: 69.5,-19.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 968 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 969 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 973 + components: + - type: Transform + pos: 24.02721,-8.402973 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 +- proto: BagpipeInstrument + entities: + - uid: 975 + components: + - type: Transform + pos: 22.356016,2.7478647 + parent: 2 +- proto: BannerCargo + entities: + - uid: 976 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 +- proto: Barricade + entities: + - uid: 977 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 2 + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,22.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-58.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 87.5,-23.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 87.5,-28.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 1006 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 1009 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 2 +- proto: BarSignMaidCafe + entities: + - uid: 1011 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 +- proto: BarSignOfficerBeersky + entities: + - uid: 1012 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 1013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-20.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-51.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-86.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 2 +- proto: Basketball + entities: + - uid: 1018 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 +- proto: BassGuitarInstrument + entities: + - uid: 1019 + components: + - type: Transform + pos: 22.460173,2.6171174 + parent: 2 +- proto: BeachBall + entities: + - uid: 1020 + components: + - type: Transform + pos: 34.165627,9.592048 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 6.549402,-27.166641 + parent: 2 +- proto: Beaker + entities: + - uid: 1022 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 74.27338,-18.287746 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -6.0280805,52.564606 + parent: 2 +- proto: Bed + entities: + - uid: 1026 + components: + - type: Transform + pos: 55.5,-49.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 46.5,-58.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: -30.5,-74.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: -17.5,48.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: -20.5,48.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 1061 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 1062 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 1063 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 1064 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-58.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 1067 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 1068 + components: + - type: Transform + pos: 16.463984,40.46398 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: BedsheetMedical + entities: + - uid: 1069 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 1077 + components: + - type: Transform + pos: -20.5,48.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 1080 + components: + - type: Transform + pos: -31.540049,-25.526215 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: BedsheetRD + entities: + - uid: 1081 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 1082 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 55.5,-49.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 +- proto: BedsheetSyndie + entities: + - uid: 1096 + components: + - type: Transform + pos: -17.5,48.5 + parent: 2 +- proto: BedsheetWhite + entities: + - uid: 1097 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 +- proto: BikeHorn + entities: + - uid: 1100 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 +- proto: BiomassReclaimer + entities: + - uid: 1102 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 +- proto: BlackBarrel + entities: + - uid: 1103 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 1104 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22392 + - 19299 + - uid: 1105 + components: + - type: MetaData + name: Incinerator Vent + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 1106 + components: + - type: MetaData + name: Incinerator Vent + - type: Transform + pos: -42.5,-48.5 + parent: 2 + - uid: 1107 + components: + - type: MetaData + name: Incinerator Vent + - type: Transform + pos: -42.5,-50.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 82.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22396 + - uid: 1109 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24278 + - uid: 1110 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22391 + - uid: 1111 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22404 + - uid: 1112 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22404 + - uid: 1113 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22394 + - uid: 1114 + components: + - type: Transform + pos: -11.5,-67.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22394 + - uid: 1115 + components: + - type: Transform + pos: -12.5,-67.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22394 + - uid: 1116 + components: + - type: Transform + pos: 93.5,-25.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 91.5,-25.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22405 + - uid: 1119 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22405 + - uid: 1120 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22405 + - uid: 1121 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19300 + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19300 + - uid: 1124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19301 + - uid: 1125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19301 + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19301 + - uid: 1127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19300 +- proto: BlastDoorOpen + entities: + - uid: 1128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22412 + - uid: 1129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22412 + - uid: 1130 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22411 + - uid: 1131 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22411 + - uid: 1132 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22401 + - uid: 1133 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22401 + - uid: 1134 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22401 + - uid: 1135 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22402 + - uid: 1136 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22402 + - uid: 1137 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22402 + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22412 + - uid: 1139 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22407 + - uid: 1140 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22407 +- proto: BlockGameArcade + entities: + - uid: 1141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-33.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 1142 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 1143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 1144 + components: + - type: Transform + pos: 74.5,12.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 1145 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 1146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,47.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: BodyBagFolded + entities: + - uid: 1147 + components: + - type: Transform + pos: 60.576424,0.7512084 + parent: 2 +- proto: BookRandom + entities: + - uid: 1148 + components: + - type: Transform + pos: -14.522785,53.581825 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 1149 + components: + - type: Transform + pos: -13.487206,48.529594 + parent: 2 +- proto: BooksBag + entities: + - uid: 1150 + components: + - type: Transform + pos: 63.255688,-2.4798405 + parent: 2 +- proto: BookScientistsGuidebook + entities: + - uid: 1151 + components: + - type: Transform + pos: 70.48863,-53.4144 + parent: 2 +- proto: Bookshelf + entities: + - uid: 1152 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 55.5,-33.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -14.5,48.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1161 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 1173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1175 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 1181 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 38.5,-60.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 69.43082,-28.496725 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 76.50828,-54.33026 + parent: 2 + - uid: 1187 + components: + - type: Transform + parent: 1186 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1190 + components: + - type: Transform + pos: 84.51324,-40.327812 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 1191 + components: + - type: Transform + pos: 31.510162,-1.6086714 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 12 + - uid: 1192 + components: + - type: Transform + pos: -0.63110375,35.29573 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 12 + - uid: 1193 + components: + - type: Transform + pos: -0.28735375,35.29573 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 12 + - uid: 1195 + components: + - type: Transform + parent: 1194 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 1199 + components: + - type: Transform + pos: 41.322857,-16.332546 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1200 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 40.479862,-18.340874 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 44.604614,-44.33934 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 1203 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -19.55601,-15.847038 + parent: 2 +- proto: BoxColoredLighttube + entities: + - uid: 1208 + components: + - type: Transform + parent: 1207 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxFlare + entities: + - uid: 1212 + components: + - type: Transform + pos: 16.492401,-71.3129 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 19.487192,-71.3129 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 1214 + components: + - type: Transform + pos: 0.32543182,35.35921 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: -2.728294,35.640274 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1216 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 1217 + components: + - type: Transform + pos: -29.590153,4.042227 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 1218 + components: + - type: Transform + pos: 6.4906216,-15.486443 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 1226 + components: + - type: Transform + pos: 29.490276,-19.429476 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1228 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -1.4970741,30.587648 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 1235 + components: + - type: Transform + pos: 10.719718,-34.412834 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 36.5333,-40.44767 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 69.5,-35.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 26.534222,-106.3969 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 62.501472,-30.403723 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 1241 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -32.806335,-27.413109 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1247 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + rot: 3.7546858948189765E-05 rad + pos: -19.264854,-19.34227 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -28.451855,-25.468752 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 6.5516477,-55.92527 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -8.5061,-50.749557 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 1254 + components: + - type: Transform + pos: 15.418736,30.571737 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 0.7629318,35.499836 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -2.322044,35.484024 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: BoxLatexGloves + entities: + - uid: 1257 + components: + - type: Transform + pos: 24.498875,-36.223793 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 30.65811,-30.260078 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 36.594677,-36.24478 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 41.9739,-16.345566 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: BoxLethalshot + entities: + - uid: 1196 + components: + - type: Transform + parent: 1194 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1261 + components: + - type: Transform + pos: -0.3215518,35.63938 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 12 +- proto: BoxLightbulb + entities: + - uid: 1262 + components: + - type: Transform + pos: 55.44968,-51.427322 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -20.70863,-5.352804 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 1264 + components: + - type: Transform + pos: 6.392988,-63.281517 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -20.20863,-5.399679 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -8.569084,-77.35907 + parent: 2 +- proto: BoxLighttube + entities: + - uid: 1267 + components: + - type: Transform + pos: -20.536755,-5.462179 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 1268 + components: + - type: Transform + pos: 38.38778,-59.853592 + parent: 2 +- proto: BoxMRE + entities: + - uid: 1269 + components: + - type: Transform + pos: 48.424255,8.669407 + parent: 2 +- proto: BoxPDA + entities: + - uid: 1270 + components: + - type: Transform + pos: -11.614725,-21.270159 + parent: 2 +- proto: BoxShotgunIncendiary + entities: + - uid: 1271 + components: + - type: Transform + pos: -0.6496768,35.60813 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 12 +- proto: BoxShotgunSlug + entities: + - uid: 1197 + components: + - type: Transform + parent: 1194 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxSterileMask + entities: + - uid: 1272 + components: + - type: Transform + pos: 38.48153,-59.041092 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 24.405125,-36.239418 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 1274 + components: + - type: Transform + pos: -6.5023327,30.526033 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 38.5,-59.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 33.517532,-30.385773 + parent: 2 +- proto: BoxTrashbag + entities: + - uid: 1277 + components: + - type: Transform + pos: 2.4019985,-33.752228 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 1278 + components: + - type: Transform + pos: 12.512168,34.618263 + parent: 2 +- proto: BrbSign + entities: + - uid: 1279 + components: + - type: Transform + pos: -11.524348,-21.41842 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 1280 + components: + - type: Transform + pos: 57.77009,-49.405586 + parent: 2 +- proto: BriefcaseBrownFilled + entities: + - uid: 1281 + components: + - type: Transform + pos: -12.308378,17.63403 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -12.667753,17.35278 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 7.486902,-27.366474 + parent: 2 +- proto: BrigTimer + entities: + - uid: 1285 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28376: + - Start: Close + - Timer: Open + - uid: 1286 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28377: + - Start: Close + - Timer: Open + - uid: 1287 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28378: + - Start: Close + - Timer: Open +- proto: Bucket + entities: + - uid: 1288 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 0.4866991,51.66165 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 5.4332485,-36.377228 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 5.6363735,-36.502228 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 1296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-84.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-84.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -0.5,-78.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-72.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-72.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: -2.5,-90.5 + parent: 2 +- proto: ButtonFrameExit + entities: + - uid: 1304 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 1306 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -1.5,-82.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -3.5,-90.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -3.5,-89.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -80.5,-4.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -74.5,-2.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -75.5,7.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -79.5,9.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -73.5,-2.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -72.5,7.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -80.5,9.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -78.5,9.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -75.5,-15.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 45.5,-25.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 55.5,-46.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 58.5,-46.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 58.5,-45.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 58.5,-47.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 56.5,-46.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 54.5,-46.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 50.5,-47.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 51.5,-47.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 58.5,-48.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 57.5,-46.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 39.5,-48.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 43.5,-67.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 43.5,-68.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 43.5,-71.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 43.5,-72.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 48.5,-65.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 43.5,-69.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 43.5,-70.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 43.5,-66.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 37.5,-65.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 37.5,-66.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 37.5,-67.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 33.5,-64.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 37.5,-64.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 43.5,-74.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 42.5,-74.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 36.5,-64.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 33.5,-65.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 39.5,-64.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 35.5,-64.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 38.5,-64.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 34.5,-64.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -17.5,47.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 23.5,38.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 62.5,-9.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 62.5,-8.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: 62.5,-5.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 62.5,-4.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 72.5,-6.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 72.5,-8.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 72.5,-9.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 71.5,-9.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 70.5,-9.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 70.5,0.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 70.5,3.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 72.5,5.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 73.5,5.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 71.5,3.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 75.5,2.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 65.5,0.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 73.5,-7.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 68.5,14.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 69.5,14.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 66.5,8.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 67.5,8.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 70.5,10.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 70.5,9.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 69.5,9.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 68.5,8.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 73.5,8.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 74.5,8.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 70.5,11.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 71.5,11.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 63.5,5.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 65.5,5.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 75.5,-10.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 76.5,-10.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 77.5,-10.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 78.5,-10.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 80.5,-10.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 81.5,-10.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 82.5,-10.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 79.5,-5.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 83.5,-2.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 85.5,-2.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 80.5,-12.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: 80.5,-11.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: 80.5,-13.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 80.5,-16.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -46.5,20.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -58.5,16.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: -66.5,17.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -67.5,17.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -66.5,13.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -67.5,9.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -69.5,9.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -72.5,9.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: -73.5,9.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: -74.5,9.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: -75.5,9.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -76.5,9.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: -77.5,9.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: -75.5,8.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: -69.5,-14.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -71.5,-14.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: -76.5,-14.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: -67.5,-15.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: -62.5,0.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: -69.5,-4.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: -71.5,-4.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: -72.5,-4.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: -73.5,-4.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: -76.5,-4.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: -74.5,-3.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: -76.5,-13.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 79.5,-13.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 78.5,-13.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 77.5,-13.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 76.5,-13.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 72.5,-13.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 71.5,-13.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 65.5,-13.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 62.5,-13.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: -61.5,-17.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: -16.5,-64.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: -31.5,-67.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: -31.5,-69.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: -31.5,-70.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -31.5,-71.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: -32.5,-73.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -33.5,-73.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -33.5,-74.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: -34.5,-50.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 23.5,-69.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 23.5,-68.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -38.5,-56.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: -36.5,-55.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: -19.5,-73.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 31.5,-116.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 31.5,-117.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: -16.5,-75.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -14.5,-77.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -7.5,-69.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -23.5,-69.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -1.5,-64.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -9.5,-62.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -12.5,-62.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 44.5,-35.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 45.5,-47.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 45.5,-46.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 45.5,-48.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 40.5,-45.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 37.5,-52.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 36.5,-52.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 35.5,-52.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 35.5,-53.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 38.5,-55.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 39.5,-55.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 40.5,-52.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 40.5,-51.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 39.5,-56.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 39.5,-57.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 39.5,-58.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: 39.5,-59.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 40.5,-59.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 41.5,-59.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 42.5,-57.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 45.5,-59.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 45.5,-58.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 44.5,-59.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 43.5,-59.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 45.5,-56.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 45.5,-55.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 45.5,-54.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 46.5,-54.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 47.5,-54.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: 45.5,-53.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: 46.5,-42.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 43.5,-42.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 48.5,-42.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 40.5,-49.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 41.5,-49.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 49.5,-65.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: 50.5,-66.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 50.5,-67.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 50.5,-68.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 81.5,-33.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: 84.5,-33.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 85.5,-32.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 83.5,-41.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: 84.5,-41.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: 85.5,-41.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: 86.5,-41.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: 82.5,-36.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: 83.5,-36.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: 84.5,-36.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: 85.5,-36.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: 86.5,-37.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: 86.5,-36.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: 85.5,-28.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: 85.5,-27.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: 85.5,-26.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: 85.5,-25.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 81.5,-21.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: 80.5,-21.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: 80.5,-19.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: 78.5,-19.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: 77.5,-19.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: 76.5,-18.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: 83.5,-52.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: 84.5,-52.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: 85.5,-52.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: 86.5,-52.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: 83.5,-57.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: 84.5,-57.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: 85.5,-57.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: 86.5,-57.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: 87.5,-57.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: 88.5,-57.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: 65.5,-59.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: 65.5,-57.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: 65.5,-56.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: 66.5,-56.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: 67.5,-56.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 68.5,-56.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: 69.5,-56.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: 68.5,-61.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 68.5,-62.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 68.5,-63.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 68.5,-64.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 68.5,-65.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: 77.5,-61.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 77.5,-62.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 77.5,-63.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: 77.5,-64.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: 76.5,-64.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: 75.5,-64.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: 74.5,-64.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: 73.5,-64.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: 72.5,-64.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 72.5,-65.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 71.5,-65.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 70.5,-65.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 69.5,-65.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 72.5,-66.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 72.5,-67.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 72.5,-68.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 71.5,-68.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 70.5,-68.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 69.5,-68.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 68.5,-68.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: 67.5,-68.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 66.5,-68.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: 65.5,-68.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 65.5,-69.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: 65.5,-70.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 65.5,-71.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: 64.5,-71.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: 63.5,-71.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: 62.5,-71.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 61.5,-71.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: 65.5,-67.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: 65.5,-66.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: 65.5,-65.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: 65.5,-64.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: 65.5,-63.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 65.5,-62.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: 65.5,-61.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: 63.5,-61.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: 62.5,-61.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 60.5,-61.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 58.5,-61.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 56.5,-60.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 57.5,-60.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: 58.5,-60.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 61.5,-60.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 62.5,-60.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 63.5,-60.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 63.5,-62.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 63.5,-63.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 62.5,-63.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 61.5,-63.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 58.5,-62.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 58.5,-63.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 57.5,-63.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 60.5,-72.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: 62.5,-72.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 62.5,-73.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 63.5,-73.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 64.5,-73.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 65.5,-73.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 69.5,-69.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 70.5,-69.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 73.5,-61.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 74.5,-61.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 74.5,-63.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: 73.5,-63.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: 78.5,-61.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 77.5,-65.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: 76.5,-65.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: 86.5,-28.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: 87.5,-28.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 88.5,-28.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 89.5,-28.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 90.5,-28.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 91.5,-28.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: 92.5,-28.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: 93.5,-28.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: 91.5,-27.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: 93.5,-27.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: 91.5,-30.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: 91.5,-29.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: 93.5,-29.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: 93.5,-30.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: 89.5,-27.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: 89.5,-26.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 89.5,-24.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: 89.5,-23.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: 89.5,-22.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: 88.5,-22.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: 90.5,-22.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: 91.5,-22.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: 92.5,-22.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: 92.5,-23.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: 89.5,-29.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: 89.5,-30.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: 83.5,-47.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: 84.5,-47.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: 79.5,-59.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 79.5,-58.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: 79.5,-57.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: 78.5,-57.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: 77.5,-57.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: 83.5,-64.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: 82.5,-64.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: 81.5,-65.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: 81.5,-66.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: 81.5,-67.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: 82.5,-66.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: 83.5,-66.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: 82.5,-67.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: 82.5,-68.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: 69.5,-25.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: 70.5,-27.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: 73.5,-28.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: 73.5,-27.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: 73.5,-26.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: 73.5,-25.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: 73.5,-24.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: 73.5,-22.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: 73.5,-21.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: 72.5,-18.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: 71.5,-18.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 70.5,-18.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 70.5,-19.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: 70.5,-20.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: 70.5,-21.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: 70.5,-22.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: 69.5,-22.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: 67.5,-22.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: 66.5,-22.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 66.5,-21.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 66.5,-20.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: 66.5,-19.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: 70.5,-24.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: 71.5,-25.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: 72.5,-25.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: 71.5,-22.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: 66.5,-43.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: 66.5,-44.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 66.5,-46.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 66.5,-47.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 67.5,-43.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: 67.5,-47.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: 67.5,-40.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: 71.5,-17.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: 69.5,-18.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: 69.5,-17.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: 78.5,-26.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: 78.5,-25.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: 78.5,-24.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: 79.5,-25.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 80.5,-25.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: 80.5,-26.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: 77.5,-24.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: 76.5,-24.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: 80.5,-27.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: 76.5,-25.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: 76.5,-26.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 81.5,-25.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: 82.5,-25.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: 82.5,-26.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 82.5,-27.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: 82.5,-28.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: 82.5,-29.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: 81.5,-29.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: 80.5,-29.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: 79.5,-29.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: 78.5,-29.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: 77.5,-29.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 81.5,-24.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: 62.5,-18.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: 62.5,-19.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 57.5,-23.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 56.5,-23.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 55.5,-23.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 53.5,-23.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 62.5,-24.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 62.5,-30.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 61.5,-29.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 61.5,-36.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 62.5,-36.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 62.5,-35.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: 62.5,-34.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: 61.5,-34.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: 60.5,-34.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 60.5,-35.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 60.5,-40.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: 61.5,-40.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 64.5,-39.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 64.5,-41.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 58.5,-40.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 57.5,-40.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: 56.5,-40.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 55.5,-40.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: 54.5,-39.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 54.5,-38.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: 54.5,-37.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: 54.5,-35.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 55.5,-37.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 56.5,-37.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 53.5,-37.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: 52.5,-37.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: 71.5,-52.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 71.5,-53.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 70.5,-52.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: 69.5,-52.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: 68.5,-52.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: 67.5,-52.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: 66.5,-52.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 66.5,-51.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 66.5,-50.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: 65.5,-49.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: 71.5,-51.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: 71.5,-50.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 71.5,-49.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: 72.5,-49.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: 73.5,-49.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 74.5,-49.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 75.5,-49.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 76.5,-49.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: 77.5,-49.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 79.5,-49.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 79.5,-50.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: 79.5,-51.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 79.5,-52.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: 79.5,-53.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 78.5,-53.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: 77.5,-53.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: 76.5,-53.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: 72.5,-52.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 73.5,-52.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 77.5,-51.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: 78.5,-51.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 77.5,-52.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 74.5,-52.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 75.5,-52.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 75.5,-51.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 75.5,-53.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 75.5,-54.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: 73.5,-53.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: 73.5,-54.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: 73.5,-55.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 73.5,-56.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 75.5,-43.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 75.5,-44.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: 78.5,-46.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: 77.5,-46.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 75.5,-46.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 79.5,-46.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: 77.5,-44.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: 77.5,-43.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: 77.5,-35.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: 76.5,-40.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 74.5,-40.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 73.5,-40.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: 72.5,-40.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 69.5,-38.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: 69.5,-36.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: 70.5,-36.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 71.5,-36.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 72.5,-36.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: 73.5,-36.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 73.5,-35.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: 73.5,-34.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 72.5,-34.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 71.5,-34.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: 68.5,-35.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: -77.5,-13.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: -78.5,-13.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: -14.5,-74.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -14.5,51.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -1.5,49.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: 29.5,-111.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: 28.5,-111.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: 28.5,-110.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 28.5,-109.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 29.5,-109.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 30.5,-109.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 31.5,-109.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: 31.5,-111.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 31.5,-110.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 31.5,-112.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: 31.5,-113.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 31.5,-114.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 31.5,-115.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 30.5,-115.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 29.5,-115.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: 28.5,-115.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 27.5,-115.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: 26.5,-115.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 25.5,-115.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 25.5,-114.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 25.5,-113.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 25.5,-112.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 25.5,-111.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 25.5,-110.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 25.5,-109.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: 26.5,-109.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 27.5,-109.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 28.5,-106.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 27.5,-106.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 29.5,-106.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 31.5,-100.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: 30.5,-100.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 29.5,-103.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 29.5,-102.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 29.5,-101.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: 29.5,-99.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: 29.5,-97.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: 29.5,-95.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: 27.5,-96.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 27.5,-97.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: 27.5,-98.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 27.5,-99.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: 27.5,-100.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 27.5,-101.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 27.5,-102.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: 27.5,-103.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 28.5,-100.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 32.5,-100.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: 32.5,-101.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 32.5,-102.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 32.5,-103.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 33.5,-103.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 33.5,-104.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 32.5,-99.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 32.5,-98.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 32.5,-97.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 32.5,-96.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 35.5,-92.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 33.5,-92.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: 32.5,-92.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: 31.5,-92.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 32.5,-91.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 32.5,-90.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 32.5,-89.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 32.5,-93.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 23.5,-92.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 24.5,-92.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 24.5,-91.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 24.5,-90.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 24.5,-89.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 24.5,-93.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: 24.5,-94.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 24.5,-95.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: 24.5,-96.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: 24.5,-97.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: 24.5,-98.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: 24.5,-99.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: 24.5,-100.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: 24.5,-101.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 24.5,-102.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: 24.5,-103.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 23.5,-103.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: 23.5,-104.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: 31.5,-86.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 30.5,-86.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 29.5,-86.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: 28.5,-92.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 28.5,-93.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 28.5,-85.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 28.5,-84.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 28.5,-83.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 28.5,-82.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: 28.5,-81.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: 31.5,-85.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: 32.5,-85.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -0.5,-88.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 86.5,-10.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 87.5,-14.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: 86.5,-14.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: 86.5,-6.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 87.5,-6.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 86.5,-2.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: 25.5,-117.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: 25.5,-116.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 24.5,-112.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 23.5,-112.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: 32.5,-112.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: 33.5,-112.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 29.5,-79.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 30.5,-79.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 31.5,-79.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 32.5,-79.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: -43.5,-44.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: -49.5,-44.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: -50.5,-44.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: -47.5,-44.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: -0.5,-87.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -0.5,-82.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: -0.5,-91.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: -1.5,-91.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -3.5,-91.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: -2.5,-91.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: -0.5,-85.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: -0.5,-83.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: -21.5,-74.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: -22.5,-74.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: -23.5,-74.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: -24.5,-74.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: -25.5,-74.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: -3.5,-91.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -4.5,-91.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: -5.5,-91.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: -6.5,-91.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -7.5,-91.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -8.5,-87.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: -8.5,-86.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -8.5,-85.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: -8.5,-84.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: -8.5,-83.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -8.5,-82.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -8.5,-80.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: -8.5,-81.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -8.5,-80.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -7.5,-80.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -6.5,-80.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -5.5,-80.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: -4.5,-80.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: -3.5,-80.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: -0.5,-80.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: -2.5,-80.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -1.5,-80.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 6.5,-80.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 1.5,-80.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: 6.5,-81.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: 6.5,-83.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: 6.5,-84.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 6.5,-85.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 6.5,-86.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: 6.5,-87.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 6.5,-90.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 6.5,-82.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 5.5,-91.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: 4.5,-91.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 3.5,-91.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 2.5,-91.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 1.5,-91.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: -8.5,-92.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: -8.5,-93.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: -8.5,-94.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 6.5,-92.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 6.5,-93.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 6.5,-94.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: -0.5,-92.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -0.5,-93.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -0.5,-94.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: -2.5,-73.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -3.5,-73.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: -6.5,-73.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -7.5,-73.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 0.5,-79.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -1.5,-79.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 1.5,-72.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -1.5,-71.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -1.5,-72.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -1.5,-73.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -1.5,-74.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -1.5,-76.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -2.5,-76.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -3.5,-76.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -4.5,-76.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 0.5,-76.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: 1.5,-76.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -0.5,-90.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: -0.5,-73.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 1.5,-73.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: -8.5,-77.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -8.5,-76.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 5.5,-73.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: 7.5,-73.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: 8.5,-74.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 8.5,-75.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 8.5,-76.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 28.5,-79.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 28.5,-80.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 7.5,-80.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 7.5,-79.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 8.5,-79.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 9.5,-79.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: -8.5,-79.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: -9.5,-79.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: -10.5,-79.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: 21.5,-47.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: 24.5,-51.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 21.5,-51.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 17.5,-51.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 28.5,-55.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 19.5,-55.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: 17.5,-55.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: 18.5,-59.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 24.5,-63.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 24.5,-67.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: 16.5,-68.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: 16.5,-69.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: 16.5,-70.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: 21.5,-70.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: 21.5,-72.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: 21.5,-73.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 21.5,-74.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: 21.5,-75.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 15.5,-70.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: 14.5,-70.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: 14.5,-71.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: 14.5,-73.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: 14.5,-74.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: 14.5,-75.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 18.5,-68.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 18.5,-69.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 18.5,-70.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: 18.5,-71.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 18.5,-73.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 18.5,-74.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 18.5,-75.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 12.5,-64.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 11.5,-62.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: -0.5,-89.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: -52.5,-44.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: -53.5,-44.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: -54.5,-44.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: -55.5,-44.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 5856 + components: + - type: Transform + pos: -51.663174,-6.0246577 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 60.473213,-49.45246 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: -3.599309,8.864815 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: -46.301056,3.4515293 + parent: 2 + - uid: 5860 + components: + - type: Transform + rot: -0.02363373152911663 rad + pos: -65.26673,14.742755 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: -4.4804783,-45.275856 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -28.687122,-54.44169 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: -8.310263,-35.572342 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: -8.325888,-37.791092 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 47.398952,-68.41422 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 74.33588,-19.006496 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 74.7265,-19.100246 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 78.68335,-64.45979 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: -51.663174,-6.0246577 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 6.5073543,-57.339874 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 5.466186,-63.172188 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: -51.663174,-6.0246577 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 4.550656,-72.29635 + parent: 2 + - uid: 5874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.332766,-55.35755 + parent: 2 + - uid: 5875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.349538,-91.56168 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: CableApcStack1 + entities: + - uid: 5876 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 +- proto: CableHV + entities: + - uid: 5880 + components: + - type: Transform + pos: -1.5,-88.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 11.5,-72.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 11.5,-71.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 11.5,-77.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 11.5,-75.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 11.5,-79.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 11.5,-74.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 11.5,-73.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 24.5,-80.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 23.5,-80.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 11.5,-70.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 21.5,-80.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 20.5,-80.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: -1.5,-70.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: -5.5,-88.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -5.5,-89.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: -1.5,-71.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -25.5,-70.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -0.5,-59.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 81.5,-83.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: 81.5,-84.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 81.5,-85.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 81.5,-86.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: 83.5,-82.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 82.5,-82.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 80.5,-82.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 79.5,-82.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 79.5,-78.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: 80.5,-78.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: 82.5,-78.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 83.5,-78.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 83.5,-74.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 82.5,-74.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 80.5,-74.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 79.5,-74.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 83.5,-73.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 84.5,-73.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 85.5,-73.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 86.5,-73.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 87.5,-73.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 87.5,-75.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 86.5,-75.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 85.5,-75.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 84.5,-75.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: 83.5,-75.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 83.5,-77.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 84.5,-77.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: 85.5,-77.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 86.5,-77.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 87.5,-77.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 87.5,-79.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 86.5,-79.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 85.5,-79.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: 84.5,-79.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 83.5,-79.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 83.5,-81.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 84.5,-81.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: 85.5,-81.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: 86.5,-81.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 87.5,-81.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 87.5,-83.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 86.5,-83.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 85.5,-83.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 84.5,-83.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 83.5,-83.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 75.5,-83.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 76.5,-83.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 81.5,-72.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 81.5,-71.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 81.5,-70.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 81.5,-69.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 81.5,-61.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 81.5,-62.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 81.5,-63.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: -53.5,28.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -48.5,29.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: -47.5,29.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -47.5,30.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -45.5,32.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: -20.5,-70.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -23.5,-70.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: -22.5,-70.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: -24.5,-70.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -49.5,-60.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: -52.5,-65.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 4.5,-87.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: -25.5,-64.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: -17.5,-70.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: -11.5,-70.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: -49.5,40.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: -4.5,-68.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: -47.5,34.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -12.5,-70.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: -28.5,-65.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -26.5,-65.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -42.5,-61.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -44.5,-66.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -44.5,-67.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: -46.5,-67.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -46.5,-66.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -46.5,-65.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: 51.5,-61.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 58.5,-61.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 60.5,-61.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 62.5,-61.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: 63.5,-61.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 65.5,-61.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: 85.5,-45.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -45.5,-62.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: 80.5,-63.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: 80.5,-64.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: 80.5,-65.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: 77.5,-81.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: 78.5,-81.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 79.5,-81.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: 77.5,-83.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 79.5,-83.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: 78.5,-83.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: 76.5,-81.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: 75.5,-81.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: 75.5,-79.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: 76.5,-79.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: 79.5,-79.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 79.5,-77.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: 78.5,-77.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: 77.5,-77.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: 78.5,-79.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 77.5,-79.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: 79.5,-73.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: 76.5,-73.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: 75.5,-73.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: 75.5,-75.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 76.5,-77.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: 75.5,-77.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 76.5,-75.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: 79.5,-75.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: 78.5,-75.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: 77.5,-75.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 77.5,-73.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 78.5,-73.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -50.5,-65.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: -50.5,-67.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: 50.5,-62.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: -48.5,-67.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -48.5,-66.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: -48.5,-65.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: -48.5,-63.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: -49.5,-63.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: -49.5,-62.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -45.5,-60.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: -48.5,-58.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: 51.5,-62.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 81.5,-65.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: 81.5,-66.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: 81.5,-67.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: 81.5,-68.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 28.5,-113.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: 28.5,-114.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: 29.5,-114.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: 30.5,-114.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 27.5,-113.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: 26.5,-113.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: 26.5,-112.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: 25.5,-112.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: 24.5,-112.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: 30.5,-113.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: 30.5,-112.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: 30.5,-111.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + pos: 30.5,-110.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: 30.5,-109.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 29.5,-109.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: 28.5,-109.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + pos: 28.5,-106.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 28.5,-105.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 28.5,-104.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: 28.5,-103.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: 28.5,-101.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 28.5,-100.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: 28.5,-102.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: 28.5,-98.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + pos: 28.5,-97.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: 28.5,-96.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 28.5,-99.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: 28.5,-93.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: 28.5,-92.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 28.5,-95.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 28.5,-94.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 29.5,-91.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: 30.5,-91.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: 31.5,-91.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + pos: 31.5,-92.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: 32.5,-92.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 33.5,-92.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: 27.5,-109.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + pos: -14.5,-74.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: 26.5,-109.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: 25.5,-109.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: 24.5,-109.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 23.5,-109.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: 23.5,-108.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: 23.5,-107.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: 23.5,-106.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: 23.5,-105.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 23.5,-104.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: 23.5,-103.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: 24.5,-103.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: 24.5,-102.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + pos: 24.5,-101.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: 24.5,-100.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 24.5,-99.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 24.5,-97.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 24.5,-96.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 24.5,-95.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 24.5,-94.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 24.5,-93.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 24.5,-92.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: 24.5,-91.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 24.5,-98.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 25.5,-91.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: 26.5,-91.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 27.5,-91.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: 32.5,-93.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 32.5,-94.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 32.5,-95.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: 32.5,-96.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 32.5,-97.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: 32.5,-98.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -1.5,-76.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: 32.5,-99.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 32.5,-100.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: 32.5,-101.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: 32.5,-102.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: -17.5,44.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: 32.5,-103.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: 33.5,-103.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: 33.5,-104.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: 33.5,-105.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: 33.5,-106.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 33.5,-107.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 33.5,-108.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 32.5,-108.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 31.5,-108.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: 31.5,-109.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: 28.5,-85.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: -11.5,-63.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 28.5,-84.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 28.5,-83.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 28.5,-82.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 28.5,-81.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 28.5,-80.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 34.5,-91.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 34.5,-90.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 34.5,-89.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: -19.5,-73.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: 1.5,-68.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: 5.5,-68.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: 11.5,-68.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: 9.5,-68.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: -2.5,-87.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: 3.5,-91.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 2.5,-91.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -0.5,-91.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: -1.5,-91.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -2.5,-91.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: 4.5,-91.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: -2.5,-86.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: -5.5,-90.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: -3.5,-70.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: -3.5,-91.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: -4.5,-91.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: -1.5,-74.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 1.5,-85.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: -0.5,-79.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -0.5,-81.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + pos: -0.5,-82.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -0.5,-83.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: -0.5,-80.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: -18.5,-74.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -1.5,-85.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -1.5,-77.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -0.5,-85.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: -1.5,-79.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -1.5,-73.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: -4.5,-70.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: 1.5,-86.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -5.5,-91.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -4.5,-89.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: -4.5,-86.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: 1.5,-87.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: -3.5,-86.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: -2.5,-85.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: 1.5,-91.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -3.5,-89.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -2.5,-70.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -1.5,-72.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: 19.5,-80.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: 18.5,-80.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 17.5,-80.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 22.5,-80.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: 16.5,-80.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 14.5,-80.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: 12.5,-80.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 13.5,-80.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: 15.5,-80.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 11.5,-80.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: 27.5,-80.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 26.5,-80.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: 25.5,-80.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 2.5,-87.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -0.5,-88.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: -3.5,-87.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + pos: -3.5,-85.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: -1.5,-89.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: 0.5,-89.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: -0.5,-89.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: -0.5,-90.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 13.5,-70.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 13.5,-69.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: 13.5,-68.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 13.5,-67.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 13.5,-65.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 14.5,-65.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 12.5,-70.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 11.5,-70.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 10.5,-70.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 1.5,-70.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 0.5,-70.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: -0.5,-70.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 18.5,-65.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 1.5,-84.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: -2.5,-84.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: -26.5,-70.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -26.5,-71.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 7389 + components: + - type: Transform + pos: 82.570206,-63.501587 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -51.3663,-6.2590327 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -51.3663,-6.2590327 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -51.3663,-6.2590327 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -3.364934,8.44294 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: -46.676056,3.7484043 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -65.73044,14.545363 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -28.452747,-54.81669 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -8.716513,-35.166092 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -8.747763,-37.275467 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: 47.727077,-68.63297 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: 78.323975,-64.10042 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: 5.606811,-63.453438 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: 4.441281,-72.48385 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.293889,-56.5763 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 7404 + components: + - type: Transform + pos: -36.457676,-62.54457 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -48.518307,23.5223 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: 48.553257,20.508253 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.724538,-91.53823 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: CableMV + entities: + - uid: 7408 + components: + - type: Transform + pos: 1.5,-72.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: -0.5,-90.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: -0.5,-73.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -1.5,-71.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -1.5,-73.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -1.5,-72.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -0.5,-89.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 1.5,-73.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: -1.5,-70.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: -0.5,-87.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: -1.5,-82.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: -1.5,-91.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -3.5,-90.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -3.5,-89.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -2.5,-91.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -0.5,-83.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: -3.5,-91.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 45.5,-46.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: 41.5,-45.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -23.5,-69.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: 63.5,5.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: 65.5,5.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 67.5,5.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 68.5,5.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 69.5,5.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: 72.5,5.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 72.5,2.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 72.5,0.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 72.5,-6.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: 72.5,-8.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: 72.5,-9.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 73.5,-10.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: -63.5,11.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: -63.5,13.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: -0.5,-59.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 46.5,-42.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 43.5,-42.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: 42.5,-42.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 41.5,-42.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 40.5,-45.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 40.5,-49.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 40.5,-51.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 40.5,-52.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 39.5,-55.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: 38.5,-55.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 41.5,-47.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: 45.5,-23.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: 41.5,-23.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 8728 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: 85.5,-45.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 8736 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: 78.5,-36.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: 83.5,-23.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: 84.5,-23.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: 85.5,-25.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: 85.5,-26.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: 85.5,-27.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 85.5,-28.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: 85.5,-32.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: 84.5,-33.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: 81.5,-33.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: 65.5,-59.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: 65.5,-57.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: 65.5,-56.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 66.5,-56.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 66.5,-53.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: 66.5,-52.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: 81.5,-21.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 80.5,-21.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: 77.5,-21.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 75.5,-21.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 74.5,-21.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: 81.5,-61.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: 81.5,-62.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 81.5,-63.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: 82.5,-64.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: 83.5,-64.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + pos: 74.5,-23.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 72.5,-23.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 71.5,-23.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: 75.5,-23.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 78.5,-26.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 78.5,-25.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 78.5,-24.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 79.5,-23.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: 80.5,-23.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: 81.5,-23.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: 82.5,-23.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 76.5,-42.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: 67.5,-53.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 68.5,-53.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 69.5,-53.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: 70.5,-53.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: 71.5,-53.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: 66.5,-51.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: 66.5,-50.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: 66.5,-48.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 66.5,-47.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 66.5,-46.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: 66.5,-44.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: 66.5,-43.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: 61.5,-40.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: 60.5,-40.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 68.5,-45.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 76.5,-45.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 77.5,-44.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 77.5,-43.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 65.5,-35.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 64.5,-35.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 63.5,-35.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: 62.5,-35.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + pos: 61.5,-35.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 60.5,-35.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 67.5,-36.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: 68.5,-36.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: 69.5,-36.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 69.5,-38.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: 63.5,-27.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: 62.5,-27.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: 69.5,-23.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: 76.5,-23.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: 77.5,-23.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: 62.5,-24.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: 60.5,-27.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: 48.5,-42.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: 24.5,-112.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: 25.5,-112.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: 26.5,-112.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: 26.5,-111.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: 26.5,-110.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: 27.5,-110.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: -17.5,44.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: -17.5,50.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: -15.5,50.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 9227 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 9229 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -9.5,-62.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: 35.5,-92.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: 33.5,-92.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: 33.5,-91.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: 33.5,-90.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: 33.5,-89.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: 34.5,-89.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: 32.5,-91.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: 31.5,-91.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: 30.5,-91.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: 29.5,-91.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: 29.5,-86.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: 30.5,-86.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: 31.5,-86.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: 27.5,-91.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: 26.5,-91.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + pos: 25.5,-91.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 24.5,-91.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + pos: 23.5,-91.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: 22.5,-91.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: 28.5,-92.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: 28.5,-93.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: 28.5,-94.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: 28.5,-95.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + pos: 28.5,-96.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: 28.5,-97.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: 28.5,-98.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: 28.5,-99.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: 28.5,-100.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: 30.5,-100.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: 31.5,-100.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: 32.5,-100.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 32.5,-99.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 32.5,-98.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + pos: 32.5,-97.5 + parent: 2 + - uid: 9281 + components: + - type: Transform + pos: 32.5,-96.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: 32.5,-95.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: 32.5,-94.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: 32.5,-93.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + pos: 32.5,-92.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + pos: 28.5,-101.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + pos: 28.5,-102.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + pos: 28.5,-103.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + pos: 28.5,-104.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + pos: 28.5,-105.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + pos: 28.5,-106.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: 28.5,-109.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + pos: 28.5,-110.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: 28.5,-111.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + pos: 29.5,-111.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 9301 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + pos: 45.5,-47.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: 45.5,-48.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: 61.5,-29.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 1.5,-91.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: 2.5,-91.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + pos: -0.5,-82.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + pos: -0.5,-91.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: -0.5,-88.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: -0.5,-85.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: 1.5,-86.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: -2.5,-86.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + pos: -4.5,-89.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: -5.5,-89.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -5.5,-88.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + pos: -5.5,-85.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + pos: -5.5,-84.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: -5.5,-83.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: -4.5,-83.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: -3.5,-83.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: -3.5,-82.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: -3.5,-81.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + pos: -2.5,-81.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + pos: -1.5,-81.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 9338 + components: + - type: Transform + pos: -51.506924,-6.1340327 + parent: 2 + - uid: 9339 + components: + - type: Transform + pos: -51.506924,-6.1340327 + parent: 2 + - uid: 9340 + components: + - type: Transform + pos: -3.489934,8.66169 + parent: 2 + - uid: 9341 + components: + - type: Transform + pos: -46.519806,3.6077793 + parent: 2 + - uid: 9342 + components: + - type: Transform + pos: -65.41794,14.607863 + parent: 2 + - uid: 9343 + components: + - type: Transform + pos: -28.562122,-54.582314 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: -8.529013,-35.369217 + parent: 2 + - uid: 9345 + components: + - type: Transform + pos: -8.544638,-37.541092 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 5.528686,-63.312813 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 47.602077,-68.53922 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: 78.5271,-64.24104 + parent: 2 + - uid: 9349 + components: + - type: Transform + pos: -51.506924,-6.1340327 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: 4.894406,-72.5151 + parent: 2 + - uid: 9351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.317141,-55.98255 + parent: 2 + - uid: 9352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.560475,-91.56168 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: CableMVStack1 + entities: + - uid: 9353 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 9363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,20.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-50.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,23.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-68.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-67.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-66.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-65.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-114.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-92.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-89.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-65.5 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 9375 + components: + - type: Transform + pos: -23.525152,40.482742 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 9376 + components: + - type: Transform + pos: -8.441639,-39.39827 + parent: 2 + - uid: 9377 + components: + - type: Transform + pos: -8.183451,-39.306458 + parent: 2 + - uid: 9378 + components: + - type: Transform + pos: 74.3515,-19.440636 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 9379 + components: + - type: Transform + pos: 74.557755,-19.534386 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: CarbonDioxideCanister + entities: + - uid: 9380 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + pos: 59.5,-37.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + pos: 8.5,-83.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + pos: 8.5,-82.5 + parent: 2 +- proto: Carpet + entities: + - uid: 9385 + components: + - type: Transform + pos: -15.5,52.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + pos: 60.5,-8.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: 62.5,-8.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + pos: 62.5,-9.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + pos: 63.5,-8.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + pos: 63.5,-9.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-8.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: -15.5,40.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: -14.5,52.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + pos: -14.5,51.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: -13.5,52.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: -12.5,52.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: 69.5,2.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: 71.5,2.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: 60.5,-29.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: 60.5,-31.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: 59.5,-29.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 9531 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 9553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,2.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: 73.5,0.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,0.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-7.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-6.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-3.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-4.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-4.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-6.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-6.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-2.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: 71.5,-3.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-2.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: 71.5,-7.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: 71.5,-5.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: 73.5,2.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,3.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,1.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,1.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,19.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,17.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,19.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,17.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,18.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,16.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 9592 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: 74.5,-9.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + pos: 70.5,-10.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: 67.5,-8.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + pos: 65.5,-8.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: 69.5,-10.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + pos: 71.5,-10.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + pos: 67.5,-10.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + pos: 74.5,-8.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: 55.5,-35.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: 57.5,-35.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 43.5,-63.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 44.5,-63.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-9.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-9.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-9.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-9.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-8.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-8.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-8.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-8.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-7.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-7.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-6.5 + parent: 2 + - uid: 9688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-6.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 2 + - uid: 9691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-1.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-2.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 9699 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: 65.5,0.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: 64.5,0.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: 63.5,0.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: 53.5,-35.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 52.5,-35.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 9720 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 9735 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 69.5,-35.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 70.5,-35.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 71.5,-33.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 71.5,-34.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 9748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 9766 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 +- proto: CartridgeRocket + entities: + - uid: 9782 + components: + - type: Transform + parent: 9781 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 9783 + components: + - type: Transform + parent: 9781 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Catwalk + entities: + - uid: 9785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-61.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-61.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-61.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-61.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-61.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-61.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: -13.5,-79.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-61.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-61.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-61.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-61.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-80.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-80.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-80.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-80.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-80.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-80.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-80.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-80.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: -14.5,-74.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + pos: 63.5,-61.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: 62.5,-61.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + pos: 60.5,-61.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + pos: 58.5,-61.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: 43.5,37.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: -55.5,29.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: -54.5,29.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + pos: -48.5,29.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: -47.5,29.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + pos: -46.5,29.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: -45.5,29.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + pos: -45.5,33.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: -55.5,33.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: -52.5,37.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + pos: -44.5,37.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + pos: -46.5,37.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + pos: -49.5,40.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + pos: -49.5,37.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + pos: -49.5,35.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + pos: -49.5,32.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + pos: -42.5,-61.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-61.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-61.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: -13.5,-81.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: -13.5,-80.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: -14.5,-80.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: -12.5,-80.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + pos: -14.5,-79.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-61.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: -53.5,-55.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: -53.5,-56.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: -53.5,-58.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + pos: -49.5,-60.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + pos: -49.5,-58.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + pos: -49.5,-57.5 + parent: 2 + - uid: 10323 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + pos: -45.5,-55.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + pos: -45.5,-56.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + pos: -45.5,-57.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + pos: -45.5,-60.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + pos: -45.5,-62.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + pos: -45.5,-64.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: -45.5,-65.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: -45.5,-66.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: -45.5,-67.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: -49.5,-62.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: -49.5,-63.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: -49.5,-64.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: -49.5,-65.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: -49.5,-66.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + pos: -49.5,-67.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + pos: -53.5,-64.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + pos: -53.5,-66.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: 81.5,-69.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 81.5,-70.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 81.5,-71.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + pos: 81.5,-72.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + pos: 81.5,-73.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + pos: 81.5,-74.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: 81.5,-75.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + pos: 81.5,-76.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + pos: 81.5,-77.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + pos: 81.5,-78.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + pos: 81.5,-79.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + pos: 81.5,-80.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + pos: 81.5,-81.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: 81.5,-82.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + pos: 81.5,-83.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + pos: 81.5,-84.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: 81.5,-85.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + pos: 80.5,-82.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: 79.5,-82.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: 78.5,-82.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: 77.5,-82.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: 76.5,-82.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: 75.5,-82.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: 82.5,-82.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: 83.5,-82.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + pos: 84.5,-82.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + pos: 85.5,-82.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: 86.5,-82.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + pos: 87.5,-82.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: 82.5,-78.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: 83.5,-78.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: 84.5,-78.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: 85.5,-78.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: 86.5,-78.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: 87.5,-78.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 80.5,-78.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + pos: 79.5,-78.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: 78.5,-78.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: 77.5,-78.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: 76.5,-78.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: 75.5,-78.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: 80.5,-74.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 79.5,-74.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: 78.5,-74.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: 77.5,-74.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + pos: 76.5,-74.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 75.5,-74.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 82.5,-74.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: 83.5,-74.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: 84.5,-74.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 85.5,-74.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 86.5,-74.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: 87.5,-74.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: 53.5,-73.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: 52.5,-73.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: 51.5,-73.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 52.5,-74.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: 53.5,-74.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + pos: 54.5,-74.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + pos: 55.5,-74.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: 56.5,-74.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: 57.5,-74.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 58.5,-74.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 59.5,-74.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 60.5,-74.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 50.5,-73.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 61.5,-73.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 49.5,-73.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: 49.5,-72.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 49.5,-71.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: 49.5,-70.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 49.5,-69.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: 52.5,-75.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: 52.5,-76.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 52.5,-77.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: 52.5,-78.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: 52.5,-79.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: 52.5,-80.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 52.5,-81.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: 52.5,-82.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: 61.5,-82.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: 61.5,-81.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 61.5,-80.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: 61.5,-79.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: 61.5,-78.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 61.5,-77.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: 61.5,-76.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 61.5,-75.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 60.5,-73.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: 61.5,-74.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 10468 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-36.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-37.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-34.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: 86.5,-3.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + pos: 85.5,-3.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + pos: 84.5,-3.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: 84.5,-5.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: 85.5,-5.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: 86.5,-5.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + pos: 86.5,-11.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: 85.5,-11.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: 84.5,-11.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: 84.5,-13.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: 85.5,-13.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: 86.5,-13.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: 34.5,-80.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: 34.5,-79.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: 34.5,-78.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-44.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-44.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-44.5 + parent: 2 + - uid: 10501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-44.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-44.5 + parent: 2 + - uid: 10503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-44.5 + parent: 2 + - uid: 10504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-44.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-44.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-44.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-39.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-41.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-43.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-37.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-80.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-71.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-80.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-80.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-79.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-74.5 + parent: 2 + - uid: 10520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-73.5 + parent: 2 + - uid: 10521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-80.5 + parent: 2 + - uid: 10522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-80.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-78.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-80.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-77.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-76.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-75.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-72.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-70.5 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: 17.5,-80.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-81.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-81.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-81.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-81.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-81.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-81.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-81.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-81.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-81.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-81.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-81.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-81.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-81.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-81.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-81.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-81.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-61.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: -12.5,-79.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-38.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-57.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-65.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-64.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-63.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-62.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-62.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + pos: 51.5,-62.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + pos: 51.5,-61.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + pos: 65.5,-61.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + pos: 81.5,-33.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + pos: 84.5,-33.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + pos: 85.5,-32.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + pos: 85.5,-28.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: 85.5,-27.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: 85.5,-26.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + pos: 85.5,-25.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + pos: 84.5,-23.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + pos: 81.5,-21.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: 80.5,-21.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 77.5,-21.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: 78.5,-19.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: 77.5,-19.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: 76.5,-18.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + pos: -14.5,-81.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: -15.5,-80.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -16.5,-80.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -17.5,-80.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -18.5,-80.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: -18.5,-82.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + pos: -18.5,-81.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: -18.5,-83.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + pos: -18.5,-84.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + pos: -18.5,-85.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + pos: -19.5,-85.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: -18.5,-86.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + pos: -19.5,-86.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + pos: -20.5,-86.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: -21.5,-86.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-44.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-44.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-44.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-44.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-44.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-44.5 + parent: 2 +- proto: Chair + entities: + - uid: 10629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-105.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: 56.5,-62.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: 57.5,-62.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + pos: 61.5,-50.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: 62.5,-50.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-36.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-61.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-28.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-29.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-28.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-29.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,11.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,22.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,41.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,38.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,17.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,11.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,0.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,23.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,34.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + pos: 81.5,-1.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: 80.5,-1.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: 78.5,-1.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-2.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-3.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-7.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-8.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-9.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-7.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-9.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-10.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-11.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-15.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,12.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,11.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-15.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-15.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-15.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-15.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,15.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,22.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,18.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,11.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-61.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,11.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,4.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-28.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-25.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-43.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-44.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-36.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-66.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-54.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-52.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-52.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-30.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-30.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + pos: 72.5,-27.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-62.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-63.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-62.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-63.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,47.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,47.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,41.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-37.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-37.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: 61.5,-39.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + pos: 72.5,6.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,12.5 + parent: 2 +- proto: ChairGreyscale + entities: + - uid: 10766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,7.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 10768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-85.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 30.5,-106.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-50.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,37.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-0.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-7.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-58.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-57.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-58.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-56.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-63.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-31.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-50.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-52.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + pos: 76.5,-25.5 + parent: 2 + - uid: 10824 + components: + - type: Transform + pos: 79.5,-25.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-67.5 + parent: 2 + - uid: 10826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + pos: 2.7203026,-11.488351 + parent: 2 + - uid: 10831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-31.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + pos: 62.5,-29.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + pos: -8.575089,-76.456116 + parent: 2 + - uid: 10834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 10837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: 39.5,-58.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-49.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-50.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-41.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-44.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: -24.5,-70.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 35.5,-53.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-20.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-17.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-23.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-17.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-17.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 10860 + components: + - type: Transform + pos: 45.5,-71.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-35.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: 42.5,-70.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-7.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-3.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-5.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-6.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-5.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-6.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-7.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-5.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-6.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-7.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + pos: 74.5,-1.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,19.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + pos: 44.5,-70.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + pos: 45.5,-70.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: 41.5,-71.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: 42.5,-71.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-35.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-34.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-34.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + pos: 44.5,-71.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + pos: 41.5,-70.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 10907 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: -61.04908,-2.3450234 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: 6.6430073,-55.03105 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: 31.641079,-23.335308 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 10911 + components: + - type: Transform + pos: 31.502064,-25.385933 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: 32.48644,-25.354683 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: 30.486439,-25.370308 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 10917 + components: + - type: Transform + pos: 37.433693,-21.149635 + parent: 2 + - uid: 10918 + components: + - type: Transform + pos: 39.449318,-21.16526 + parent: 2 + - uid: 10919 + components: + - type: Transform + pos: 39.51366,-21.398916 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: 37.46939,-21.372873 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 10921 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 10922 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: 39.5,-60.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 10926 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: 86.5,-41.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 10929 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 10931 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 10932 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 10934 + components: + - type: Transform + pos: -14.520999,41.38247 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 10935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-3.5 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 10936 + components: + - type: Transform + pos: 3.7334728,-70.64902 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: 3.2244673,-70.705536 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: 3.2244673,-70.47948 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: 3.2357783,-70.28733 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: 3.756095,-70.25342 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: 3.767406,-70.490776 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: 3.495936,-70.52469 + parent: 2 + - uid: 10943 + components: + - type: Transform + pos: 4.581814,-69.79001 + parent: 2 + - uid: 10944 + components: + - type: Transform + pos: 4.7288594,-69.756096 + parent: 2 + - uid: 10945 + components: + - type: Transform + pos: 4.513946,-69.699585 + parent: 2 + - uid: 10946 + components: + - type: Transform + pos: 4.412146,-69.66567 + parent: 2 + - uid: 10947 + components: + - type: Transform + pos: 4.2537885,-69.56395 + parent: 2 + - uid: 10948 + components: + - type: Transform + pos: 4.615747,-69.3718 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: 4.6949263,-69.3492 + parent: 2 + - uid: 10950 + components: + - type: Transform + pos: 4.6949263,-69.3492 + parent: 2 + - uid: 10951 + components: + - type: Transform + pos: 4.3329673,-69.315285 + parent: 2 +- proto: CigarGold + entities: + - uid: 10952 + components: + - type: Transform + pos: 12.548907,-14.481515 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: 12.423907,-14.49714 + parent: 2 + - uid: 10954 + components: + - type: Transform + pos: -19.48353,-66.55432 + parent: 2 + - uid: 10955 + components: + - type: Transform + pos: -29.402653,3.5422268 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: -29.512028,3.6359768 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 10957 + components: + - type: Transform + pos: -29.516005,4.760977 + parent: 2 +- proto: CigarGoldSpent + entities: + - uid: 10958 + components: + - type: Transform + pos: -10.398602,-15.412851 + parent: 2 +- proto: CigarSpent + entities: + - uid: 10959 + components: + - type: Transform + pos: -8.459225,-50.202682 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 10960 + components: + - type: Transform + pos: -4.2606964,45.836304 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 10961 + components: + - type: Transform + pos: 56.5,-62.5 + parent: 2 +- proto: CigPackRed + entities: + - uid: 10962 + components: + - type: Transform + pos: -60.502205,-2.3450234 + parent: 2 + - uid: 10963 + components: + - type: Transform + pos: 31.422329,-23.460308 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 10964 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 10965 + components: + - type: Transform + pos: 71.5,-20.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold +- proto: CleanerDispenser + entities: + - uid: 10966 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 +- proto: CloningPod + entities: + - uid: 10967 + components: + - type: Transform + pos: 46.5,-47.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 10968 + components: + - type: Transform + pos: 74.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10969 + components: + - type: Transform + pos: 74.5,-54.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetChefFilled + entities: + - uid: 10971 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 10975 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10976 + components: + - type: Transform + pos: -80.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10977 + components: + - type: Transform + pos: -80.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10978 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10979 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10980 + components: + - type: Transform + pos: -75.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10981 + components: + - type: Transform + pos: 37.5,-49.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10983 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10984 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10985 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10988 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10989 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10990 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10991 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10992 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10993 + components: + - type: Transform + pos: -73.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10994 + components: + - type: Transform + pos: 82.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10995 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10996 + components: + - type: Transform + pos: -59.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10997 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10998 + components: + - type: Transform + pos: 65.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10999 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11001 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11002 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11003 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: 41.5,-51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11005 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11006 + components: + - type: Transform + pos: 86.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11007 + components: + - type: Transform + pos: 91.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11008 + components: + - type: Transform + pos: 86.5,-59.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11009 + components: + - type: Transform + pos: 80.5,-61.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11010 + components: + - type: Transform + pos: 63.5,-70.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11011 + components: + - type: Transform + pos: 69.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11012 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + pos: 54.5,-51.5 + parent: 2 + - uid: 11014 + components: + - type: Transform + pos: 53.5,-51.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + pos: 49.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11021 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11022 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11024 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: 86.5,-53.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 11028 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + pos: 77.5,-20.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + pos: 52.5,-51.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + pos: -78.5,10.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + pos: -78.5,-5.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 11035 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + pos: -75.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11037 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11038 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11039 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11040 + components: + - type: Transform + pos: -72.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11041 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11044 + components: + - type: Transform + pos: 70.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11045 + components: + - type: Transform + pos: 86.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11046 + components: + - type: Transform + pos: 86.5,-32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11047 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 11048 + components: + - type: Transform + pos: 80.5,-54.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11049 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11050 + components: + - type: Transform + pos: -2.5,-74.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + pos: 1.5,-74.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 11053 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 11054 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 11055 + components: + - type: Transform + pos: 72.5,-54.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11057 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3SecurityFilled + entities: + - uid: 11058 + components: + - type: Transform + pos: 10.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3VirologyFilled + entities: + - uid: 11059 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + pos: 40.5,-60.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11062 + components: + - type: Transform + pos: 41.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11063 + components: + - type: Transform + pos: 41.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetLegalFilled + entities: + - uid: 11064 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 11065 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11066 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11067 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11068 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11069 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11070 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11071 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11072 + components: + - type: Transform + pos: -56.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11073 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11074 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11075 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11076 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11077 + components: + - type: Transform + pos: 55.5,-43.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11080 + components: + - type: Transform + pos: 41.5,-62.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11081 + components: + - type: Transform + pos: 32.5,-60.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11082 + components: + - type: Transform + pos: 82.5,-61.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11083 + components: + - type: Transform + pos: 84.5,-59.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11084 + components: + - type: Transform + pos: 68.5,-57.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11085 + components: + - type: Transform + pos: 84.5,-22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11086 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: 84.5,-50.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: 85.5,-50.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: 70.5,-66.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: 68.5,-66.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: 63.5,-52.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + pos: 56.5,-54.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: 58.5,-54.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: 60.5,-54.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: 62.5,-54.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + pos: 88.5,-31.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: 80.5,-33.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: 88.5,-23.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 11103 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: 79.5,-54.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11105 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11106 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11107 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11108 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11109 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: -2.5,-76.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + pos: -3.5,-76.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: -4.5,-76.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: -5.5,-74.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: -4.5,-79.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 11117 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11118 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11119 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11120 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11121 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11122 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11123 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11124 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11125 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11126 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11127 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetToolFilled + entities: + - uid: 11128 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11129 + components: + - type: Transform + pos: -67.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11130 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11131 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11132 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11133 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 +- proto: ClothingBackpackDuffel + entities: + - uid: 11135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,28.5 + parent: 2 + - type: Storage + storedItems: + 11136: + position: 0,0 + _rotation: East + 11137: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11136 + - 11137 + - 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: ClothingBackpackDuffelCaptain + entities: + - uid: 11138 + components: + - type: Transform + pos: 7.467721,-24.341362 + 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: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 1188 + components: + - type: Transform + parent: 1186 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11139 + components: + - type: Transform + pos: 19.385933,-34.408783 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - 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 + - uid: 11140 + components: + - type: Transform + pos: 21.521349,-34.408783 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - 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 + - uid: 11141 + components: + - type: Transform + pos: 33.505924,-27.30743 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: 29.482487,-27.28139 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: 52.505806,-22.31814 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -53.550213,7.7281055 + parent: 2 +- proto: ClothingBeltChampion + entities: + - uid: 11145 + components: + - type: Transform + pos: -33.527653,3.6516018 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] +- proto: ClothingBeltHolster + entities: + - uid: 11146 + components: + - type: Transform + pos: -54.62445,-11.406659 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: -23.244513,-12.108131 + parent: 2 + - type: Storage + storedItems: + 11154: + position: 0,0 + _rotation: South + 11148: + position: 1,0 + _rotation: South + 11149: + position: 2,0 + _rotation: South + 11150: + position: 3,0 + _rotation: South + 11151: + position: 1,1 + _rotation: South + 11152: + position: 2,1 + _rotation: South + 11153: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11154 + - 11148 + - 11149 + - 11150 + - 11151 + - 11152 + - 11153 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 11155 + components: + - type: Transform + pos: 46.52942,-24.449486 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: 46.43567,-24.34011 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: 46.47902,-24.41794 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 11158 + components: + - type: Transform + pos: 60.05134,-49.51496 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: -41.215458,5.5174627 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 60.47318,-17.231668 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 11162 + components: + - type: Transform + pos: -10.4692955,3.5135746 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: 51.49279,-20.449299 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -21.36098,-36.50505 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 11165 + components: + - type: Transform + pos: 5.596113,-61.594017 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: 5.550656,-72.34015 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 11167 + components: + - type: Transform + pos: 74.5232,-33.467606 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 74.5101,-30.533546 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: -44.48522,5.693037 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 11170 + components: + - type: Transform + pos: 74.511635,-31.335205 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 69.542885,-29.28833 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 11172 + components: + - type: Transform + pos: 60.02009,-49.311836 + parent: 2 + - uid: 11173 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: -3.3809297,-63.418907 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 11175 + components: + - type: Transform + pos: -12.483962,13.826879 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: 32.497746,7.719324 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: 34.51337,7.703699 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 11178 + components: + - type: Transform + pos: 46.43567,-26.324486 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 46.607544,-26.449486 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 36.869026,-40.567146 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 11181 + components: + - type: Transform + pos: 46.439957,-26.514296 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 11182 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 11184 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 11185 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 11187 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 11188 + components: + - type: Transform + pos: -17.662788,51.5307 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 2.5269985,-33.330353 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: 2.5269985,-33.330353 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 11191 + components: + - type: MetaData + name: the grey kings gloves + - type: Transform + pos: 43.508904,-73.44038 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 11192 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: -48.265545,1.3473 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: 47.523952,-66.32047 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: -42.476494,1.4685957 + parent: 2 +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 11198 + components: + - type: Transform + pos: 58.641335,-51.477516 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 11199 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 11200 + components: + - type: Transform + pos: 38.538353,-58.218132 + parent: 2 + - uid: 11201 + components: + - type: Transform + pos: 36.579914,-36.47853 + parent: 2 +- proto: ClothingHeadHatAnimalCatBrown + entities: + - uid: 11202 + components: + - type: Transform + pos: -54.557106,-7.452629 + parent: 2 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 11203 + components: + - type: Transform + pos: 41.493343,-57.314545 + parent: 2 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 11204 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 +- proto: ClothingHeadHatBunny + entities: + - uid: 11205 + components: + - type: Transform + pos: 4.5693398,6.734102 + parent: 2 +- proto: ClothingHeadHatCake + entities: + - uid: 11206 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 +- proto: ClothingHeadHatCardborg + entities: + - uid: 11207 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 +- proto: ClothingHeadHatCargosoft + entities: + - uid: 11208 + components: + - type: Transform + pos: -34.384808,-22.32279 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 11209 + components: + - type: Transform + pos: 68.47937,-55.246544 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: 68.588745,-55.41842 + parent: 2 +- proto: ClothingHeadHatChickenhead + entities: + - uid: 11211 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 +- proto: ClothingHeadHatCone + entities: + - uid: 11212 + components: + - type: Transform + pos: -13.504178,6.3556924 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 11213 + components: + - type: Transform + pos: 45.44214,-62.312943 + parent: 2 +- proto: ClothingHeadHatFez + entities: + - uid: 11214 + components: + - type: Transform + pos: 47.502956,-71.100746 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: 47.313797,-71.28293 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: 47.548172,-71.37668 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 47.690456,-71.225746 + parent: 2 +- proto: ClothingHeadHatGreysoft + entities: + - uid: 11218 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 +- proto: ClothingHeadHatHopcap + entities: + - uid: 11219 + components: + - type: Transform + pos: 9.639596,-24.450737 + parent: 2 +- proto: ClothingHeadHatOrangesoft + entities: + - uid: 11220 + components: + - type: Transform + pos: -17.569038,51.765076 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 11221 + components: + - type: Transform + pos: 57.890774,8.249944 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: 58.4689,8.515569 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: 58.25015,8.749944 + parent: 2 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 11224 + components: + - type: Transform + pos: 42.526115,-2.6703405 + parent: 2 +- proto: ClothingHeadHatTophat + entities: + - uid: 11225 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 +- proto: ClothingHeadHatTrucker + entities: + - uid: 11226 + components: + - type: Transform + pos: 48.617844,1.5353565 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 11227 + components: + - type: Transform + pos: 62.38717,18.759663 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: 62.527794,18.509663 + parent: 2 +- proto: ClothingHeadHatVioletwizard + entities: + - uid: 11136 + components: + - type: MetaData + desc: Strange-looking violet hat-wear that most certainly belongs to a real loaf user. + name: violet hat + - type: Transform + parent: 11135 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: PointLight + energy: 2 + color: '#8F00FFFF' +- proto: ClothingHeadHatWarden + entities: + - uid: 11229 + components: + - type: Transform + pos: 9.358346,-24.388237 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 11230 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 11231 + components: + - type: Transform + pos: 32.426586,-67.42694 + parent: 2 + - uid: 11232 + components: + - type: Transform + pos: -36.50452,-64.51913 + parent: 2 + - uid: 11233 + components: + - type: Transform + pos: 63.67182,-21.748547 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 11234 + components: + - type: Transform + pos: 63.249947,-20.311047 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 11235 + components: + - type: Transform + pos: -56.61541,13.4948435 + parent: 2 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 11236 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + pos: 66.852936,-76.32983 + parent: 2 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 11238 + components: + - type: Transform + pos: 2.689872,39.342834 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: 2.689872,39.624084 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: 2.689872,39.51471 + parent: 2 +- proto: ClothingHeadPaperSackSmile + entities: + - uid: 11241 + components: + - type: Transform + pos: -4.479196,-70.368164 + parent: 2 +- proto: ClothingHeadsetEngineering + entities: + - uid: 11242 + components: + - type: Transform + pos: 5.559936,-62.562813 + parent: 2 + - uid: 11243 + components: + - type: Transform + pos: -6.6034656,-72.44523 + parent: 2 + - uid: 11244 + components: + - type: Transform + pos: -6.150154,-72.42736 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 11245 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + pos: 76.5,-57.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + pos: 54.372658,-24.335497 + parent: 2 + - uid: 11250 + components: + - type: Transform + pos: 65.5,-52.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + pos: 65.5,-52.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + pos: 65.5,-52.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: -10.557705,2.6917586 + parent: 2 + - uid: 11254 + components: + - type: Transform + pos: -10.401455,2.4886336 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -10.57333,6.5823836 + parent: 2 + - uid: 11256 + components: + - type: Transform + pos: -10.401455,6.3948836 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 11257 + components: + - type: Transform + pos: 63.664223,12.6749115 + parent: 2 +- proto: ClothingMaskClown + entities: + - uid: 11258 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 11259 + components: + - type: Transform + pos: 25.30574,25.583838 + parent: 2 + - uid: 11260 + components: + - type: Transform + pos: 3.5386043,-57.543 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: 3.4292293,-55.371124 + parent: 2 + - uid: 11262 + components: + - type: Transform + pos: 3.4136043,-57.371124 + parent: 2 + - uid: 11263 + components: + - type: Transform + pos: 3.5542293,-55.4805 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 11264 + components: + - type: Transform + pos: 44.61569,-40.409645 + parent: 2 + - uid: 11265 + components: + - type: Transform + pos: -44.458595,14.399037 + parent: 2 +- proto: ClothingMaskGasSecurity + entities: + - uid: 11266 + components: + - type: Transform + pos: 4.830586,32.536835 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 4.547027,32.818085 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: 4.656402,32.724335 + parent: 2 +- proto: ClothingMaskSterile + entities: + - uid: 11269 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 +- proto: ClothingNeckBling + entities: + - uid: 11270 + components: + - type: Transform + pos: -33.543434,3.8171167 + parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 11271 + components: + - type: Transform + pos: 75.59623,12.540107 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: 25.591892,35.701836 + parent: 2 +- proto: ClothingNeckMantleRD + entities: + - uid: 11273 + components: + - type: Transform + pos: 72.42283,-33.371964 + parent: 2 +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 11274 + components: + - type: Transform + pos: 6.4443398,6.312227 + parent: 2 + - uid: 11275 + components: + - type: Transform + pos: 76.514496,-58.52488 + parent: 2 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 11276 + components: + - type: Transform + pos: 63.447033,-2.4922638 + parent: 2 + - uid: 11277 + components: + - type: Transform + pos: 39.53401,11.65906 + parent: 2 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 11278 + components: + - type: Transform + pos: 4.459541,12.414446 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: -38.611267,-58.59867 + parent: 2 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 11280 + components: + - type: Transform + pos: 21.487698,6.2927704 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 11281 + components: + - type: Transform + pos: 30.348389,-19.489916 + parent: 2 + - uid: 11282 + components: + - type: Transform + pos: 63.304848,12.495255 + parent: 2 +- proto: ClothingNeckTieRed + entities: + - uid: 11283 + components: + - type: Transform + pos: 45.295048,-62.737274 + parent: 2 +- proto: ClothingOuterApron + entities: + - uid: 11284 + components: + - type: Transform + pos: -22.495872,7.124408 + parent: 2 +- proto: ClothingOuterApronChef + entities: + - uid: 11285 + components: + - type: Transform + pos: -6.4873962,52.56498 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 11286 + components: + - type: Transform + pos: 0.54769325,39.79596 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 0.71956825,39.592834 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: 0.81331825,39.405334 + parent: 2 +- proto: ClothingOuterArmorReflective + entities: + - uid: 11289 + components: + - type: Transform + pos: 0.3043524,39.56628 + parent: 2 + - uid: 11290 + components: + - type: Transform + pos: 0.4762274,39.44128 + parent: 2 + - uid: 11291 + components: + - type: Transform + pos: 0.6793524,39.28503 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 11292 + components: + - type: Transform + pos: 2.330497,39.530334 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: 2.346122,39.38971 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: 2.314872,39.67096 + parent: 2 +- proto: ClothingOuterCardborg + entities: + - uid: 11295 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 +- proto: ClothingOuterCoatBomber + entities: + - uid: 11296 + components: + - type: Transform + pos: -46.493744,14.462048 + parent: 2 +- proto: ClothingOuterCoatPirate + entities: + - uid: 11297 + components: + - type: Transform + pos: 57.9064,7.9061937 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: 58.514145,8.160378 + parent: 2 + - uid: 11299 + components: + - type: Transform + pos: 58.27977,8.379128 + parent: 2 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 11300 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + pos: 66.509186,-76.72045 + parent: 2 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 11302 + components: + - type: Transform + pos: 0.37893665,35.52849 + parent: 2 + - uid: 11303 + components: + - type: Transform + pos: 0.37893665,35.52849 + parent: 2 + - uid: 11305 + components: + - type: Transform + parent: 11304 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11307 + components: + - type: Transform + parent: 11306 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHoodieGrey + entities: + - uid: 11308 + components: + - type: Transform + pos: 47.616776,-72.55742 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: 47.41365,-72.40117 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: 47.60115,-72.260544 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: 47.72615,-72.416794 + parent: 2 +- proto: ClothingOuterSuitFire + entities: + - uid: 11312 + components: + - type: Transform + pos: 27.448183,21.624187 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: 76.5,-57.5 + parent: 2 +- proto: ClothingOuterSuitMonkey + entities: + - uid: 11314 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 +- proto: ClothingOuterVestHazard + entities: + - uid: 11315 + components: + - type: Transform + pos: -5.4336033,-45.463356 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: 3.5698543,-57.402374 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: 3.6323543,-55.32425 + parent: 2 +- proto: ClothingOuterWinterAtmos + entities: + - uid: 11318 + components: + - type: Transform + pos: 4.4599648,6.546602 + parent: 2 +- proto: ClothingOuterWinterPara + entities: + - uid: 11319 + components: + - type: Transform + pos: 22.537373,-27.38887 + parent: 2 +- proto: ClothingShoesBootsCombat + entities: + - uid: 11320 + components: + - type: Transform + pos: -18.519972,12.388156 + parent: 2 + - uid: 11321 + components: + - type: Transform + pos: 68.49056,16.310373 + parent: 2 +- proto: ClothingShoesBootsJack + entities: + - uid: 11322 + components: + - type: Transform + pos: -46.62844,-8.645075 + parent: 2 + - uid: 11323 + components: + - type: Transform + pos: 88.4803,-26.689615 + parent: 2 + - uid: 11324 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 11325 + components: + - type: Transform + pos: -6.5397058,4.585363 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: -6.3834558,4.429113 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: 66.39981,-80.5017 + parent: 2 +- proto: ClothingShoesBootsWork + entities: + - uid: 11328 + components: + - type: MetaData + name: nt approved fashionable workboot + - type: Transform + pos: 5.286043,8.349777 + parent: 2 +- proto: ClothingShoesFlippers + entities: + - uid: 11329 + components: + - type: Transform + pos: 70.422775,14.622831 + parent: 2 + - uid: 11330 + components: + - type: Transform + pos: 37.220516,13.029548 + parent: 2 + - uid: 11331 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 11332 + components: + - type: Transform + pos: 45.466923,-63.487274 + parent: 2 +- proto: ClothingShoesSlippers + entities: + - uid: 11333 + components: + - type: Transform + pos: 54.483116,-49.66147 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: -15.657842,47.202713 + parent: 2 +- proto: ClothingUnderSocksBee + entities: + - uid: 11335 + components: + - type: Transform + pos: 75.39761,12.476688 + parent: 2 +- proto: ClothingUnderSocksCoder + entities: + - uid: 11336 + components: + - type: Transform + pos: -38.47627,-56.748375 + parent: 2 + - uid: 11337 + components: + - type: Transform + pos: 1.4697213,-22.60485 + parent: 2 +- proto: ClothingUniformJumpskirtCargo + entities: + - uid: 11338 + components: + - type: Transform + pos: 86.500694,-27.4936 + parent: 2 +- proto: ClothingUniformJumpskirtPencilSkirtGymBra + entities: + - uid: 11339 + components: + - type: Transform + pos: -39.04966,-9.308222 + parent: 2 +- proto: ClothingUniformJumpsuitCargo + entities: + - uid: 11340 + components: + - type: Transform + pos: 86.478195,-26.548601 + parent: 2 +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 11341 + components: + - type: Transform + pos: 3.5698543,-57.464874 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: 3.6011043,-55.402374 + parent: 2 +- proto: ClothingUniformJumpsuitHawaiRed + entities: + - uid: 11343 + components: + - type: Transform + pos: 30.594074,11.439555 + parent: 2 +- proto: ClothingUniformJumpsuitHawaiYellow + entities: + - uid: 11344 + components: + - type: Transform + pos: 36.594074,9.51768 + parent: 2 +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 11345 + components: + - type: Transform + pos: 11.533777,-27.416641 + parent: 2 +- proto: ClothingUniformJumpsuitYogaGymBra + entities: + - uid: 11346 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -39.348175,-9.483249 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingUniformMNKGymBra + entities: + - uid: 11347 + components: + - type: Transform + pos: -39.60956,-9.373326 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 11348 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + pos: 43.5,-44.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + pos: 51.5,-43.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: 84.5,-35.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: 64.5,-68.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: 84.5,-55.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 11361 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + pos: 70.5,-55.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: 46.5,-44.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + pos: 86.5,-34.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + pos: 47.5,-70.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + pos: 71.5,-59.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + pos: 70.5,-55.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + pos: 86.5,-40.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: 86.5,-21.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 +- proto: CockroachTimedSpawner + entities: + - uid: 11373 + components: + - type: Transform + pos: 86.5,-34.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 11374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,15.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-55.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-53.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,13.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-10.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-10.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-10.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,14.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-3.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-3.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-7.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-57.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-54.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,41.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,40.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,40.5 + parent: 2 + - uid: 11432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,41.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,53.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,51.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-3.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 11437 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 11438 + components: + - type: Transform + pos: -13.487051,-36.526093 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-84.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 11442 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-57.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-77.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + pos: -5.5,-79.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 11446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-26.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + pos: 71.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19415: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 11448 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 11451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 11452 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 11453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-23.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 11456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 11457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 11459 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-41.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-25.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 11466 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 11473 + components: + - type: Transform + pos: 30.5,-105.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 1050 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 19283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 20012 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 23916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-41.5 + parent: 2 + - uid: 28677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-36.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 11478 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 11479 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-42.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-21.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 11482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-85.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-75.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-58.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-77.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + pos: 4.5,-79.5 + parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 13545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-31.5 + parent: 2 + - uid: 20827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-35.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 11492 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 11495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-50.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-31.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-34.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-26.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-20.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 11502 + components: + - type: Transform + pos: 73.5,-33.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 1025 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 11503 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 11506 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,19.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,22.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + pos: -2.5,-66.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-64.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-43.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-75.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 11514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 11516 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 11521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 11522 + components: + - type: Transform + pos: 72.5,-17.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 11523 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 +- proto: ComputerVDU + entities: + - uid: 11527 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 2 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 11530 + components: + - type: Transform + parent: 11529 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11531 + components: + - type: Transform + parent: 11529 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11532 + components: + - type: Transform + parent: 11529 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11533 + components: + - type: Transform + parent: 11529 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11534 + components: + - type: Transform + parent: 11529 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ConveyorBelt + entities: + - uid: 11535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24279 + - uid: 11537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24276 + - uid: 11538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11540 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24279 + - uid: 11554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24279 + - uid: 11561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24275 + - uid: 11562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 24276 + - uid: 11563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24279 + - uid: 11564 + components: + - type: Transform + pos: 90.5,-26.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-20.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-20.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-22.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-22.5 + parent: 2 +- proto: ConveyorBeltAssembly + entities: + - uid: 11569 + components: + - type: Transform + pos: 89.5,-23.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: 90.5,-23.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: 90.5,-24.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + pos: 90.5,-25.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + pos: 90.5,-30.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: 90.5,-29.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + pos: 90.5,-28.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + pos: 90.5,-27.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 11577 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 +- proto: CowToolboxFilled + entities: + - uid: 11578 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 11579 + components: + - type: Transform + pos: 80.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11580 + components: + - type: Transform + pos: 72.5,-43.5 + parent: 2 +- proto: CrateCoffin + entities: + - uid: 11581 + components: + - type: Transform + pos: 63.5,-43.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: 74.5,5.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: 73.5,5.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: 73.5,1.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: 73.5,2.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 11586 + components: + - type: Transform + pos: 59.5,-43.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + pos: 60.5,-43.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + pos: 57.5,-43.5 + parent: 2 + - uid: 11589 + components: + - type: Transform + pos: 58.5,-43.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 11591 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 11593 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 2 + - uid: 11596 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 11597 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 11600 + components: + - type: Transform + pos: 4.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11606 + - 11602 + - 11605 + - 11601 + - 11604 + - 11603 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11607 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11609 + - 11610 + - 11613 + - 11608 + - 11611 + - 11616 + - 11612 + - 11614 + - 11615 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEShielding + entities: + - uid: 11617 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 11618 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11619 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 11621 + components: + - type: Transform + pos: -13.5,-64.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: + - 11622 + - 11623 + - 11625 + - 11626 + - 11627 + - 11624 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringShuttle + entities: + - uid: 11628 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 11529 + components: + - type: Transform + pos: -13.5,-66.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: + - 11530 + - 11531 + - 11532 + - 11533 + - 11534 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 11629 + components: + - type: Transform + pos: -13.5,-65.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: + - 11630 + - 11631 + - 11632 + - 11633 + - 11634 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringTEGKit + entities: + - uid: 11635 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 11636 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 11638 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 11640 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 11641 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 11654 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 11657 + components: + - type: Transform + pos: 60.5,-48.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11659 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11660 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11661 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11662 + components: + - type: Transform + pos: 90.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11663 + components: + - type: Transform + pos: 89.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateHydroponicsSeeds + entities: + - uid: 11664 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11665 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalScrubs + entities: + - uid: 11666 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 11667 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: CratePlasma + entities: + - uid: 11668 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 +- proto: CrateRCD + entities: + - uid: 11669 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 +- proto: CrateRCDAmmo + entities: + - uid: 11670 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 +- proto: CrateScienceBiosuit + entities: + - uid: 11671 + components: + - type: Transform + pos: 68.5,-53.5 + parent: 2 +- proto: CrateScienceSecure + entities: + - uid: 11672 + components: + - type: Transform + pos: 74.5,-25.5 + parent: 2 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11673 + components: + - type: Transform + pos: 79.5,-49.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 2 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 11675 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 11676 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 +- proto: CrateServiceReplacementLights + entities: + - uid: 11677 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateTrashCart + entities: + - uid: 11678 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: -57.5,-20.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: 84.5,-28.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 11682 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 +- proto: CrateWooden + entities: + - uid: 1207 + components: + - type: Transform + pos: -38.5,24.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: + - 1208 + - 1209 + - 1210 + - 1211 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 11683 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 +- proto: Crematorium + entities: + - uid: 11687 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 11688 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 11689 + components: + - type: Transform + pos: 12.532225,-14.882653 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -41.50533,1.5813448 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -37.449833,2.5174625 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -56.729946,3.644562 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: -24.345285,-43.747276 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: 63.478237,-20.930044 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: 65.5,-53.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: 40.48116,-72.5237 + parent: 2 + - uid: 11700 + components: + - type: Transform + pos: 6.283613,-61.859642 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 11701 + components: + - type: Transform + pos: 37.623848,-35.553123 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: 46.515873,-24.514837 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: 22.569855,-27.340778 + parent: 2 + - uid: 11704 + components: + - type: Transform + pos: 30.591396,-30.417545 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: 46.515873,-24.514837 + parent: 2 + - uid: 11706 + components: + - type: Transform + pos: 46.515873,-24.514837 + parent: 2 + - uid: 11707 + components: + - type: Transform + pos: 44.418518,-40.49871 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: 45.556767,-44.404213 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 11709 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 11712 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 11714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,19.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerPrisoner + entities: + - uid: 11716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,43.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 11717 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 11719 + components: + - type: Transform + pos: 29.671877,-32.312553 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: 29.484377,-32.156303 + parent: 2 +- proto: CurtainsBlackOpen + entities: + - uid: 11721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-74.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-74.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-74.5 + parent: 2 +- proto: CurtainsPurpleOpen + entities: + - uid: 11724 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 +- proto: d10Dice + entities: + - uid: 11729 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: d12Dice + entities: + - uid: 11731 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: d20Dice + entities: + - uid: 11733 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 +- proto: d4Dice + entities: + - uid: 11737 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 +- proto: d6Dice + entities: + - uid: 11740 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: -14.755374,40.835594 + parent: 2 + - uid: 11745 + components: + - type: Transform + pos: -14.567874,40.56997 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: 56.501217,-34.290268 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: 20.361593,-9.293598 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: 20.517843,-9.418598 + parent: 2 +- proto: d8Dice + entities: + - uid: 11749 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 +- proto: DecorBarrels + entities: + - uid: 11752 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 +- proto: DecorFloorPaper + entities: + - uid: 11754 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: DecorFloorPaper1 + entities: + - uid: 11755 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11756 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: DecorFloorPaper3 + entities: + - uid: 11757 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 11758 + components: + - type: Transform + pos: 73.5,-52.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 11759 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 11760 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 11761 + components: + - type: Transform + pos: 79.5,-24.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + pos: 73.5,-44.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 11763 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 11764 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 11765 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 11766 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 11767 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 11768 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 11769 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 11770 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 11771 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 11772 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 11773 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 11774 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 11775 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 11777 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 11778 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 11779 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 11780 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 11781 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 11782 + components: + - type: Transform + pos: 81.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 11783 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 11784 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 11785 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 11786 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 11787 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 11788 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 +- proto: DefaultStationBeaconMantis + entities: + - uid: 11789 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 11790 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconMetempsychosis + entities: + - uid: 11791 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 11792 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 11793 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 11794 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 11795 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 11796 + components: + - type: Transform + pos: 70.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconReporter + entities: + - uid: 11797 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 11798 + components: + - type: Transform + pos: 72.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 11799 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 11800 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 11801 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 11803 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 11804 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 11808 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 11809 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 11810 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 11811 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 11812 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 11813 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 11814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,30.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 11819 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 11821 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - type: Physics + canCollide: False + bodyType: Static + - uid: 11822 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - type: Physics + canCollide: False + bodyType: Static + - uid: 11823 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - type: Physics + canCollide: False + bodyType: Static +- proto: DiseaseDiagnoser + entities: + - uid: 11824 + components: + - type: Transform + pos: 41.5,-58.5 + parent: 2 +- proto: DisgustingSweptSoup + entities: + - uid: 11825 + components: + - type: Transform + pos: 38.567345,-70.52471 + parent: 2 +- proto: DisposalBend + entities: + - uid: 11826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-62.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,14.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,34.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,31.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,30.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,26.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,23.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,37.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-33.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-30.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,2.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,10.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,0.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: 66.5,0.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-32.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-18.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-27.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-52.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-52.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-51.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-33.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-59.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-60.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-60.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-59.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-62.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-67.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-67.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-34.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-57.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-62.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-65.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-65.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-62.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-35.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-45.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-42.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-33.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-60.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-22.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + pos: 51.5,-40.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-62.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-61.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-61.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-56.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-56.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-53.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-43.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-36.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-40.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-60.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-21.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-32.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-33.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-30.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-55.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-17.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-80.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 11990 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-15.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,3.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,23.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,5.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-62.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-38.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-67.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 12012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,17.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 +- proto: DisposalMachineFrame + entities: + - uid: 12034 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 12035 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: -0.5,-69.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: -0.5,-70.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -0.5,-73.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -0.5,-71.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-67.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-72.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-76.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-74.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-69.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-17.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-30.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-30.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-63.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-66.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-64.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-62.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,1.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,0.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-15.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 12140 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,22.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,17.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,17.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,8.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,10.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,35.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,21.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,27.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,28.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,30.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,26.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,26.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,26.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,26.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,23.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-30.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-30.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,3.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,3.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,10.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,10.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,10.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,10.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,10.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,10.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,9.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,8.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,4.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,3.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,2.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,2.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-9.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-8.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-7.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-4.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-0.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,0.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,0.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,0.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,5.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,5.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,5.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,0.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-4.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-3.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-2.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-0.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 12425 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-18.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-18.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-4.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-3.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-16.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-15.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-13.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-11.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-33.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 12473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-67.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-59.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-24.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-23.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-22.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-21.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-52.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-50.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-51.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-52.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-52.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-52.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-52.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-62.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-46.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-45.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-44.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-43.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-42.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-41.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-40.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-39.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-38.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-37.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-36.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-33.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-33.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-59.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-59.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-59.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-59.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-60.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-60.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-67.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-66.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-65.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-64.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-63.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-62.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-61.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-60.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-59.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-58.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-57.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-67.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-67.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-67.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-67.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-67.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-32.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-53.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-48.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-47.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-46.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-45.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-40.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-38.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-38.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-38.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-38.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-38.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-38.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-57.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-57.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-57.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-58.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-59.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-60.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-61.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-62.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-62.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-62.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-65.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-65.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-65.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-65.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-65.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-65.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-64.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-63.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-62.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-17.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-22.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-26.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-27.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-32.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-33.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-34.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-36.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-37.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-33.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-34.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-35.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-35.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-35.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-35.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-32.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-42.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-42.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-42.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-42.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-42.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-42.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-42.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-46.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-49.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-49.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-49.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-49.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-49.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-49.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-49.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-49.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-62.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-39.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-59.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-58.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-57.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-56.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-55.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-54.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-53.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-52.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-51.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-50.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-40.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-62.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-61.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-61.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-61.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-61.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-61.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-61.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-61.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-61.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-61.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-61.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-61.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-61.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-61.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 65.5,-59.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 65.5,-57.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-60.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-60.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-60.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-60.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-60.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-60.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-60.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-60.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-60.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-60.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-60.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-60.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-60.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-60.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-60.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-60.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-59.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-58.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-57.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-56.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-55.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-54.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-53.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-52.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-51.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-50.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-49.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-48.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-47.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-46.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-45.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-44.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-43.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-42.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-41.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-39.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-38.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-37.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-36.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-36.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-36.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 12905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-43.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-43.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-43.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-43.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-43.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-43.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-33.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-33.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-31.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-30.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-29.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-28.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-27.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-26.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-25.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-24.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-23.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-23.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-23.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-23.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-20.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-21.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-21.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-21.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-21.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-21.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-21.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-21.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-21.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-21.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-19.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-18.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-40.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-41.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-42.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-43.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-45.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-46.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-47.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-48.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-49.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-52.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-53.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-39.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-38.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-55.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-53.5 + parent: 2 + - uid: 13003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-52.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-28.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-26.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-25.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-15.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-10.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-22.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,25.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,26.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-23.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-13.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-13.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-13.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-13.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-13.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-13.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-13.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-13.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-13.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-13.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-13.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-13.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: 70.5,-14.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + pos: 70.5,-15.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-21.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-26.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-65.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-31.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-78.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-73.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-77.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-75.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-70.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-71.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-80.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-80.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-80.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-80.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-80.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-80.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-80.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-80.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-80.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-80.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-80.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-80.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-79.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-80.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-80.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-80.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + pos: -0.5,-72.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 2 +- proto: DisposalRouter + entities: + - uid: 13229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 2 + - type: DisposalRouter + tags: + - engineering + - uid: 13230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - type: DisposalRouter + tags: + - science + - uid: 13231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 2 + - type: DisposalRouter + tags: + - medical + - uid: 13232 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - type: DisposalRouter + tags: + - mailroom + - uid: 13233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: DisposalRouter + tags: + - security +- proto: DisposalRouterFlipped + entities: + - uid: 13234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 2 + - type: DisposalRouter + tags: + - hop + - uid: 13235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 2 + - type: DisposalRouter + tags: + - bridge +- proto: DisposalTrunk + entities: + - uid: 13236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-15.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,22.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,30.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-10.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-5.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-27.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-23.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-43.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-47.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-60.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-41.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-22.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-53.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-43.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-17.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-31.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 11.5,-68.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-80.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-74.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-70.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 13297 + components: + - type: Transform + pos: 11.5,-68.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: 66.5,-10.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: 79.5,-23.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 43.5,-47.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: 41.5,-60.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: 51.5,-41.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + pos: 73.5,-37.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: 67.5,-53.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: 70.5,-43.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 27.5,-80.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: -0.5,-74.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 13350 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-47.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-49.5 + parent: 2 +- proto: DogBed + entities: + - uid: 13355 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 13356 + components: + - type: MetaData + name: fox bed + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 13357 + components: + - type: MetaData + name: cat bed + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 13361 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + pos: 60.5,-45.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + pos: 69.5,-57.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 13366 + components: + - type: Transform + pos: -22.349255,-5.634054 + parent: 2 +- proto: Dresser + entities: + - uid: 13367 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 13371 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 13372 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 13373 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 13374 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 24307 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 13376 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 13377 + components: + - type: Transform + pos: 71.5,-33.5 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 13378 + components: + - type: Transform + pos: -35.58965,-31.203526 + parent: 2 + - uid: 13379 + components: + - type: Transform + pos: -35.386524,-31.34415 + parent: 2 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 13380 + components: + - type: Transform + pos: 37.005104,-40.31572 + parent: 2 +- proto: DrinkFlask + entities: + - uid: 13381 + components: + - type: Transform + pos: 6.5888987,-21.789806 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 13382 + components: + - type: Transform + pos: 12.517619,-16.195152 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -33.51487,5.3832693 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 13384 + components: + - type: Transform + pos: 3.3560345,-11.363264 + parent: 2 +- proto: DrinkMugBlack + entities: + - uid: 13385 + components: + - type: Transform + pos: 53.98643,-33.364586 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 13386 + components: + - type: Transform + pos: 54.439556,-33.34896 + parent: 2 + - uid: 13387 + components: + - type: Transform + pos: 44.369675,-33.263916 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 13388 + components: + - type: Transform + pos: 44.5103,-33.46704 + parent: 2 +- proto: DrinkMugHeart + entities: + - uid: 13389 + components: + - type: Transform + pos: 44.6978,-33.27954 + parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 13390 + components: + - type: Transform + pos: 54.220806,-33.552086 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 13391 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 +- proto: Dropper + entities: + - uid: 13392 + components: + - type: Transform + pos: 74.3515,-18.443996 + parent: 2 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 13393 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 13394 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13395 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13396 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13397 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13398 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13399 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13401 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13402 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13404 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13406 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13409 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13410 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13413 + components: + - type: Transform + pos: 39.5,-55.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-22.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13415 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13419 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight +- proto: EmergencyOxygenTank + entities: + - uid: 13421 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 13423 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + pos: 69.43106,-78.4392 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 13425 + components: + - type: Transform + pos: 44.416363,-24.520304 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: 44.473812,-24.483046 + parent: 2 + - uid: 13427 + components: + - type: Transform + pos: 44.473812,-24.483046 + parent: 2 +- proto: Emitter + entities: + - uid: 13428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-88.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-86.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-86.5 + parent: 2 +- proto: EmitterFlatpack + entities: + - uid: 11630 + components: + - type: Transform + parent: 11629 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11631 + components: + - type: Transform + parent: 11629 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11632 + components: + - type: Transform + parent: 11629 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11633 + components: + - type: Transform + parent: 11629 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11634 + components: + - type: Transform + parent: 11629 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: EncryptionKeyCargo + entities: + - uid: 13432 + components: + - type: Transform + parent: 13431 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 13434 + components: + - type: Transform + parent: 13433 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 13436 + components: + - type: Transform + parent: 13435 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 13438 + components: + - type: Transform + parent: 13437 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 13440 + components: + - type: Transform + parent: 13439 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 13442 + components: + - type: Transform + parent: 13441 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 13444 + components: + - type: Transform + parent: 13443 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 13446 + components: + - type: Transform + parent: 13445 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 13447 + components: + - type: Transform + pos: 28.311075,-36.153137 + parent: 2 + - uid: 13448 + components: + - type: Transform + pos: 31.315506,-36.179176 + parent: 2 + - uid: 13449 + components: + - type: Transform + pos: 20.178265,-36.16297 + parent: 2 + - uid: 13450 + components: + - type: Transform + pos: 19.956911,-36.43641 + parent: 2 + - uid: 13451 + components: + - type: Transform + pos: 19.904827,-36.136932 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 13452 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 13454 + components: + - type: Transform + pos: 3.4136043,-57.3555 + parent: 2 + - uid: 13455 + components: + - type: Transform + pos: 3.4136043,-57.3555 + parent: 2 + - uid: 13456 + components: + - type: Transform + pos: 3.4292293,-55.293 + parent: 2 + - uid: 13457 + components: + - type: Transform + pos: 3.4292293,-55.293 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 13458 + components: + - type: Transform + pos: 31.5,-106.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: 69.5,-47.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13464 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13466 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13467 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13469 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: 38.5,-52.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: 48.5,-56.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: 25.5,-88.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: 31.5,-88.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 1.5,-82.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: -2.5,-82.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -4.5,-88.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 1.5,-90.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 13516 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - type: FaxMachine + name: CE Office + - uid: 13517 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - type: FaxMachine + name: CMO Office + - uid: 13518 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - type: FaxMachine + name: Conference Room + - uid: 13519 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - type: FaxMachine + name: Morgue + - uid: 13520 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - type: FaxMachine + name: Engineering + - uid: 13521 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - type: FaxMachine + name: QM Office + - uid: 13522 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - type: FaxMachine + name: Law Office + - uid: 13523 + components: + - type: Transform + pos: 71.5,-37.5 + parent: 2 + - type: FaxMachine + name: RD + - uid: 13524 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - type: FaxMachine + name: HoS + - uid: 13525 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - type: FaxMachine + name: Mail Room + - uid: 13526 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - type: FaxMachine + name: Library + - uid: 13527 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - type: FaxMachine + name: Medical + - uid: 13528 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 +- proto: FaxMachineCaptain + entities: + - uid: 13529 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - type: FaxMachine + name: Captain +- proto: FigureSpawner + entities: + - uid: 13530 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 13532 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 13538 + components: + - type: Transform + pos: 69.5,-49.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 13546 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 13547 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 +- proto: filingCabinetTall + entities: + - uid: 13550 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 13551 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 604 + - 13887 + - 13845 + - 13846 + - 13888 + - uid: 13552 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 13827 + - 13826 + - 13640 + - 13659 + - 13650 + - 13647 + - 13649 + - 13648 + - 617 + - uid: 13553 + components: + - type: Transform + pos: 68.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 13710 + - 13711 + - 13712 + - 594 + - uid: 13554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - type: DeviceList + devices: + - 13708 + - 13709 + - 13706 + - 13889 + - 13847 + - 688 + - uid: 13555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 13698 + - 13700 + - 13823 + - 628 + - 13863 + - uid: 13556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 13738 + - 13739 + - 13736 + - 13752 + - 13760 + - 13761 + - 620 + - uid: 13557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 681 + - 13924 + - 13923 + - 13825 + - 13831 + - 13699 + - 13830 + - 13868 + - 13869 + - uid: 13558 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 13676 + - 13657 + - 13652 + - 13658 + - 13682 + - 13651 + - 596 + - uid: 13559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 13651 + - 13682 + - 13658 + - 13652 + - 13657 + - 13676 + - 13848 + - 13654 + - 13655 + - 13656 + - 13642 + - 13653 + - 13641 + - 602 + - uid: 13560 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - type: DeviceList + devices: + - 13845 + - 13846 + - 13847 + - 13889 + - 600 + - uid: 13561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 13738 + - 13739 + - 13736 + - 13752 + - 13760 + - 13761 + - 620 + - uid: 13562 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 13671 + - 13672 + - 13680 + - 13681 + - 13669 + - 13670 + - 13667 + - 13668 + - 643 + - uid: 13563 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 641 + - 13665 + - 13666 + - 13678 + - 13679 + - 13667 + - 13668 + - 13670 + - 13669 + - uid: 13564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 13651 + - 13682 + - 13658 + - 13652 + - 13657 + - 13676 + - 13848 + - 13654 + - 13655 + - 13656 + - 13642 + - 13653 + - 13641 + - 602 + - uid: 13565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 13886 + - 13859 + - 603 + - 13856 + - 13855 + - 13854 + - 13853 + - 13852 + - 13851 + - uid: 13566 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 606 + - 13742 + - 13771 + - 13770 + - uid: 13567 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 13742 + - 13771 + - 13770 + - 607 + - 13722 + - 13718 + - 13773 + - 13740 + - 13741 + - 13832 + - 13824 + - uid: 13568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 608 + - 13719 + - uid: 13569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 13819 + - 13820 + - 13821 + - 611 + - 13822 + - 13833 + - 13834 + - uid: 13570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 13819 + - 13820 + - 13821 + - 611 + - 13822 + - 13833 + - 13834 + - uid: 13571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 13703 + - 13702 + - 13701 + - 13749 + - 13747 + - 13750 + - 615 + - 13819 + - 13820 + - 13821 + - 614 + - 13773 + - 13740 + - 13741 + - 13816 + - uid: 13572 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13703 + - 13702 + - 13701 + - 13749 + - 13747 + - 13750 + - 615 + - 13819 + - 13820 + - 13821 + - 614 + - 13773 + - 13740 + - 13741 + - 13816 + - uid: 13573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 618 + - 13816 + - uid: 13574 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13755 + - 13754 + - 13748 + - 13675 + - 13674 + - 619 + - 13822 + - 13833 + - 13834 + - 13735 + - 13734 + - 13737 + - uid: 13575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 621 + - 13738 + - 13739 + - 13736 + - 13735 + - 13734 + - 13737 + - 13808 + - 13809 + - 13810 + - uid: 13576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13884 + - 13885 + - 623 + - 17410 + - uid: 13577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 13804 + - 13805 + - 13806 + - 13807 + - 625 + - 13774 + - uid: 13578 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 13776 + - 13777 + - 626 + - uid: 13579 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13810 + - 13809 + - 13808 + - 13884 + - 13885 + - 13698 + - 13817 + - 13828 + - 13829 + - 13818 + - 13789 + - 13787 + - 627 + - 13813 + - 13812 + - 13811 + - 13805 + - 13804 + - 13806 + - 13807 + - uid: 13580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13823 + - 13700 + - 13817 + - 13828 + - 13829 + - 629 + - 13818 + - 13789 + - 13787 + - uid: 13581 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 13864 + - 13865 + - 13717 + - 13768 + - 13849 + - 13850 + - 630 + - uid: 13582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13759 + - 13716 + - 13721 + - 13720 + - 631 + - uid: 13583 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13759 + - 13716 + - 13849 + - 13850 + - 633 + - 13757 + - 13715 + - 13758 + - uid: 13584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 13757 + - 13715 + - 13758 + - 636 + - uid: 13585 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13803 + - 13802 + - 13801 + - 13792 + - 13793 + - 638 + - 13813 + - 13812 + - 13811 + - 13776 + - 13777 + - 639 + - 13663 + - 13662 + - 13664 + - uid: 13586 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13803 + - 13802 + - 13801 + - 13792 + - 13793 + - 638 + - 13813 + - 13812 + - 13811 + - 13776 + - 13777 + - 639 + - uid: 13587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13803 + - 13802 + - 13801 + - 640 + - 13663 + - 13662 + - 13664 + - uid: 13588 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 644 + - 13793 + - 13794 + - uid: 13589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 13795 + - 13796 + - 13797 + - 13798 + - 13799 + - 13800 + - 645 + - 13714 + - 13713 + - 13724 + - 13705 + - 13704 + - uid: 13590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13800 + - 13799 + - 13798 + - 646 + - 13792 + - uid: 13591 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 13728 + - 13729 + - 13730 + - 13731 + - 13732 + - 13861 + - 650 + - uid: 13592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 13725 + - 13726 + - 13727 + - 651 + - 13710 + - 13711 + - 13712 + - uid: 13593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 13713 + - 13714 + - 13724 + - 13725 + - 13726 + - 13727 + - 652 + - uid: 13594 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 656 + - 13827 + - uid: 13595 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13744 + - 13769 + - 13772 + - 13703 + - 13702 + - 13701 + - 659 + - uid: 13596 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 13744 + - 13769 + - 13772 + - 661 + - 13746 + - 13751 + - 13745 + - uid: 13597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 665 + - 13749 + - 13747 + - 13750 + - 13755 + - 13754 + - 13748 + - 13767 + - 13786 + - 13783 + - 666 + - uid: 13598 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 665 + - 13749 + - 13747 + - 13750 + - 13755 + - 13754 + - 13748 + - 13767 + - 13786 + - 13783 + - 666 + - uid: 13599 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 13767 + - 13786 + - 13783 + - 13780 + - 13784 + - 667 + - 668 + - uid: 13600 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 672 + - 13766 + - 13763 + - 13764 + - uid: 13601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 13763 + - 13764 + - 673 + - 13862 + - uid: 13602 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 13825 + - 13831 + - 13699 + - 13830 + - 13746 + - 13751 + - 13745 + - 680 + - 679 + - 13788 + - uid: 13603 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 682 + - 13869 + - 13868 + - uid: 13604 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 683 + - 13867 + - 13866 + - uid: 13605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 13717 + - 13768 + - 13720 + - 13721 + - uid: 13606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 685 + - uid: 13607 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 623 + - 13677 + - 13900 + - 13895 + - 13896 + - 13897 + - 13898 + - 13899 + - uid: 13608 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 17436 + - 687 + - 17234 + - uid: 13609 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 17434 + - 17238 + - 686 + - uid: 13610 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 13914 + - 13756 + - 13753 + - uid: 13611 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - type: DeviceList + devices: + - 13889 + - 13847 + - 688 +- proto: FireAxeCabinetFilled + entities: + - uid: 13612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-68.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 13614 + components: + - type: Transform + pos: 59.55134,-49.311836 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: 27.65475,21.45491 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: 76.5,-57.5 + parent: 2 +- proto: Firelock + entities: + - uid: 13617 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 13618 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 13619 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - uid: 13620 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - uid: 13621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - uid: 13622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - uid: 13623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 13624 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 13625 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 13626 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 13627 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 13628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-82.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 95 + - 96 + - uid: 13630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 95 + - 96 + - uid: 13631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 96 + - uid: 13632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 13633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 13634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-66.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: 0.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - 101 + - uid: 13636 + components: + - type: Transform + pos: -1.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - 101 + - uid: 13637 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 13638 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - uid: 13639 + components: + - type: Transform + pos: 10.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 +- proto: FirelockEdge + entities: + - uid: 13640 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,6.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 13653 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-34.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-34.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-34.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-29.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-60.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-60.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-14.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-13.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-12.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-9.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-8.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-9.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-8.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-9.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-8.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-9.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-8.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 13684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + pos: 15.5,-71.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: 20.5,-71.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + pos: 22.5,-71.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: 14.5,-71.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: 13.5,-71.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: 18.5,-71.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: 17.5,-71.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-70.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 13694 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: -62.5,0.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - 101 + - uid: 13707 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 13708 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - 101 + - uid: 13709 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - 101 + - uid: 13710 + components: + - type: Transform + pos: 65.5,-48.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + pos: 66.5,-48.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: 67.5,-48.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: 65.5,-37.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: 67.5,-37.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + pos: 65.5,-42.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: 67.5,-42.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: 76.5,-42.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: 78.5,-42.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 76.5,-38.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: 65.5,-21.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + pos: 66.5,-21.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: 67.5,-21.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: 73.5,-13.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: 73.5,-14.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: -62.5,1.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - type: Door + secondsUntilStateChange: -120340.875 + state: Closing + - uid: 13837 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - uid: 13848 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: 78.5,-38.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -64.5,-12.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: -64.5,7.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: 75.5,-64.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: 65.5,-63.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - uid: 13890 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: 68.5,-63.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + pos: 69.5,4.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: 48.5,-43.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 13927 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 13929 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 13930 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 13931 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 13933 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 +- proto: FitnessPunchingBag + entities: + - uid: 13934 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 +- proto: FitnessWeightLifter + entities: + - uid: 13938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 +- proto: FitnessWeightsBench1 + entities: + - uid: 13939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 +- proto: Flash + entities: + - uid: 13940 + components: + - type: Transform + pos: -5.590146,-5.5357327 + parent: 2 + - uid: 13941 + components: + - type: Transform + rot: 0.00028195229242555797 rad + pos: -56.26376,3.5820982 + parent: 2 + - uid: 13942 + components: + - type: Transform + pos: -10.669638,-34.384842 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 13943 + components: + - type: Transform + pos: 53.45759,-48.32746 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: 49.435802,16.306866 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13945 + components: + - type: Transform + pos: 48.529552,11.266704 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13946 + components: + - type: Transform + pos: 48.47014,7.514141 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13947 + components: + - type: Transform + pos: 66.53939,6.4304285 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13948 + components: + - type: Transform + pos: 70.51346,12.480552 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13949 + components: + - type: Transform + pos: 67.42922,18.532057 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13950 + components: + - type: Transform + pos: 55.583378,18.000807 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13951 + components: + - type: Transform + pos: -43.273075,5.5487127 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13952 + components: + - type: Transform + pos: -45.601074,22.357426 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13953 + components: + - type: Transform + pos: -48.703045,1.6598 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13954 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13955 + components: + - type: Transform + pos: -10.388388,-34.587967 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13956 + components: + - type: Transform + pos: -4.4961033,-45.400856 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13957 + components: + - type: Transform + pos: 6.4398823,-54.452927 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: 6.5805073,-54.6248 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: 69.14265,-78.04858 + parent: 2 + - uid: 13960 + components: + - type: Transform + pos: 69.42417,-53.31951 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: 69.5648,-53.522636 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: -28.559113,-32.33705 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -28.371613,-32.602676 + parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -19.543085,-5.225024 + parent: 2 + - uid: 13965 + components: + - type: Transform + pos: -43.302475,5.7392464 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: 12.378976,32.716896 + parent: 2 + - uid: 13967 + components: + - type: Transform + pos: 12.519601,32.51377 + parent: 2 + - uid: 13968 + components: + - type: Transform + pos: -12.485467,9.712326 + parent: 2 + - uid: 13969 + components: + - type: Transform + pos: -12.391717,9.571701 + parent: 2 +- proto: FlippoLighter + entities: + - uid: 13970 + components: + - type: Transform + pos: -19.97376,-66.515045 + parent: 2 +- proto: FloorDrain + entities: + - uid: 13971 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13972 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13973 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13974 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13975 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13976 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13977 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13978 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13979 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13980 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13981 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-65.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemArcadeBlue2 + entities: + - uid: 13983 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13995 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14005 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14008 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 + - uid: 14010 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 +- proto: FloorTileItemEighties + entities: + - uid: 14013 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14020 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14021 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14023 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14025 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14026 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14028 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14031 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 14043 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 14045 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 14047 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 +- proto: FoodBanana + entities: + - uid: 14080 + components: + - type: Transform + pos: 20.37424,5.7458954 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: 20.608616,5.7458954 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 20.483616,5.7458954 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 14083 + components: + - type: Transform + pos: -38.562927,-46.360855 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 14085 + components: + - type: Transform + pos: 51.57733,-33.333336 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: 26.502972,-87.37317 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: 70.44241,-57.410355 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 14088 + components: + - type: Transform + pos: 16.555893,33.587013 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 4.534991,-6.2857327 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: -10.3700485,-13.3952875 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 +- proto: FoodBreadBaguette + entities: + - uid: 14095 + components: + - type: Transform + pos: 20.525175,6.354695 + parent: 2 +- proto: FoodBreadCorn + entities: + - uid: 11137 + components: + - type: MetaData + desc: country-style, loaf + name: Harden cornbread + - type: Transform + parent: 11135 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + missingComponents: + - Food + - SliceableFood + - SpaceGarbage +- proto: FoodCartCold + entities: + - uid: 14096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 14097 + components: + - type: Transform + pos: -37.375427,-46.31398 + parent: 2 + - type: Tag + tags: [] + - uid: 14098 + components: + - type: Transform + pos: -0.39335,51.742676 + parent: 2 +- proto: FoodCondimentPacketPepper + entities: + - uid: 14099 + components: + - type: Transform + pos: -35.798805,-43.6252 + parent: 2 + - type: Tag + tags: [] + - type: RefillableSolution + solution: food +- proto: FoodCondimentPacketSalt + entities: + - uid: 14100 + components: + - type: Transform + pos: -35.53318,-43.578323 + parent: 2 + - type: Tag + tags: [] + - type: RefillableSolution + solution: food +- proto: FoodKebabSkewer + entities: + - uid: 14101 + components: + - type: Transform + pos: 69.38562,-55.371544 + parent: 2 +- proto: FoodMealMint + entities: + - uid: 14102 + components: + - type: Transform + pos: -35.361305,-43.28145 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 14103 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 14106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5000002 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: -29.262028,3.9797268 + parent: 2 +- proto: FoodSnackPopcorn + entities: + - uid: 14108 + components: + - type: Transform + pos: 53.448444,-33.429512 + parent: 2 +- proto: FoodSoupTomatoBlood + entities: + - uid: 14109 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 14110 + components: + - type: Transform + pos: 80.451996,-57.478004 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 14111 + components: + - type: Transform + pos: -46.54512,13.835054 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: 47.544956,-70.26469 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -37.41171,-48.284546 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 14114 + components: + - type: Transform + pos: -46.50418,1.7327793 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 37.331474,-35.621933 + parent: 2 +- proto: GasFilter + entities: + - uid: 14116 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasFilterFlipped + entities: + - uid: 14117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 14122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-55.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 14123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-67.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 14124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-63.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 14125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-47.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-47.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-47.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 14128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-64.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-60.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-68.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-48.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-56.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-73.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-73.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-62.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-41.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-39.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-0.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-94.5 + parent: 2 + - uid: 14155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 14157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14162 + components: + - type: Transform + pos: 1.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14168 + components: + - type: Transform + pos: -11.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14173 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-39.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14182 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14187 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14190 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14192 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14194 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14200 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14203 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14205 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,22.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14209 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14216 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-48.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14221 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14223 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14228 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14229 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14231 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14233 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14238 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14251 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14253 + components: + - type: Transform + pos: 9.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14258 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14261 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14262 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14265 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14266 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14268 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14273 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14274 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14275 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14278 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14283 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14284 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14285 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14286 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14291 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14293 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14309 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14310 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14311 + components: + - type: Transform + pos: 46.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14314 + components: + - type: Transform + pos: 37.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14316 + components: + - type: Transform + pos: 47.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14321 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14322 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14323 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14325 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14339 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-93.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-93.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14354 + components: + - type: Transform + pos: 24.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14355 + components: + - type: Transform + pos: 11.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' +- proto: GasPipeFourway + entities: + - uid: 14362 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14363 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14364 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14366 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14367 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14368 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14369 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14370 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14371 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14372 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14373 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14374 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14375 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14376 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14377 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14378 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14379 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14380 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14381 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14383 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14384 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14385 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14386 + components: + - type: Transform + pos: 43.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14387 + components: + - type: Transform + pos: 44.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14388 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14389 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14390 + components: + - type: Transform + pos: 65.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14391 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14392 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14393 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14394 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14395 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14396 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14397 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14398 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14399 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14400 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14401 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' +- proto: GasPipeStraight + entities: + - uid: 14402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14403 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14404 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14406 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-73.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-73.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14430 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-62.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14435 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-90.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 14442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-89.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14458 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14473 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14480 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14481 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-66.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-64.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-68.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-34.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14499 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14500 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14506 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14511 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14513 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14514 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14515 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14517 + components: + - type: Transform + pos: 69.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14518 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14519 + components: + - type: Transform + pos: 69.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14520 + components: + - type: Transform + pos: 70.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14523 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14526 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14527 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14529 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14531 + components: + - type: Transform + pos: 69.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14532 + components: + - type: Transform + pos: 70.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14533 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14534 + components: + - type: Transform + pos: 69.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14542 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14543 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14544 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14545 + components: + - type: Transform + pos: -8.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14558 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14562 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14575 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14579 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14580 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14581 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14582 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14583 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14587 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14594 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14602 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14603 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14604 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14605 + components: + - type: Transform + pos: 76.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14606 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14611 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14635 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14636 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14637 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14638 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14639 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14640 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14642 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14643 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14647 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14648 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14649 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14650 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14672 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14684 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14685 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14690 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14694 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-66.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-68.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-58.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-60.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-68.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14727 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-33.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14736 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-60.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - uid: 14750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-62.5 + parent: 2 + - uid: 14754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-64.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-62.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-64.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-66.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14781 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14782 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14789 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14790 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14791 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14792 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14802 + components: + - type: Transform + pos: -1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14803 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14804 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14805 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14806 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14807 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14808 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14809 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14810 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14811 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14812 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14813 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14814 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14815 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14816 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14817 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14818 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14832 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14833 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14834 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14835 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14836 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14837 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14838 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14848 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14849 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14850 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14851 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14852 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14860 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14861 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14871 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14872 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14873 + components: + - type: Transform + pos: -5.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14878 + components: + - type: Transform + pos: -5.5,-89.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 14879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-72.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14923 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14924 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14925 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14926 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14927 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14928 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14929 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14930 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14931 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14932 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15011 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15012 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15013 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15014 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15015 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15093 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15094 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15095 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15096 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15097 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15098 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15099 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15100 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15101 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15102 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15103 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15104 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15105 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15106 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15107 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15108 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15109 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15110 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15111 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15112 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15113 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15114 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15115 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15193 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15194 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15229 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15245 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15246 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15247 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15248 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15249 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15250 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15251 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15252 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15253 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15254 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15255 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15256 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15257 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15258 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15259 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15260 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15261 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15262 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15263 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15275 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15276 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15277 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15278 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15279 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15280 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15281 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15282 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15283 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15284 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15446 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15447 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15448 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15449 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15450 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15451 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15452 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15453 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15454 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15463 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15464 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15478 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15479 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15480 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15481 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15485 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15486 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15487 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15488 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15489 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15490 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15491 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15492 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15493 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15510 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15511 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15512 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15533 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15534 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15535 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15536 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15537 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15538 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15539 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15540 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15597 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15598 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15599 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15600 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15601 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15602 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15603 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15604 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15605 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15606 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15607 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15608 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15609 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15610 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15611 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15612 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15613 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15614 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15615 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15616 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15617 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15618 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15619 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15620 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15621 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15622 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15629 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15630 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15631 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15632 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15633 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15634 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15635 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15636 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15637 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15638 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15639 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15640 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15641 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15642 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15643 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15644 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15645 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15646 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15647 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15648 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15649 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15650 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15651 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15652 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15653 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15654 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15655 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15656 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15661 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15662 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15663 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15683 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15684 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15685 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15686 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15687 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15688 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15689 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15690 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15714 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15715 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15716 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15717 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15718 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15719 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15720 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15721 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15722 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15723 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15767 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15768 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15769 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15770 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15772 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15773 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15774 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15775 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15776 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15777 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15778 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15779 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15780 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15781 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15782 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15783 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15784 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15785 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15820 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15821 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15822 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15823 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15824 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15825 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15826 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15827 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15828 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15829 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15830 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15831 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15832 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15833 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15834 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15835 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15836 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15837 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15838 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15839 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15840 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15841 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15842 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15843 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15844 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15845 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15846 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15847 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15848 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15849 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15857 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15858 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15859 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15860 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15861 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15862 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15863 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15864 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15865 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15866 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15867 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15868 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15869 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15870 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15871 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15872 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15873 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15874 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15895 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15896 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15897 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15911 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15912 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15913 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15914 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15915 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15920 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15921 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15922 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15923 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15924 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15925 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15938 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15939 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15940 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15941 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15942 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15943 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15944 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15945 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15946 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15972 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15973 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15974 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15975 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15976 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15980 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16007 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16039 + components: + - type: Transform + pos: 39.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16040 + components: + - type: Transform + pos: 41.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16041 + components: + - type: Transform + pos: 41.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16042 + components: + - type: Transform + pos: 41.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16043 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16044 + components: + - type: Transform + pos: 41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16049 + components: + - type: Transform + pos: 43.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16050 + components: + - type: Transform + pos: 43.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16051 + components: + - type: Transform + pos: 43.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16052 + components: + - type: Transform + pos: 46.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16053 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16054 + components: + - type: Transform + pos: 46.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16063 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16064 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16081 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16082 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16113 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16114 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16115 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16116 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16117 + components: + - type: Transform + pos: 69.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16118 + components: + - type: Transform + pos: 69.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16119 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16120 + components: + - type: Transform + pos: 70.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16121 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-41.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-41.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-39.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-39.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-41.5 + parent: 2 + - uid: 16132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-39.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16147 + components: + - type: Transform + pos: 65.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16148 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16149 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16168 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16177 + components: + - type: Transform + pos: 65.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16178 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16179 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16180 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16181 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16182 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16183 + components: + - type: Transform + pos: 65.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16184 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-28.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16194 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16195 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16196 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16197 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16198 + components: + - type: Transform + pos: 62.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16199 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16200 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16201 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16202 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16203 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16204 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16205 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16206 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16212 + components: + - type: Transform + pos: 62.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16226 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16227 + components: + - type: Transform + pos: 65.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16228 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16273 + components: + - type: Transform + pos: 58.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16333 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16334 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16335 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16336 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16337 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16338 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16339 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16340 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16341 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16342 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16343 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16344 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16345 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16346 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16347 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16348 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16349 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16350 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16351 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16358 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16359 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16360 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16361 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16362 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16370 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16371 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16372 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16373 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16374 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16375 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16376 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16377 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16378 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16379 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16380 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16381 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16382 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16383 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16384 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16385 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16386 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16387 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16388 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16389 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16390 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16391 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16392 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16393 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16394 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16395 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16396 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16397 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16398 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16399 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16473 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16474 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16475 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16476 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16499 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16503 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16508 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16511 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16514 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16518 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16522 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16527 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16528 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16529 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16530 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16531 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16532 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16533 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16534 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16535 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16543 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16544 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16545 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16546 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16547 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16548 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16549 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16550 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16551 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16552 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16553 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16554 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16565 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16567 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16569 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16575 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16576 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16577 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16578 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16579 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16580 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16581 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16582 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16605 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16625 + components: + - type: Transform + pos: 4.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16630 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16631 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16632 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16633 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16634 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-96.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16648 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16649 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16656 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16666 + components: + - type: Transform + pos: 60.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16667 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16668 + components: + - type: Transform + pos: 60.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16669 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 16674 + components: + - type: Transform + pos: -5.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16675 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16676 + components: + - type: Transform + pos: -5.5,-90.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16686 + components: + - type: Transform + pos: -19.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16687 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16688 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16692 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16693 + components: + - type: Transform + pos: -11.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16694 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16695 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16696 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-72.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-60.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-73.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-72.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-72.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-72.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-73.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16777 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' +- proto: GasPipeTJunction + entities: + - uid: 16780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16781 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16786 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16787 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16788 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16791 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16792 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16794 + components: + - type: Transform + pos: 0.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 16796 + components: + - type: Transform + pos: -1.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16797 + components: + - type: Transform + pos: 7.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 16798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16802 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 16804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 16805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 16806 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16808 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16809 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16810 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16813 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-39.5 + parent: 2 + - uid: 16815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16819 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16820 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16821 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16822 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16824 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16826 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 + - uid: 16834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16843 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,15.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16851 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16852 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16853 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16856 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16858 + components: + - type: Transform + pos: 76.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16862 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16866 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16875 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16877 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16880 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16895 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16896 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16898 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16900 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16901 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16902 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16904 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16908 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16915 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16924 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16925 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16928 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16936 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16937 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16938 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16939 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16941 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16944 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16945 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16947 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16958 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16960 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16966 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16967 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16969 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16970 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16971 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16977 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16980 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16982 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16984 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16985 + components: + - type: Transform + pos: 66.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16986 + components: + - type: Transform + pos: 65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16992 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16996 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16997 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16998 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16999 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17001 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17002 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17003 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17004 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17005 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17006 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17007 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17009 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17025 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17026 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17027 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17031 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17038 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17044 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17053 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17064 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17065 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17070 + components: + - type: Transform + pos: 73.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17081 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17082 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17091 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17092 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17093 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17094 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17098 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17101 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17105 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17106 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17108 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17118 + components: + - type: Transform + pos: 28.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-106.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17123 + components: + - type: Transform + pos: 2.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17125 + components: + - type: Transform + pos: -1.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17126 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 17133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 17134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-83.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-83.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-47.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 17148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-51.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-47.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-48.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-47.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: 77.5,-46.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-47.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + pos: 74.5,-46.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-47.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: 72.5,-46.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-47.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-41.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-39.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: 22.5,-91.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' +- proto: GasPressurePump + entities: + - uid: 17171 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-71.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-71.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: 22.5,-71.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + pos: 14.5,-71.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 17180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17182 + components: + - type: Transform + pos: -5.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17190 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17191 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17193 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17195 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17198 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-41.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-39.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-68.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-64.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-60.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-66.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-62.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-54.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-50.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17218 + components: + - type: Transform + pos: 13.5,-71.5 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 17219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 17220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#2063F5FF' + - uid: 17221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: 70.5,-47.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17226 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 17227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: 74.5,-47.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 +- proto: GasValve + entities: + - uid: 17230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-41.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-39.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 17232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-74.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17241 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17247 + components: + - type: Transform + pos: -1.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17251 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17254 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17255 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17258 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17259 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17269 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17270 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17278 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17286 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17287 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17295 + components: + - type: Transform + pos: 78.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17300 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17305 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17306 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17307 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17308 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17313 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17315 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17318 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17319 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17320 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17321 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17322 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17323 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17336 + components: + - type: Transform + pos: 44.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17337 + components: + - type: Transform + pos: 35.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17342 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17343 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17344 + components: + - type: Transform + pos: 73.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17346 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 17352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17358 + components: + - type: Transform + pos: 56.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17365 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17367 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17371 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17374 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17375 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17376 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17380 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17384 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17385 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17395 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17397 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17399 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17401 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-109.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-106.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17414 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 96 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 95 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-74.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 17426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-74.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-74.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17430 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17431 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17432 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17433 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17438 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17440 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17441 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17443 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17448 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17453 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17459 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17460 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17462 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17469 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17485 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17495 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17496 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17503 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17504 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17506 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17511 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17512 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17513 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17531 + components: + - type: Transform + pos: 43.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17532 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17540 + components: + - type: Transform + pos: 70.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17541 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17551 + components: + - type: Transform + pos: 58.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17557 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17559 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17563 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17567 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17575 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17591 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17593 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 96 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 95 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-76.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeigerCounter + entities: + - uid: 17608 + components: + - type: Transform + pos: -4.985467,9.557216 + parent: 2 +- proto: GeigerCounterWallMount + entities: + - uid: 17609 + components: + - type: Transform + pos: -1.5,-84.5 + parent: 2 + - type: Geiger + isEnabled: True + - type: RadiationReceiver + - uid: 17610 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 17611 + components: + - type: Transform + pos: 56.5,-78.5 + parent: 2 +- proto: Girder + entities: + - uid: 17612 + components: + - type: Transform + pos: 69.5,9.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: 71.5,11.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: 70.5,9.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: 51.5,-50.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: 50.5,-55.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 48.5,-63.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: 55.5,-53.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 17621 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 +- proto: GlimmerProber + entities: + - uid: 17622 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 17623 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 +- proto: Grille + entities: + - uid: 17624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-44.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-44.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-45.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-71.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-72.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-67.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-68.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-66.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-81.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-64.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-72.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-72.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-47.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-72.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-72.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-92.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 17678 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,7.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,7.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-2.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,7.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,7.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-2.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: 49.5,3.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: -67.5,-15.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,7.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-2.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: -14.5,-77.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: 91.5,-30.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: 93.5,-30.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: 91.5,-28.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: 92.5,-28.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 93.5,-28.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 91.5,-27.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + pos: 93.5,-27.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + pos: 86.5,-37.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + pos: 42.5,-44.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + pos: 46.5,-54.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + pos: 47.5,-54.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + pos: 45.5,-58.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + pos: 45.5,-59.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 42.5,-57.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: 64.5,-41.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: 65.5,-49.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + pos: 72.5,-48.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + pos: 70.5,-48.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-42.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-42.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 68.5,-35.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: 80.5,-27.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: 64.5,-39.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: 92.5,-23.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: 92.5,-22.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: 91.5,-22.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: 90.5,-22.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: 89.5,-22.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: 88.5,-22.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: 71.5,-48.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: 75.5,-48.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + pos: 52.5,-38.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + pos: 75.5,2.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: 83.5,-2.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + pos: 85.5,-2.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 17960 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 17964 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 17965 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 17970 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 17973 + components: + - type: Transform + pos: 80.5,-16.5 + parent: 2 + - uid: 17974 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: 72.5,-11.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: 67.5,0.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 17998 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 17999 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 18002 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 18003 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: 83.5,-66.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: 82.5,-66.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 18014 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 18018 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - uid: 18019 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 18022 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 18023 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 18024 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 18025 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + pos: 42.5,-74.5 + parent: 2 + - uid: 18027 + components: + - type: Transform + pos: 43.5,-74.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: 50.5,-66.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 18034 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: 57.5,-63.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + pos: 58.5,-63.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: 61.5,-63.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: 62.5,-63.5 + parent: 2 + - uid: 18041 + components: + - type: Transform + pos: 63.5,-63.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 18044 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 18045 + components: + - type: Transform + pos: 60.5,-72.5 + parent: 2 + - uid: 18046 + components: + - type: Transform + pos: 62.5,-72.5 + parent: 2 + - uid: 18047 + components: + - type: Transform + pos: 62.5,-73.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: 63.5,-73.5 + parent: 2 + - uid: 18049 + components: + - type: Transform + pos: 64.5,-73.5 + parent: 2 + - uid: 18050 + components: + - type: Transform + pos: 65.5,-73.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + pos: 69.5,-69.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: 70.5,-69.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 76.5,-65.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + pos: 77.5,-65.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: 78.5,-61.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + pos: 74.5,-61.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + pos: 73.5,-61.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + pos: 73.5,-63.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 74.5,-63.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 18061 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 18063 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 18065 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 18066 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 18067 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 18068 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 18072 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 18073 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 18074 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 18077 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 18094 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 18095 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 18097 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 18101 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 18102 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 18104 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 18105 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 18109 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 18116 + components: + - type: Transform + pos: -33.5,-73.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: -33.5,-74.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - uid: 18119 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 18121 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-76.5 + parent: 2 + - uid: 18123 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: 0.5,-102.5 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: -0.5,-102.5 + parent: 2 + - uid: 18129 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 18131 + components: + - type: Transform + pos: -8.5,-100.5 + parent: 2 + - uid: 18132 + components: + - type: Transform + pos: -8.5,-101.5 + parent: 2 + - uid: 18133 + components: + - type: Transform + pos: 0.5,-100.5 + parent: 2 + - uid: 18134 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 18135 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 18137 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 18138 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 18139 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 18140 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 18144 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 18147 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 18149 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 18151 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + pos: 86.5,-10.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + pos: 86.5,-14.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + pos: 30.5,-81.5 + parent: 2 + - uid: 18157 + components: + - type: Transform + pos: 30.5,-80.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-78.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-78.5 + parent: 2 + - uid: 18160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-78.5 + parent: 2 + - uid: 18161 + components: + - type: Transform + pos: 26.5,-78.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: 26.5,-79.5 + parent: 2 + - uid: 18163 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 2 + - uid: 18164 + components: + - type: Transform + pos: 29.5,-95.5 + parent: 2 + - uid: 18165 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + pos: 29.5,-97.5 + parent: 2 + - uid: 18167 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + pos: 29.5,-99.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + pos: 29.5,-101.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + pos: 29.5,-102.5 + parent: 2 + - uid: 18172 + components: + - type: Transform + pos: 29.5,-103.5 + parent: 2 + - uid: 18173 + components: + - type: Transform + pos: 33.5,-107.5 + parent: 2 + - uid: 18174 + components: + - type: Transform + pos: 33.5,-108.5 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: 27.5,-103.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: 27.5,-102.5 + parent: 2 + - uid: 18177 + components: + - type: Transform + pos: 27.5,-101.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: 27.5,-100.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: 27.5,-99.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: 27.5,-98.5 + parent: 2 + - uid: 18181 + components: + - type: Transform + pos: 27.5,-97.5 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: 27.5,-96.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 2 + - uid: 18184 + components: + - type: Transform + pos: 23.5,-108.5 + parent: 2 + - uid: 18185 + components: + - type: Transform + pos: 23.5,-107.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + pos: 30.5,-107.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: 29.5,-107.5 + parent: 2 + - uid: 18188 + components: + - type: Transform + pos: 27.5,-107.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: 26.5,-107.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + pos: 26.5,-80.5 + parent: 2 + - uid: 18191 + components: + - type: Transform + pos: 1.5,-102.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: -8.5,-102.5 + parent: 2 + - uid: 18193 + components: + - type: Transform + pos: -0.5,-100.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: -1.5,-100.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + pos: -7.5,-102.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: 2.5,-102.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: 4.5,-102.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: -5.5,-102.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: -3.5,-100.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + pos: -2.5,-100.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: -6.5,-102.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: 3.5,-102.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: -11.5,-86.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + pos: -12.5,-86.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + pos: -13.5,-86.5 + parent: 2 + - uid: 18206 + components: + - type: Transform + pos: -14.5,-86.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: -15.5,-86.5 + parent: 2 + - uid: 18208 + components: + - type: Transform + pos: -16.5,-86.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + pos: -17.5,-86.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + pos: -17.5,-87.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + pos: -17.5,-88.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + pos: -16.5,-88.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: -15.5,-88.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: -14.5,-88.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + pos: -13.5,-88.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: -12.5,-88.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: -11.5,-88.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: -20.5,-89.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: -21.5,-89.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + pos: -21.5,-88.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + pos: -22.5,-88.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: -22.5,-87.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -19.5,-81.5 + parent: 2 + - uid: 18224 + components: + - type: Transform + pos: -19.5,-82.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: -19.5,-83.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: -19.5,-84.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + pos: -20.5,-84.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + pos: -21.5,-84.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + pos: -21.5,-83.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: -21.5,-82.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: -21.5,-81.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + pos: -21.5,-80.5 + parent: 2 + - uid: 18233 + components: + - type: Transform + pos: -21.5,-79.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + pos: -21.5,-78.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + pos: 7.5,-102.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + pos: -3.5,-102.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + pos: -5.5,-100.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + pos: -50.5,-69.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + pos: -49.5,-69.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 18242 + components: + - type: Transform + pos: -43.5,-53.5 + parent: 2 + - uid: 18243 + components: + - type: Transform + pos: -44.5,-53.5 + parent: 2 + - uid: 18244 + components: + - type: Transform + pos: -45.5,-53.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 + - uid: 18247 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 18248 + components: + - type: Transform + pos: -50.5,-53.5 + parent: 2 + - uid: 18249 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + pos: -52.5,-53.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + pos: -53.5,-53.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + pos: -55.5,-53.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + pos: -56.5,-53.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: -56.5,-54.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: -56.5,-55.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + pos: -56.5,-56.5 + parent: 2 + - uid: 18258 + components: + - type: Transform + pos: -56.5,-57.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + pos: -59.5,-59.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + pos: -59.5,-63.5 + parent: 2 + - uid: 18263 + components: + - type: Transform + pos: -59.5,-62.5 + parent: 2 + - uid: 18264 + components: + - type: Transform + pos: -59.5,-61.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + pos: -59.5,-60.5 + parent: 2 + - uid: 18266 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 2 + - uid: 18267 + components: + - type: Transform + pos: -57.5,-63.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + pos: -56.5,-65.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + pos: -56.5,-66.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + pos: -56.5,-68.5 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: -56.5,-69.5 + parent: 2 + - uid: 18272 + components: + - type: Transform + pos: -55.5,-69.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: -54.5,-69.5 + parent: 2 + - uid: 18274 + components: + - type: Transform + pos: -53.5,-69.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -52.5,-69.5 + parent: 2 + - uid: 18276 + components: + - type: Transform + pos: -48.5,-69.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + pos: -47.5,-69.5 + parent: 2 + - uid: 18278 + components: + - type: Transform + pos: -46.5,-69.5 + parent: 2 + - uid: 18279 + components: + - type: Transform + pos: -45.5,-69.5 + parent: 2 + - uid: 18280 + components: + - type: Transform + pos: -44.5,-69.5 + parent: 2 + - uid: 18281 + components: + - type: Transform + pos: -43.5,-69.5 + parent: 2 + - uid: 18282 + components: + - type: Transform + pos: -42.5,-69.5 + parent: 2 + - uid: 18283 + components: + - type: Transform + pos: -42.5,-68.5 + parent: 2 + - uid: 18284 + components: + - type: Transform + pos: -42.5,-67.5 + parent: 2 + - uid: 18285 + components: + - type: Transform + pos: -42.5,-55.5 + parent: 2 + - uid: 18286 + components: + - type: Transform + pos: -42.5,-54.5 + parent: 2 + - uid: 18287 + components: + - type: Transform + pos: -47.5,43.5 + parent: 2 + - uid: 18288 + components: + - type: Transform + pos: -48.5,43.5 + parent: 2 + - uid: 18289 + components: + - type: Transform + pos: -49.5,43.5 + parent: 2 + - uid: 18290 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 18291 + components: + - type: Transform + pos: -51.5,43.5 + parent: 2 + - uid: 18292 + components: + - type: Transform + pos: -51.5,42.5 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: -51.5,41.5 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: -47.5,41.5 + parent: 2 + - uid: 18295 + components: + - type: Transform + pos: -45.5,40.5 + parent: 2 + - uid: 18296 + components: + - type: Transform + pos: -44.5,40.5 + parent: 2 + - uid: 18297 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - uid: 18298 + components: + - type: Transform + pos: -42.5,40.5 + parent: 2 + - uid: 18299 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + pos: -41.5,39.5 + parent: 2 + - uid: 18301 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 18302 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 + - uid: 18303 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 18304 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 18305 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - uid: 18306 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 18307 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 + - uid: 18308 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 18309 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 18310 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 18312 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 18313 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 18314 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 18315 + components: + - type: Transform + pos: -55.5,26.5 + parent: 2 + - uid: 18316 + components: + - type: Transform + pos: -56.5,26.5 + parent: 2 + - uid: 18317 + components: + - type: Transform + pos: -57.5,26.5 + parent: 2 + - uid: 18318 + components: + - type: Transform + pos: -57.5,27.5 + parent: 2 + - uid: 18319 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 18320 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 18321 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 18322 + components: + - type: Transform + pos: -57.5,32.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + pos: -57.5,33.5 + parent: 2 + - uid: 18324 + components: + - type: Transform + pos: -57.5,34.5 + parent: 2 + - uid: 18325 + components: + - type: Transform + pos: -57.5,35.5 + parent: 2 + - uid: 18326 + components: + - type: Transform + pos: -57.5,36.5 + parent: 2 + - uid: 18327 + components: + - type: Transform + pos: -57.5,37.5 + parent: 2 + - uid: 18328 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: -57.5,39.5 + parent: 2 + - uid: 18330 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 + - uid: 18331 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 18332 + components: + - type: Transform + pos: -55.5,40.5 + parent: 2 + - uid: 18333 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - uid: 18334 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 + - uid: 18335 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 18336 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 18337 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 18339 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 18340 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 18341 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 18342 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 18343 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + pos: 67.5,-65.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 18351 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 18352 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 18353 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 18354 + components: + - type: Transform + pos: 55.5,33.5 + parent: 2 + - uid: 18355 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 18356 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 18357 + components: + - type: Transform + pos: 55.5,36.5 + parent: 2 + - uid: 18358 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 18360 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 18361 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 18365 + components: + - type: Transform + pos: 51.5,40.5 + parent: 2 + - uid: 18366 + components: + - type: Transform + pos: 49.5,41.5 + parent: 2 + - uid: 18367 + components: + - type: Transform + pos: 49.5,43.5 + parent: 2 + - uid: 18368 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 18369 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 18371 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + pos: 45.5,42.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 18374 + components: + - type: Transform + pos: 43.5,40.5 + parent: 2 + - uid: 18375 + components: + - type: Transform + pos: 42.5,40.5 + parent: 2 + - uid: 18376 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 18377 + components: + - type: Transform + pos: 40.5,40.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 18381 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 18383 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 18384 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 18385 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 18386 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 18387 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 18390 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 18391 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 18392 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: 82.5,-67.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + pos: 82.5,-68.5 + parent: 2 + - uid: 18398 + components: + - type: Transform + pos: 89.5,-85.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + pos: 89.5,-84.5 + parent: 2 + - uid: 18400 + components: + - type: Transform + pos: 89.5,-83.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + pos: 89.5,-82.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + pos: 89.5,-81.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + pos: 89.5,-80.5 + parent: 2 + - uid: 18404 + components: + - type: Transform + pos: 89.5,-79.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + pos: 89.5,-78.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + pos: 89.5,-77.5 + parent: 2 + - uid: 18407 + components: + - type: Transform + pos: 89.5,-76.5 + parent: 2 + - uid: 18408 + components: + - type: Transform + pos: 89.5,-75.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: 89.5,-74.5 + parent: 2 + - uid: 18410 + components: + - type: Transform + pos: 89.5,-73.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + pos: 89.5,-72.5 + parent: 2 + - uid: 18412 + components: + - type: Transform + pos: 89.5,-71.5 + parent: 2 + - uid: 18413 + components: + - type: Transform + pos: 88.5,-71.5 + parent: 2 + - uid: 18414 + components: + - type: Transform + pos: 75.5,-71.5 + parent: 2 + - uid: 18415 + components: + - type: Transform + pos: 74.5,-71.5 + parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 73.5,-71.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 73.5,-72.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: 73.5,-73.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 73.5,-74.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: 73.5,-75.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + pos: 73.5,-76.5 + parent: 2 + - uid: 18422 + components: + - type: Transform + pos: 73.5,-77.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + pos: 73.5,-78.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + pos: 73.5,-79.5 + parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 73.5,-81.5 + parent: 2 + - uid: 18426 + components: + - type: Transform + pos: 73.5,-82.5 + parent: 2 + - uid: 18427 + components: + - type: Transform + pos: 73.5,-83.5 + parent: 2 + - uid: 18428 + components: + - type: Transform + pos: 73.5,-84.5 + parent: 2 + - uid: 18429 + components: + - type: Transform + pos: 73.5,-85.5 + parent: 2 + - uid: 18430 + components: + - type: Transform + pos: 74.5,-85.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 75.5,-85.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + pos: 76.5,-85.5 + parent: 2 + - uid: 18433 + components: + - type: Transform + pos: 77.5,-85.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: 79.5,-86.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: 79.5,-87.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 79.5,-88.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + pos: 80.5,-88.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + pos: 81.5,-88.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + pos: 82.5,-88.5 + parent: 2 + - uid: 18440 + components: + - type: Transform + pos: 83.5,-88.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + pos: 83.5,-87.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: 83.5,-86.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: 87.5,-85.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + pos: 86.5,-85.5 + parent: 2 + - uid: 18445 + components: + - type: Transform + pos: 85.5,-85.5 + parent: 2 + - uid: 18446 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 18448 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 18454 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 18460 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 18464 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 18465 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,44.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 18470 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 18473 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 18474 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 18475 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 18476 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 18479 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 18480 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 18481 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 18482 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 18483 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 18488 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 18490 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 18495 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 18496 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 18500 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 18501 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 18504 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 18511 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 18516 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 18520 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 18521 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 18523 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 18525 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 18526 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - uid: 18527 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 18529 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 18530 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 18531 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 18533 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 18534 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 18535 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 18537 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 18540 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 18541 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 18543 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 18547 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 18551 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 18552 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 18560 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 18562 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 18564 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 18566 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 18567 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 18570 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 18571 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 18579 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 18581 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 18589 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 18591 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 18593 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 18594 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 18595 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 18596 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 18597 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 18598 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 18599 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 18600 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 18601 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 18602 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 18603 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 18604 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 18605 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 18606 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 18607 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 18608 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 18609 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 18611 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 18613 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 18614 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 18615 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 18617 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 18622 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 18623 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 18624 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 18625 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 18628 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 18629 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 18634 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 18636 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 18639 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 18640 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 18641 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 18643 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 18644 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 18647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,43.5 + parent: 2 + - uid: 18648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,45.5 + parent: 2 + - uid: 18649 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 18652 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 18653 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 18654 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 18655 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 18660 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 18663 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 18665 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 18666 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 18667 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 18668 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 18670 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + pos: 75.5,5.5 + parent: 2 + - uid: 18672 + components: + - type: Transform + pos: 86.5,-6.5 + parent: 2 + - uid: 18673 + components: + - type: Transform + pos: 87.5,-14.5 + parent: 2 + - uid: 18674 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 18675 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 18676 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 18678 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 18679 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 18680 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 18681 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 18684 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 18687 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 18688 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 18690 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 18691 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 18692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 + - uid: 18693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 + - uid: 18694 + components: + - type: Transform + pos: 51.5,-56.5 + parent: 2 + - uid: 18695 + components: + - type: Transform + pos: 52.5,-56.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + pos: 53.5,-56.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + pos: 56.5,-56.5 + parent: 2 + - uid: 18698 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 18700 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 18704 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 18705 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 18708 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 18709 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + pos: 38.5,-49.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 18712 + components: + - type: Transform + pos: 7.5,-58.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 18715 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + pos: 7.5,-100.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + pos: 5.5,-100.5 + parent: 2 + - uid: 18718 + components: + - type: Transform + pos: 4.5,-100.5 + parent: 2 + - uid: 18719 + components: + - type: Transform + pos: 3.5,-100.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + pos: 2.5,-100.5 + parent: 2 + - uid: 18721 + components: + - type: Transform + pos: -6.5,-100.5 + parent: 2 + - uid: 18722 + components: + - type: Transform + pos: -2.5,-102.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + pos: 7.5,-101.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + pos: 6.5,-102.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + pos: 6.5,-100.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + pos: -1.5,-102.5 + parent: 2 + - uid: 18727 + components: + - type: Transform + pos: -7.5,-100.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + pos: 1.5,-100.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + pos: 5.5,-102.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + pos: -4.5,-102.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + pos: -4.5,-100.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 18736 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 18748 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 18749 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 18750 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-30.5 + parent: 2 + - uid: 18756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 2 + - uid: 18757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 18759 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 18771 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 18772 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 18774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 18775 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 18776 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + pos: 58.5,-56.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + pos: 57.5,-56.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + pos: 62.5,-56.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-32.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + pos: 61.5,-56.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + pos: 63.5,-56.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - uid: 18796 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + pos: 58.5,-60.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + pos: 57.5,-60.5 + parent: 2 + - uid: 18799 + components: + - type: Transform + pos: 56.5,-60.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + pos: 63.5,-60.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + pos: 62.5,-60.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + pos: 61.5,-60.5 + parent: 2 + - uid: 18803 + components: + - type: Transform + pos: 50.5,-67.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + pos: 50.5,-68.5 + parent: 2 + - uid: 18805 + components: + - type: Transform + pos: 76.5,-61.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + pos: 51.5,-60.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + pos: 57.5,-38.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + pos: 76.5,-48.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + pos: 56.5,-38.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 2 + - uid: 18814 + components: + - type: Transform + pos: 67.5,-75.5 + parent: 2 + - uid: 18815 + components: + - type: Transform + pos: 77.5,-48.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 18819 + components: + - type: Transform + pos: 38.5,-69.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 18821 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 18824 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + pos: -79.5,12.5 + parent: 2 + - uid: 18827 + components: + - type: Transform + pos: -78.5,12.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + pos: -77.5,12.5 + parent: 2 + - uid: 18829 + components: + - type: Transform + pos: -76.5,12.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + pos: -75.5,12.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + pos: -73.5,12.5 + parent: 2 + - uid: 18832 + components: + - type: Transform + pos: -72.5,12.5 + parent: 2 + - uid: 18833 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 18839 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 18842 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 18843 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 18846 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 18847 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 18869 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 18876 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + pos: 16.5,46.5 + parent: 2 + - uid: 18882 + components: + - type: Transform + pos: 15.5,46.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: 14.5,46.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - uid: 18886 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: 9.5,46.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 18892 + components: + - type: Transform + pos: -27.5,42.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 18894 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: -24.5,58.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + pos: -23.5,58.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + pos: -22.5,58.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: -21.5,58.5 + parent: 2 + - uid: 18902 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - uid: 18903 + components: + - type: Transform + pos: -19.5,58.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: -18.5,58.5 + parent: 2 + - uid: 18905 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: -12.5,58.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: -9.5,58.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: -8.5,58.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + pos: -1.5,56.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: 0.5,56.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + pos: 7.5,56.5 + parent: 2 + - uid: 18925 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 18931 + components: + - type: Transform + pos: -27.5,54.5 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: -27.5,52.5 + parent: 2 + - uid: 18934 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: -27.5,50.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 18944 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + pos: 87.5,-6.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + pos: 86.5,-2.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: 33.5,-80.5 + parent: 2 + - uid: 18950 + components: + - type: Transform + pos: 32.5,-80.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: 31.5,-80.5 + parent: 2 + - uid: 18952 + components: + - type: Transform + pos: 31.5,-78.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + pos: 32.5,-78.5 + parent: 2 + - uid: 18954 + components: + - type: Transform + pos: 33.5,-78.5 + parent: 2 + - uid: 18955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,43.5 + parent: 2 + - uid: 18956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 2 + - uid: 18957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,45.5 + parent: 2 + - uid: 18958 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 18959 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 18962 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 2 + - uid: 18964 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 18965 + components: + - type: Transform + pos: -27.5,-56.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-85.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-82.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -17.5,-77.5 + parent: 2 + - uid: 18970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-71.5 + parent: 2 + - uid: 18971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-76.5 + parent: 2 + - uid: 18972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-76.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: -3.5,-78.5 + parent: 2 + - uid: 18975 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: -5.5,-76.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 2 + - uid: 18984 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 2 + - uid: 18986 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 18987 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 18988 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - uid: 18989 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: 9.5,-92.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-78.5 + parent: 2 + - uid: 18992 + components: + - type: Transform + pos: 25.5,-58.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-60.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-59.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 + - uid: 18999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-62.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: 25.5,-64.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-70.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-70.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-70.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-71.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: -0.5,-71.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-71.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-71.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: 9.5,-85.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: 39.5,-70.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 19013 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 19015 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: 68.5,-75.5 + parent: 2 + - uid: 19018 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: -56.5,-67.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: -51.5,-69.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -57.5,28.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: -47.5,42.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: 49.5,42.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 19028 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + pos: 87.5,-71.5 + parent: 2 + - uid: 19030 + components: + - type: Transform + pos: 76.5,-71.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: 73.5,-80.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + pos: 88.5,-85.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: -27.5,48.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,49.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,44.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 9781 + components: + - type: MetaData + name: PRG-7 Safe + - type: Transform + pos: 1.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: + - 9782 + - 9784 + - 9783 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeEnergyGunMini + entities: + - uid: 19043 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 19044 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 19045 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 19046 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 19047 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 19048 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 +- proto: GunSafeSubMachineGunWt550 + entities: + - uid: 19049 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 19050 + components: + - type: Transform + pos: -65.5,15.5 + parent: 2 +- proto: Handcuffs + entities: + - uid: 19051 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 19052 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 19053 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: -15.501181,34.511185 + parent: 2 + - uid: 19055 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 19057 + components: + - type: Transform + pos: 63.429848,12.47963 + parent: 2 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 19058 + components: + - type: Transform + pos: 51.500336,-22.935566 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 19059 + components: + - type: Transform + pos: -26.50392,-73.35555 + parent: 2 +- proto: HandLabeler + entities: + - uid: 1189 + components: + - type: Transform + parent: 1186 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19060 + components: + - type: Transform + pos: 18.515135,-16.69142 + parent: 2 + - uid: 19061 + components: + - type: Transform + pos: 18.541178,-16.964857 + parent: 2 + - uid: 19062 + components: + - type: Transform + pos: -9.5991,-25.410784 + parent: 2 + - uid: 19063 + components: + - type: Transform + pos: 38.4924,-28.821447 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: 1.530674,30.52632 + parent: 2 + - uid: 19066 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: -19.57096,-16.96328 + parent: 2 + - uid: 19069 + components: + - type: Transform + pos: 42.78838,-16.408396 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: 11.49096,-33.114952 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: 65.5,-53.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: 65.50084,1.5970671 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 19073 + components: + - type: Transform + pos: -17.476429,42.24517 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 19074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-82.5 + parent: 2 + - uid: 19075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-85.5 + parent: 2 + - uid: 19076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-83.5 + parent: 2 + - uid: 19077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-84.5 + parent: 2 + - uid: 19078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-84.5 + parent: 2 + - uid: 19079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 19080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-83.5 + parent: 2 + - uid: 19082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-83.5 + parent: 2 + - uid: 19083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 19084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-85.5 + parent: 2 + - uid: 19085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-82.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 19087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-82.5 + parent: 2 + - uid: 19088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 19089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-82.5 + parent: 2 + - uid: 19090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 19091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-85.5 + parent: 2 + - uid: 19092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-84.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-85.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#009991FF' + - uid: 19095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: HighSecCaptainLocked + entities: + - uid: 19096 + components: + - type: MetaData + name: Captain Chunnel + - type: Transform + pos: -0.5,-17.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 19097 + components: + - type: Transform + pos: 28.5,-104.5 + parent: 2 + - uid: 19098 + components: + - type: Transform + pos: 30.5,-91.5 + parent: 2 + - uid: 19099 + components: + - type: Transform + pos: 26.5,-91.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 19101 + components: + - type: MetaData + name: Vault + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 19104 + components: + - type: Transform + pos: -20.405937,-40.342514 + parent: 2 + - uid: 19105 + components: + - type: Transform + pos: 10.513089,-49.606483 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -9.401225,-88.03115 + parent: 2 + - uid: 19107 + components: + - type: Transform + pos: -9.37777,-87.02334 + parent: 2 +- proto: Holopad + entities: + - uid: 19108 + components: + - type: MetaData + name: Kitchen + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 19109 + components: + - type: MetaData + name: AI upload + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 19110 + components: + - type: MetaData + name: Captain's office + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 19111 + components: + - type: MetaData + name: HOP's office + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 19112 + components: + - type: MetaData + name: Bridge + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 19113 + components: + - type: MetaData + name: Bar + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 19114 + components: + - type: MetaData + name: Medbay Reception + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 19115 + components: + - type: MetaData + name: CMO's office + - type: Transform + pos: 36.5,-43.5 + parent: 2 + - uid: 19116 + components: + - type: MetaData + name: Chemistry lab + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 19117 + components: + - type: MetaData + name: Engineers Workshop + - type: Transform + pos: -0.5,-73.5 + parent: 2 + - uid: 19118 + components: + - type: MetaData + name: CE's office + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - uid: 19119 + components: + - type: MetaData + name: Atmos Department + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 19120 + components: + - type: MetaData + name: LO's office + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 19121 + components: + - type: MetaData + name: Reporter's office + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 19122 + components: + - type: MetaData + name: Cargo's Reception + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 19123 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 69.5,-5.5 + parent: 2 + - uid: 19124 + components: + - type: MetaData + name: RnD lab + - type: Transform + pos: 70.5,-18.5 + parent: 2 + - uid: 19125 + components: + - type: MetaData + name: Robotics Workshop + - type: Transform + pos: 60.5,-21.5 + parent: 2 + - uid: 19126 + components: + - type: MetaData + name: Mantis's office + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 19127 + components: + - type: MetaData + name: mystagogue's office + - type: Transform + pos: 71.5,-36.5 + parent: 2 + - uid: 19128 + components: + - type: MetaData + name: Virology lab + - type: Transform + pos: 39.5,-57.5 + parent: 2 + - uid: 19129 + components: + - type: MetaData + name: 'Hydroponics ' + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 19130 + components: + - type: MetaData + name: HOS's office + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 19131 + components: + - type: MetaData + name: Warden's office + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 19132 + components: + - type: MetaData + name: 'Security Reception ' + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 19133 + components: + - type: MetaData + name: Courtroom + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 19134 + components: + - type: MetaData + name: detective's office + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 19135 + components: + - type: MetaData + name: " lawyer's office" + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 19136 + components: + - type: MetaData + name: Arrivals + - type: Transform + pos: -63.5,-1.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 19137 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 19138 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 19140 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 19142 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 19144 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 19148 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 19149 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 19150 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 19151 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 19153 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 19154 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 19155 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 19162 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 +- proto: HydroponicsToolHatchet + entities: + - uid: 19164 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 19166 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: 1.5058146,51.529594 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 19169 + components: + - type: Transform + pos: 1.5683146,51.57647 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 19170 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 19173 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 19180 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 19185 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 19186 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 19187 + components: + - type: Transform + pos: -13.487051,-35.479218 + parent: 2 +- proto: IngotGold + entities: + - uid: 19188 + components: + - type: Transform + pos: -33.561745,4.7582693 + parent: 2 +- proto: IngotGold1 + entities: + - uid: 19189 + components: + - type: Transform + pos: 58.422615,7.678384 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: 57.56324,7.397134 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: 57.391365,7.569009 + parent: 2 +- proto: IngotSilver + entities: + - uid: 19192 + components: + - type: Transform + pos: -29.522873,5.5863943 + parent: 2 +- proto: IntercomAll + entities: + - uid: 19193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 19194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 2 + - uid: 19195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-111.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 19197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 19199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-64.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 19201 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,6.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 19205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 19207 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 19210 + components: + - type: Transform + pos: 38.5,-54.5 + parent: 2 + - uid: 19211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 19213 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 19214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-16.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-26.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 19218 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 + - uid: 19220 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 19221 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-22.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 19224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 19225 + components: + - type: Transform + pos: -6.521184,9.59919 + parent: 2 +- proto: JetpackMiniFilled + entities: + - uid: 19226 + components: + - type: Transform + pos: -10.540829,7.6840305 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: -10.400204,7.4809055 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: -10.088213,9.755057 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -12.493954,3.065948 + parent: 2 +- proto: Jukebox + entities: + - uid: 19230 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 +- proto: KitchenDeepFryer + entities: + - uid: 19231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 19232 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 19234 + components: + - type: Transform + pos: -37.922302,-46.40773 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 19235 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: 26.5,-86.5 + parent: 2 + - uid: 19237 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: 86.5,-40.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: 70.5,-55.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 19249 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: 86.5,-42.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 19261 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 19264 + components: + - type: Transform + parent: 19263 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Lamp + entities: + - uid: 19265 + components: + - type: Transform + pos: 11.522486,-33.17511 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: 63.59359,1.9265842 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19267 + components: + - type: Transform + pos: -61.369373,-1.2449265 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: -59.557964,-8.137121 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: 35.587208,-40.16114 + parent: 2 +- proto: LampBanana + entities: + - uid: 19270 + components: + - type: Transform + pos: 20.577366,3.8552704 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LampGold + entities: + - uid: 19271 + components: + - type: Transform + pos: 27.55192,-19.472286 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19272 + components: + - type: Transform + pos: 8.514107,-15.335099 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19273 + components: + - type: Transform + pos: 26.320675,-9.895369 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19275 + components: + - type: Transform + pos: 12.51148,39.935867 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19276 + components: + - type: Transform + pos: -5.4745197,14.875931 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19277 + components: + - type: Transform + pos: -11.396871,17.955116 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19278 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19279 + components: + - type: Transform + pos: 61.465347,-10.029866 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19280 + components: + - type: Transform + pos: 57.47965,-10.061116 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19281 + components: + - type: Transform + pos: -57.50557,-0.1837722 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19282 + components: + - type: Transform + pos: -57.52329,-8.160038 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19284 + components: + - type: Transform + pos: 6.4951487,-21.071056 + parent: 2 + - uid: 19285 + components: + - type: Transform + pos: 61.626472,-30.122473 + parent: 2 + - uid: 19286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.943487,-12.562059 + parent: 2 + - uid: 20084 + components: + - type: Transform + pos: 16.561712,41.91255 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 19287 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 19288 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 19289 + components: + - type: Transform + pos: 35.53304,-36.306656 + parent: 2 + - uid: 19290 + components: + - type: Transform + pos: 35.736164,-36.400406 + parent: 2 + - uid: 19291 + components: + - type: Transform + pos: -38.156677,-46.329605 + parent: 2 + - uid: 19292 + components: + - type: Transform + pos: 74.664,-18.318996 + parent: 2 + - uid: 19293 + components: + - type: Transform + pos: 63.63948,-21.137918 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: Lighter + entities: + - uid: 19294 + components: + - type: Transform + pos: -5.036098,14.608129 + parent: 2 +- proto: LightReplacer + entities: + - uid: 19295 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 19296 + components: + - type: Transform + pos: 8.5,-90.5 + parent: 2 + - uid: 19297 + components: + - type: Transform + pos: 8.5,-91.5 + parent: 2 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 19298 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: LockableButtonAtmospherics + entities: + - uid: 19299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1104: + - Pressed: Toggle + - uid: 19300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-72.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1127: + - Pressed: Toggle + 1122: + - Pressed: Toggle + 1123: + - Pressed: Toggle + - uid: 19301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-72.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1125: + - Pressed: Toggle + 1126: + - Pressed: Toggle + 1124: + - Pressed: Toggle +- proto: LockableButtonChiefMedicalOfficer + entities: + - uid: 19302 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 499: + - Pressed: Open + 500: + - Pressed: Open +- proto: LockableButtonCommand + entities: + - uid: 19303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-111.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22327: + - Pressed: Toggle + 22326: + - Pressed: Toggle + 22325: + - Pressed: Toggle + 22324: + - Pressed: Toggle + 22323: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 19304 + components: + - type: Transform + pos: -2.5,-90.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22336: + - Pressed: Toggle + 22335: + - Pressed: Toggle + 22334: + - Pressed: Toggle + - uid: 19305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-84.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22328: + - Pressed: Toggle + 22329: + - Pressed: Toggle + 22332: + - Pressed: Toggle + - uid: 19306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-84.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22331: + - Pressed: Toggle + 22330: + - Pressed: Toggle + 22333: + - Pressed: Toggle + - uid: 19307 + components: + - type: Transform + pos: -0.5,-78.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22346: + - Pressed: Toggle + 22341: + - Pressed: Toggle + 22342: + - Pressed: Toggle + 22343: + - Pressed: Toggle + 22344: + - Pressed: Toggle + 22345: + - Pressed: Toggle + 22340: + - Pressed: Toggle + 22339: + - Pressed: Toggle + 22338: + - Pressed: Toggle + 22337: + - Pressed: Toggle + - uid: 19308 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22346: + - Pressed: Toggle + 22341: + - Pressed: Toggle + 22342: + - Pressed: Toggle + 22343: + - Pressed: Toggle + 22344: + - Pressed: Toggle + 22340: + - Pressed: Toggle + 22339: + - Pressed: Toggle + 22338: + - Pressed: Toggle + 22337: + - Pressed: Toggle + 22345: + - Pressed: Toggle +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 19309 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 19310 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 19311 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 19312 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19313 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19314 + components: + - type: Transform + pos: -37.5,18.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: + - 19316 + - 19315 + - 19319 + - 19320 + - 19317 + - 19321 + - 19318 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader +- proto: LockerBotanistFilled + entities: + - uid: 19322 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 19323 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 +- proto: LockerBrigmedicFilled + entities: + - uid: 1186 + components: + - type: Transform + pos: -9.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1187 + - 1188 + - 1189 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 19324 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 19325 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 19326 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 19327 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 19328 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 19329 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 19330 + components: + - type: Transform + pos: -22.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19331 + components: + - type: Transform + pos: 84.5,-44.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19332 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 19333 + components: + - type: Transform + pos: -4.5,-72.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 19334 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 19335 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 2 + - uid: 19337 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: 1.5,-62.5 + parent: 2 + - uid: 19339 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - uid: 19340 + components: + - type: Transform + pos: 1.5,-66.5 + parent: 2 + - uid: 19341 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 19342 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 19343 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 19344 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 19345 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19346 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19347 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19348 + components: + - type: Transform + pos: -8.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19349 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19350 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19351 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 19352 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19353 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19354 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19355 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerForensicMantisFilled + entities: + - uid: 19356 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 19263 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19264 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19357 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 19358 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19359 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 19360 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 19361 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 19362 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 19363 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19364 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 19365 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 19366 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 + - uid: 19367 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 19368 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 2 + - uid: 19369 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - uid: 19370 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 2 + - uid: 19371 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 19372 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 19373 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19374 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerParamedicFilled + entities: + - uid: 19375 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 19377 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 19378 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 19379 + components: + - type: Transform + pos: 72.5,-37.5 + parent: 2 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 19380 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 19381 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 19383 + components: + - type: Transform + pos: 69.5,-21.5 + parent: 2 + - uid: 19384 + components: + - type: Transform + pos: 71.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19385 + components: + - type: Transform + pos: 70.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19386 + components: + - type: Transform + pos: 69.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19387 + components: + - type: Transform + pos: 65.5,-51.5 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: 74.5,-26.5 + parent: 2 + - uid: 19389 + components: + - type: Transform + pos: 74.5,-27.5 + parent: 2 + - uid: 19390 + components: + - type: Transform + pos: 65.5,-50.5 + parent: 2 + - uid: 19391 + components: + - type: Transform + pos: 72.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSecurity + entities: + - uid: 19392 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: + - uid: 19393 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19396 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19397 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19398 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19399 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19400 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19401 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 +- proto: LockerWardenFilled + entities: + - uid: 1194 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1197 + - 1198 + - 1196 + - 1195 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 19405 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MachineAnomalyGenerator + entities: + - uid: 19408 + components: + - type: Transform + pos: 76.5,-51.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 19409 + components: + - type: Transform + pos: 70.5,-49.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + pos: 71.5,-49.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 19411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-57.5 + parent: 2 + - uid: 19412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-56.5 + parent: 2 + - uid: 19413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-57.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 19414 + components: + - type: Transform + pos: 79.5,-29.5 + parent: 2 + - uid: 19415 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11447 +- proto: MachineCentrifuge + entities: + - uid: 19416 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 19417 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 19418 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 19419 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 19420 + components: + - type: Transform + pos: 33.5,-85.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 19421 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 19422 + components: + - type: Transform + pos: 13.04347,39.66646 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 30 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19423 + components: + - type: Transform + pos: 13.010895,39.43859 + parent: 2 + - type: BallisticAmmoProvider + unspawnedCount: 30 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19424 + components: + - type: Transform + pos: 12.994605,39.829216 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: MailingUnit + entities: + - uid: 19425 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - type: MailingUnit + tag: mailroom + - type: Configuration + config: + tag: mailroom + - uid: 19426 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - type: MailingUnit + tag: hop + - type: Configuration + config: + tag: hop + - uid: 19427 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - type: MailingUnit + tag: security + - type: Configuration + config: + tag: security + - uid: 19428 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - type: MailingUnit + tag: medical + - type: Configuration + config: + tag: medical + - uid: 19429 + components: + - type: Transform + pos: 69.5,-17.5 + parent: 2 + - type: MailingUnit + tag: science + - type: Configuration + config: + tag: science + - uid: 19430 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - type: MailingUnit + tag: engineering + - type: Configuration + config: + tag: engineering + - uid: 19431 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - type: MailingUnit + tag: bridge + - type: Configuration + config: + tag: bridge +- proto: MailTeleporter + entities: + - uid: 19432 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 19433 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 19438 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: 80.5,-56.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: 84.5,-53.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: 85.5,-53.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 19443 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: 41.5,-66.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: 82.5,-37.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: 36.5,-67.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 19449 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 19452 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + pos: 79.5,-56.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + pos: 32.5,-64.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 19457 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: -30.5,-72.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + pos: 78.5,-56.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 19461 + components: + - type: Transform + pos: -4.6981964,45.805054 + parent: 2 +- proto: MaterialBiomass + entities: + - uid: 19462 + components: + - type: Transform + pos: 46.518677,-44.43049 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: 39.48093,-16.240036 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: 20.505724,-33.40618 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 19465 + components: + - type: Transform + pos: 38.484657,-26.592813 + parent: 2 + - uid: 19466 + components: + - type: Transform + pos: -9.522169,-25.204441 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 19467 + components: + - type: Transform + pos: -29.519228,5.30172 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 19468 + components: + - type: Transform + pos: -9.303419,-25.688816 + parent: 2 +- proto: MaterialReclaimer + entities: + - uid: 19469 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 +- proto: MaterialSilo + entities: + - uid: 19470 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 1209 + components: + - type: Transform + parent: 1207 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19471 + components: + - type: Transform + pos: 62.54538,-43.95337 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 19472 + components: + - type: Transform + pos: -10.435738,-39.009453 + parent: 2 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 19473 + components: + - type: Transform + pos: -31.488705,-11.49092 + parent: 2 +- proto: MedicalBed + entities: + - uid: 19474 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 19476 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 19477 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 +- proto: MedicalBiofabricator + entities: + - uid: 19479 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 19480 + components: + - type: Transform + pos: 46.5,-46.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 19481 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 +- proto: Medkit + entities: + - uid: 19482 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 19483 + components: + - type: Transform + pos: 62.445473,12.47963 + parent: 2 + - uid: 19484 + components: + - type: Transform + pos: 40.81253,-29.384502 + parent: 2 + - uid: 19485 + components: + - type: Transform + pos: 40.90628,-29.556377 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 19486 + components: + - type: Transform + pos: 41.515656,-29.400127 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -59.651424,18.448038 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: 41.609406,-29.587627 + parent: 2 + - uid: 19489 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 19490 + components: + - type: Transform + pos: 36.168636,-40.388107 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: MedkitFilled + entities: + - uid: 19491 + components: + - type: Transform + pos: 4.550616,-5.4263577 + parent: 2 + - uid: 19492 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 19493 + components: + - type: Transform + pos: 22.595015,9.598176 + parent: 2 + - uid: 19494 + components: + - type: Transform + pos: -6.5648327,29.651033 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: 5.4615917,37.5934 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19496 + components: + - type: Transform + pos: -41.335575,1.3768375 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + pos: -23.440756,-38.500435 + parent: 2 + - uid: 19499 + components: + - type: Transform + pos: -23.463255,-38.140434 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: 1.5,-76.5 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 19501 + components: + - type: Transform + pos: 19.523796,-36.40264 + parent: 2 + - uid: 19502 + components: + - type: Transform + pos: 21.62015,-36.415665 + parent: 2 + - uid: 19503 + components: + - type: Transform + pos: 38.75003,-29.556377 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: 38.68753,-29.353252 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: -6.3929577,29.432283 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 19506 + components: + - type: Transform + pos: 39.390656,-29.400127 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: 39.46878,-29.572002 + parent: 2 + - uid: 19508 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 2 +- proto: MedkitToxin + entities: + - uid: 19509 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 19510 + components: + - type: Transform + pos: 40.12503,-29.431377 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: 40.21878,-29.572002 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 19512 + components: + - type: Transform + pos: -10.498238,-39.353203 + parent: 2 + - uid: 19513 + components: + - type: Transform + pos: -10.310738,-39.540703 + parent: 2 + - uid: 19514 + components: + - type: Transform + pos: 74.25775,-19.490871 + parent: 2 + - uid: 19515 + components: + - type: Transform + rot: 0.0004530529258772731 rad + pos: 74.7369,-19.349794 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 19516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.320835,-12.617823 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: Mirror + entities: + - uid: 19517 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 19522 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 19523 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 19525 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 19527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,41.5 + parent: 2 +- proto: MonkeyCubeWrapped + entities: + - uid: 19528 + components: + - type: Transform + pos: 31.299288,-1.340906 + parent: 2 +- proto: MopBucket + entities: + - uid: 19529 + components: + - type: Transform + pos: -51.975006,-8.452682 + parent: 2 + - uid: 19530 + components: + - type: Transform + pos: -52.538174,-8.415283 + parent: 2 + - uid: 19531 + components: + - type: Transform + pos: -18.537788,51.577576 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 19532 + components: + - type: Transform + pos: 5.2301235,-35.627228 + parent: 2 + - uid: 19533 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 2 + - uid: 19534 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 +- proto: MopItem + entities: + - uid: 19535 + components: + - type: Transform + pos: 57.61384,-49.32746 + parent: 2 + - uid: 19536 + components: + - type: Transform + pos: -49.538174,-7.4621577 + parent: 2 + - uid: 19537 + components: + - type: Transform + pos: -49.538174,-7.4621577 + parent: 2 + - uid: 19538 + components: + - type: Transform + pos: -49.538174,-7.4621577 + parent: 2 + - uid: 19539 + components: + - type: Transform + pos: -18.522163,51.546326 + parent: 2 + - uid: 19540 + components: + - type: Transform + pos: 5.4957485,-36.408478 + parent: 2 + - uid: 19541 + components: + - type: Transform + pos: 5.5582485,-36.455353 + parent: 2 + - uid: 19542 + components: + - type: Transform + pos: -16.469421,-66.467445 + parent: 2 + - uid: 19543 + components: + - type: Transform + pos: -32.45273,-16.475302 + parent: 2 +- proto: Morgue + entities: + - uid: 19544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-19.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + morgue_tray: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 19547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.7822967 + - 17.990545 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.7822967 + - 17.990545 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.7822967 + - 17.990545 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 4.3997126 + - 16.5513 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.7822967 + - 17.990545 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.7822967 + - 17.990545 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 4.3997126 + - 16.5513 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 4.3997126 + - 16.5513 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 4.3997126 + - 16.5513 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MouseTimedSpawner + entities: + - uid: 19560 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 +- proto: Multitool + entities: + - uid: 19561 + components: + - type: Transform + pos: -1.5571159,-4.59795 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + pos: -41.8512,5.5330877 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: -37.715458,2.9862125 + parent: 2 + - uid: 19565 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 19566 + components: + - type: Transform + pos: -28.508348,-26.915876 + parent: 2 + - uid: 19567 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 19568 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + pos: -5.398419,-57.63227 + parent: 2 + - uid: 19570 + components: + - type: Transform + pos: 47.523952,-66.25797 + parent: 2 + - uid: 19571 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 2 + - uid: 19572 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 19573 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 + - uid: 19574 + components: + - type: Transform + pos: 33.528397,-88.48169 + parent: 2 + - uid: 19575 + components: + - type: Transform + pos: 46.123173,-44.37004 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19576 + components: + - type: Transform + pos: -34.84885,-51.458115 + parent: 2 +- proto: N14ChairMetalBlue + entities: + - uid: 19577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-74.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-70.5 + parent: 2 +- proto: N14ChairMetalRed + entities: + - uid: 19579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-70.5 + parent: 2 +- proto: N14DecorFloorPaper + entities: + - uid: 19580 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: N14DecorFloorPaper2 + entities: + - uid: 19581 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 19582 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: N14DoorWoodRoomDamaged + entities: + - uid: 19583 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 +- proto: N14TableCounterBar + entities: + - uid: 19584 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 19585 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 +- proto: N14TableDeskWood2 + entities: + - uid: 19586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 +- proto: N14TableWoodCabledrum + entities: + - uid: 19587 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 19588 + components: + - type: Transform + pos: 2.5,-83.5 + parent: 2 + - uid: 19589 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 2 + - uid: 19590 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 2 + - uid: 19591 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 19593 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - uid: 19594 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 2 + - uid: 19595 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 + - uid: 19596 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 2 + - uid: 19597 + components: + - type: Transform + pos: 60.5,-37.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: 71.5,-59.5 + parent: 2 + - uid: 19599 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: 8.5,-86.5 + parent: 2 + - uid: 19601 + components: + - type: Transform + pos: 8.5,-85.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 19602 + components: + - type: Transform + pos: 54.482033,-24.522997 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 19603 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 19604 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 19605 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 19606 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 19607 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: OilJarCorn + entities: + - uid: 19608 + components: + - type: Transform + pos: 33.331284,-7.5967016 + parent: 2 +- proto: OperatingTable + entities: + - uid: 19609 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 19610 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 +- proto: OracleSpawner + entities: + - uid: 19613 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 19614 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plasma + - Uranium + - Gold + - Silver +- proto: OverlordCircuitBoard + entities: + - uid: 19615 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 19616 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 19618 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 19619 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 19620 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 19622 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 19624 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - uid: 19626 + components: + - type: Transform + pos: 35.5,-69.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 19628 + components: + - type: Transform + pos: 62.5,-37.5 + parent: 2 + - uid: 19629 + components: + - type: Transform + pos: 61.5,-36.5 + parent: 2 + - uid: 19630 + components: + - type: Transform + pos: 61.5,-37.5 + parent: 2 + - uid: 19631 + components: + - type: Transform + pos: 70.5,-59.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 19633 + components: + - type: Transform + pos: 9.5,-65.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: 8.5,-92.5 + parent: 2 + - uid: 19635 + components: + - type: Transform + pos: 8.5,-93.5 + parent: 2 +- proto: OxygenTank + entities: + - uid: 19636 + components: + - type: MetaData + name: empty tank + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - uid: 19637 + components: + - type: MetaData + name: empty tank + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - uid: 19638 + components: + - type: MetaData + name: empty tank + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - uid: 19639 + components: + - type: MetaData + name: empty tank + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - uid: 19640 + components: + - type: MetaData + name: empty tank + - type: Transform + pos: 79.5,-43.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 19641 + components: + - type: Transform + pos: 76.5,-57.5 + parent: 2 +- proto: PackPaperRollingFilters + entities: + - uid: 19642 + components: + - type: Transform + pos: -21.532673,46.54654 + parent: 2 +- proto: PaintingAmogusTriptych + entities: + - uid: 19643 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 +- proto: PaintingCafeTerraceAtNight + entities: + - uid: 19644 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 19645 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 +- proto: PaintingMoony + entities: + - uid: 19646 + components: + - type: Transform + pos: 62.5,-11.5 + parent: 2 +- proto: PaintingNightHawks + entities: + - uid: 19647 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 19648 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 +- proto: PaintingTheGreatWave + entities: + - uid: 19649 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 +- proto: PaintingTheScream + entities: + - uid: 19650 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 +- proto: PaintingTheSonOfMan + entities: + - uid: 19651 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 19652 + components: + - type: Transform + pos: -4.5013614,-12.381943 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: Paper + entities: + - uid: 19653 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 19655 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 19656 + components: + - type: Transform + pos: 28.426676,-19.487911 + parent: 2 + - uid: 19657 + components: + - type: Transform + pos: 28.395426,-19.503536 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: 28.395426,-19.487911 + parent: 2 + - uid: 19659 + components: + - type: Transform + pos: 6.2845893,-15.291874 + parent: 2 + - uid: 19660 + components: + - type: Transform + pos: 6.2533393,-15.276249 + parent: 2 + - uid: 19661 + components: + - type: Transform + pos: 6.2533393,-15.260624 + parent: 2 + - uid: 19662 + components: + - type: Transform + pos: 6.2377143,-15.307499 + parent: 2 + - uid: 19663 + components: + - type: Transform + pos: 6.2533393,-15.307499 + parent: 2 + - uid: 19664 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 19665 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 19666 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 19668 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 19669 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + pos: 20.509228,6.5730886 + parent: 2 + - uid: 19671 + components: + - type: Transform + pos: 20.509228,6.5730886 + parent: 2 + - uid: 19672 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 19673 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 19674 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 19675 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 19676 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 19677 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 19678 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 19679 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 19684 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 19685 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 19686 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 19687 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19688 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19689 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19690 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19691 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19692 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 19693 + components: + - type: Transform + pos: 13.54273,39.529617 + parent: 2 + - uid: 19694 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 19696 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 19698 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + pos: 20.509228,6.5730886 + parent: 2 + - uid: 19700 + components: + - type: Transform + pos: 20.509228,6.5730886 + parent: 2 + - uid: 19701 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 19703 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 19704 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + pos: -59.354946,3.707062 + parent: 2 + - uid: 19707 + components: + - type: Transform + pos: -59.354946,3.707062 + parent: 2 + - uid: 19708 + components: + - type: Transform + pos: -59.354946,3.707062 + parent: 2 + - uid: 19709 + components: + - type: Transform + pos: -58.43307,2.519562 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: -34.62692,-5.2055216 + parent: 2 + - uid: 19711 + components: + - type: Transform + pos: -34.361294,-5.4555216 + parent: 2 + - uid: 19712 + components: + - type: Transform + pos: -34.18942,-5.6742716 + parent: 2 + - uid: 19713 + components: + - type: Transform + pos: -59.641922,-7.353676 + parent: 2 + - uid: 19714 + components: + - type: Transform + pos: -59.470047,-7.572426 + parent: 2 + - uid: 19715 + components: + - type: Transform + pos: -59.266922,-7.775551 + parent: 2 + - uid: 19716 + components: + - type: Transform + pos: -57.641922,-7.353676 + parent: 2 + - uid: 19717 + components: + - type: Transform + pos: -57.407547,-7.572426 + parent: 2 + - uid: 19718 + components: + - type: Transform + pos: -57.298172,-7.791176 + parent: 2 + - uid: 19719 + components: + - type: Transform + pos: -19.72908,-19.2799 + parent: 2 + - uid: 19720 + components: + - type: Transform + pos: -19.619705,-19.483025 + parent: 2 + - uid: 19721 + components: + - type: Transform + pos: -19.432205,-19.6549 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: -25.177052,-21.289703 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: -25.083302,-21.477203 + parent: 2 + - uid: 19724 + components: + - type: Transform + pos: -24.911427,-21.695953 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + pos: 43.6327,-16.439646 + parent: 2 + - uid: 19729 + components: + - type: Transform + pos: 43.679577,-16.377146 + parent: 2 + - uid: 19730 + components: + - type: Transform + pos: 43.648327,-16.33027 + parent: 2 + - uid: 19731 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 19737 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 19738 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 19739 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 19740 + components: + - type: Transform + pos: 26.502972,-105.49065 + parent: 2 + - uid: 19741 + components: + - type: Transform + pos: 26.502972,-105.49065 + parent: 2 + - uid: 19742 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 19747 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + pos: -22.518574,-11.5023775 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 19749 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 +- proto: ParchisBoard + entities: + - uid: 19751 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + pos: -14.380374,40.648094 + parent: 2 + - uid: 19753 + components: + - type: Transform + pos: 56.483215,-34.930893 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 19754 + components: + - type: Transform + pos: 12.442288,-79.387054 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19755 + components: + - type: Transform + pos: 9.470699,-60.377747 + parent: 2 + - uid: 19756 + components: + - type: Transform + pos: -65.43356,12.4755745 + parent: 2 + - uid: 19757 + components: + - type: Transform + pos: -49.419334,-6.4839315 + parent: 2 + - uid: 19758 + components: + - type: Transform + pos: -28.374622,-53.801064 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: 9.470699,-60.377747 + parent: 2 + - uid: 19760 + components: + - type: Transform + pos: 7.542186,-46.412346 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: 7.542186,-46.412346 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: 47.258327,-66.86735 + parent: 2 + - uid: 19763 + components: + - type: Transform + rot: 0.0003970976686105132 rad + pos: 78.73667,-63.693985 + parent: 2 + - uid: 19764 + components: + - type: Transform + pos: -49.419334,-6.4839315 + parent: 2 + - uid: 19765 + components: + - type: Transform + pos: -49.419334,-6.4839315 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: 7.542186,-46.412346 + parent: 2 + - uid: 19767 + components: + - type: Transform + pos: 7.542186,-46.412346 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: 9.470699,-60.377747 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: -9.532342,9.557216 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: -17.51511,-83.93184 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.371751,-56.08268 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.387376,-56.004555 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.615184,-88.37609 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: Pen + entities: + - uid: 19774 + components: + - type: Transform + pos: 62.860847,-30.309973 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: 6.7796197,-15.189568 + parent: 2 + - uid: 19778 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 19779 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 19780 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 19781 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + pos: -1.2001991,30.822023 + parent: 2 + - uid: 19783 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 19784 + components: + - type: Transform + pos: -10.415172,17.04186 + parent: 2 + - uid: 19785 + components: + - type: Transform + pos: -10.415172,17.04186 + parent: 2 + - uid: 19786 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 19790 + components: + - type: Transform + pos: -56.5,3.5000002 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: -59.58932,3.613312 + parent: 2 + - uid: 19792 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 19793 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 19794 + components: + - type: Transform + pos: -33.164673,-27.185246 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19795 + components: + - type: Transform + rot: 5.431357567431405E-05 rad + pos: -19.264788,-19.545263 + parent: 2 + - uid: 19796 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 19797 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + pos: 43.44618,-16.36152 + parent: 2 + - uid: 19801 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 19802 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 19803 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 19804 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 19805 + components: + - type: Transform + pos: 26.706097,-106.16252 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: 62.860847,-30.559973 + parent: 2 + - uid: 19807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.114672,-12.140392 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.420918,-11.932718 + parent: 2 + - uid: 19809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.320835,-12.129541 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PercentileDie + entities: + - uid: 19810 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 19811 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 19812 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: PersonalAI + entities: + - uid: 19813 + components: + - type: Transform + pos: -5.4702005,-4.4925995 + parent: 2 + - uid: 19814 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + pos: 74.261826,-35.445793 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 19816 + components: + - type: Transform + pos: 59.539406,-39.454147 + parent: 2 +- proto: PestSpray + entities: + - uid: 19817 + components: + - type: Transform + pos: -19.276125,7.595537 + parent: 2 + - uid: 19818 + components: + - type: Transform + pos: -22.188848,7.6088066 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 19819 + components: + - type: Transform + pos: 7.478427,-15.438816 + parent: 2 + - uid: 19820 + components: + - type: Transform + pos: -8.522932,-51.390182 + parent: 2 + - uid: 19821 + components: + - type: Transform + pos: 27.481524,-83.38469 + parent: 2 + - uid: 19822 + components: + - type: Transform + pos: -9.523602,-13.459726 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 19823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 2 + - uid: 19824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 19825 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 19826 + components: + - type: Transform + pos: 52.54258,-74.65333 + parent: 2 +- proto: Pill + entities: + - uid: 19827 + components: + - type: Transform + pos: -4.40826,47.26007 + parent: 2 +- proto: PillCanister + entities: + - uid: 19828 + components: + - type: Transform + pos: 11.687964,-33.82743 + parent: 2 + - uid: 19829 + components: + - type: Transform + pos: 11.422339,-33.82743 + parent: 2 + - uid: 19830 + components: + - type: Transform + pos: 11.562964,-33.92118 + parent: 2 +- proto: PillCanisterTricordrazine + entities: + - uid: 19831 + components: + - type: Transform + pos: -6.816458,30.737268 + parent: 2 + - uid: 19832 + components: + - type: Transform + pos: -6.816458,30.502893 + parent: 2 + - uid: 19833 + components: + - type: Transform + pos: -6.785208,30.206018 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 19834 + components: + - type: Transform + pos: 12.467991,-15.505957 + parent: 2 +- proto: PlantBGoneSpray + entities: + - uid: 19835 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 19836 + components: + - type: Transform + pos: -22.454473,7.468181 + parent: 2 + - uid: 19837 + components: + - type: Transform + pos: 48.767952,1.7352862 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 19838 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 19839 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 19840 + components: + - type: Transform + pos: 62.5,-36.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 19841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-85.5 + parent: 2 + - uid: 19842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-84.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-84.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-86.5 + parent: 2 + - uid: 19845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-87.5 + parent: 2 + - uid: 19846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-87.5 + parent: 2 + - uid: 19847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-86.5 + parent: 2 + - uid: 19848 + components: + - type: Transform + pos: 8.5,-89.5 + parent: 2 + - uid: 19849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-92.5 + parent: 2 + - uid: 19850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-85.5 + parent: 2 + - uid: 19851 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 + - uid: 19852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-84.5 + parent: 2 + - uid: 19853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-84.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 2 + - uid: 19855 + components: + - type: Transform + pos: -0.5,-87.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-85.5 + parent: 2 + - uid: 19857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-84.5 + parent: 2 + - uid: 19858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-84.5 + parent: 2 + - uid: 19859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-86.5 + parent: 2 + - uid: 19860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-87.5 + parent: 2 + - uid: 19861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-87.5 + parent: 2 + - uid: 19862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-86.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-85.5 + parent: 2 + - uid: 19864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-88.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-88.5 + parent: 2 + - uid: 19866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-88.5 + parent: 2 +- proto: PlasmaWindoorSecureEngineeringLocked + entities: + - uid: 19867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-91.5 + parent: 2 + - uid: 19868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-90.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 19869 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 19870 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 19871 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 19872 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 + - uid: 19873 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 19874 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 19875 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 19876 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 +- proto: PlasticFlapsClear + entities: + - uid: 19877 + components: + - type: Transform + pos: -17.5,-67.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 19878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-111.5 + parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 19879 + components: + - type: Transform + pos: 14.438781,-74.48842 + parent: 2 + - uid: 19880 + components: + - type: Transform + pos: 21.579407,-74.48842 + parent: 2 +- proto: PlushieBee + entities: + - uid: 19881 + components: + - type: Transform + pos: 5.436387,5.4152575 + parent: 2 +- proto: PlushieCarp + entities: + - uid: 19882 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 19883 + components: + - type: Transform + pos: 44.578045,-62.22757 + parent: 2 +- proto: PlushieRGBee + entities: + - uid: 19884 + components: + - type: Transform + pos: -21.53196,-58.55052 + parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 19885 + components: + - type: Transform + pos: -8.5066185,51.492676 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 19886 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 19887 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 19888 + components: + - type: Transform + pos: -26.5,-69.5 + parent: 2 + - uid: 19889 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 19890 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 19891 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 19892 + components: + - type: Transform + pos: -48.5,21.5 + parent: 2 + - uid: 19893 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 19894 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 19895 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 19896 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 19897 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 19898 + components: + - type: Transform + pos: 80.5,-37.5 + parent: 2 + - uid: 19899 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - uid: 19900 + components: + - type: Transform + pos: 9.5,-72.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 19901 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 2 + - uid: 19902 + components: + - type: Transform + pos: -26.5,-71.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 19903 + components: + - type: Transform + pos: -26.5,-70.5 + parent: 2 + - uid: 19904 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 19905 + components: + - type: Transform + pos: -13.537719,-37.43518 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 19906 + components: + - type: Transform + pos: 23.5,-95.5 + parent: 2 + - uid: 19907 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 2 + - uid: 19908 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 2 + - uid: 19909 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 19910 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 19911 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 19912 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 19913 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 19914 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 19915 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 19916 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 19917 + components: + - type: Transform + pos: 22.5,-91.5 + parent: 2 + - uid: 19918 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 + - uid: 19919 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 19920 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 19921 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - uid: 19922 + components: + - type: Transform + pos: 12.5,-65.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 19923 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 +- proto: PosterContrabandBountyHunters + entities: + - uid: 19924 + components: + - type: Transform + pos: -18.5,49.5 + parent: 2 +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 19925 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 19926 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 19927 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 19928 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 +- proto: PosterContrabandFreeDrone + entities: + - uid: 19929 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 +- proto: PosterContrabandFreeTonto + entities: + - uid: 19930 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 19931 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 19932 + components: + - type: Transform + pos: 41.5,-69.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 19933 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 19934 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 +- proto: PosterContrabandLamarr + entities: + - uid: 19935 + components: + - type: Transform + pos: 75.5,-34.5 + parent: 2 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 19936 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 19937 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 19938 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 19939 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 19940 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 19941 + components: + - type: Transform + pos: 58.5,-34.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 19942 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 +- proto: PosterLegitBuild + entities: + - uid: 19943 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 19944 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 19945 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 +- proto: PosterLegitDickGumshue + entities: + - uid: 19946 + components: + - type: Transform + pos: 43.5,-64.5 + parent: 2 + - uid: 19947 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 +- proto: PosterLegitFruitBowl + entities: + - uid: 19948 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 19949 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 19950 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 19951 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 19952 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 19953 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 19954 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 19955 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 19956 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 19957 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 19958 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 19959 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 19960 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 19961 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 19962 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 19963 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 +- proto: PosterLegitPDAAd + entities: + - uid: 19964 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 19965 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 19966 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 19967 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 +- proto: PosterLegitSafetyInternals + entities: + - uid: 19968 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 19969 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 2 + - uid: 19970 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 19971 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 19972 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 +- proto: PosterLegitSafetyMothFires + entities: + - uid: 19973 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 19974 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 19975 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 19976 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 19977 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 19978 + components: + - type: Transform + pos: -4.5,-71.5 + parent: 2 +- proto: PosterLegitSafetyReport + entities: + - uid: 19979 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 19980 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 +- proto: PosterLegitScience + entities: + - uid: 19981 + components: + - type: Transform + pos: 81.5,-50.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 19982 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 19983 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 +- proto: PosterLegitStateLaws + entities: + - uid: 19984 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 +- proto: PosterLegitVacation + entities: + - uid: 19985 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 19986 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 +- proto: PottedPlant0 + entities: + - uid: 19988 + components: + - type: Transform + pos: 55.5,-39.5 + parent: 2 +- proto: PottedPlant1 + entities: + - uid: 19989 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 +- proto: PottedPlant10 + entities: + - uid: 19992 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + pos: 74.5,-37.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 19995 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 +- proto: PottedPlant12 + entities: + - uid: 19996 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + pos: -74.5,-3.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 +- proto: PottedPlant14 + entities: + - uid: 19999 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 2 +- proto: PottedPlant16 + entities: + - uid: 20000 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 +- proto: PottedPlant19 + entities: + - uid: 20001 + components: + - type: Transform + pos: -73.51865,8.204316 + parent: 2 + - uid: 20002 + components: + - type: Transform + pos: 60.5,-39.5 + parent: 2 +- proto: PottedPlant2 + entities: + - uid: 20003 + components: + - type: Transform + pos: 80.5,-52.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 20004 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 20005 + components: + - type: Transform + pos: 34.5,-51.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 +- proto: PottedPlant22 + entities: + - uid: 20008 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 +- proto: PottedPlant23 + entities: + - uid: 20009 + components: + - type: Transform + pos: 30.568203,-36.742645 + parent: 2 +- proto: PottedPlant24 + entities: + - uid: 20010 + components: + - type: Transform + pos: 34.5,-55.5 + parent: 2 + - uid: 20011 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 +- proto: PottedPlant29 + entities: + - uid: 20013 + components: + - type: Transform + pos: 43.5,-63.5 + parent: 2 +- proto: PottedPlant3 + entities: + - uid: 20014 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 +- proto: PottedPlant5 + entities: + - uid: 20016 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + pos: 37.493153,-34.77379 + parent: 2 +- proto: PottedPlant6 + entities: + - uid: 20018 + components: + - type: Transform + pos: 27.518597,-87.763794 + parent: 2 +- proto: PottedPlant8 + entities: + - uid: 20019 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 20020 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 20021 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 20024 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20025 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20026 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20027 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 20029 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 20031 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 20032 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20033 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20034 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20035 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20036 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20038 + components: + - type: Transform + pos: 77.5,-15.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20039 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20040 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20041 + components: + - type: Transform + pos: 73.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20042 + components: + - type: Transform + pos: 63.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20043 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 20045 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 20046 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 20047 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 20048 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 20049 + components: + - type: Transform + pos: 73.5,0.5 + parent: 2 + - uid: 20050 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + pos: 73.5,-5.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 20052 + components: + - type: Transform + pos: 70.5,-37.5 + parent: 2 +- proto: PowerCellPotato + entities: + - uid: 20053 + components: + - type: Transform + pos: -18.541685,16.576048 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 716 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 20054 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 20055 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 + - uid: 20056 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 20057 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 20058 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20059 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 20060 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 20061 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20062 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20063 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-45.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 2 + - uid: 20067 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 20070 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 20072 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 20074 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-28.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-77.5 + parent: 2 + - uid: 20087 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 +- proto: PowerDrill + entities: + - uid: 20088 + components: + - type: Transform + pos: 74.5232,-35.42073 + parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 20089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 2 + - uid: 20090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-46.5 + parent: 2 + - uid: 20091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 2 + - uid: 20092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-42.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-46.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 20095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-65.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-81.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-84.5 + parent: 2 + - uid: 20099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-88.5 + parent: 2 + - uid: 20100 + components: + - type: Transform + pos: -2.5,-91.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-84.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,34.5 + parent: 2 + - uid: 20103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-35.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-46.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + pos: -76.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20107 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20108 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 20109 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 20110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-28.5 + parent: 2 + - uid: 20111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20116 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20120 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20123 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20126 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20130 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 20139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,31.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20145 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20146 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 20147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,30.5 + parent: 2 + - uid: 20148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20149 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20153 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20155 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20157 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20160 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20167 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - uid: 20169 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20174 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20175 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20176 + components: + - type: Transform + pos: 64.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20177 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20180 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20184 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20185 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20190 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20193 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20195 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20199 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20202 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20204 + components: + - type: Transform + pos: -69.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20205 + components: + - type: Transform + pos: -75.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20209 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20213 + components: + - type: Transform + pos: -62.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20218 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20219 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20220 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20225 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20226 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20228 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20230 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20231 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20234 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20235 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20236 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20239 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20240 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20243 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20244 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20250 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20251 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20270 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-28.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20275 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20283 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20288 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20289 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20290 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20291 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-49.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20296 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20297 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20299 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-48.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20308 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20309 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-43.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-49.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-52.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20318 + components: + - type: Transform + pos: 45.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20321 + components: + - type: Transform + pos: 41.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20324 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20329 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20335 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-57.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-57.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-53.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20343 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20346 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-54.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20349 + components: + - type: Transform + pos: 80.5,-49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20357 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20358 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20363 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20364 + components: + - type: Transform + pos: 61.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20365 + components: + - type: Transform + pos: 72.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-53.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20370 + components: + - type: Transform + pos: 73.5,-49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20372 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20373 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20378 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20381 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20384 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20385 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-53.5 + parent: 2 + - uid: 20393 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20394 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20395 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20396 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20398 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20409 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20410 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20411 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20413 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20414 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20415 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,0.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20423 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-67.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-101.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-97.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-97.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-101.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-109.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-109.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-114.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-114.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-50.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-68.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-31.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: 1.5,-91.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-81.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-88.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: -21.5,-73.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-75.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-74.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-88.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-84.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-84.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-88.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-94.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-94.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-94.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-74.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-75.5 + parent: 2 + - uid: 20454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-75.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-8.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-67.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-62.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-58.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-55.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-45.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-53.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-61.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-65.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 20465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-36.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-75.5 + parent: 2 + - uid: 20467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-75.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-74.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-74.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-49.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-69.5 + parent: 2 +- proto: PoweredLightBlueInterior + entities: + - uid: 20476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20481 + components: + - type: Transform + pos: 93.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20483 + components: + - type: Transform + pos: 80.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20484 + components: + - type: Transform + pos: 60.5,-73.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20485 + components: + - type: Transform + pos: 50.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightLED + entities: + - uid: 20488 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-100.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: 24.5,-119.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + pos: 32.5,-119.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-100.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-112.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-112.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-59.5 + parent: 2 + - uid: 20496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-59.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightSodium + entities: + - uid: 20502 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20503 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 20504 + components: + - type: Transform + pos: -10.5,-79.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + pos: 23.5,-77.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-73.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + pos: 11.5,-70.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 20510 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-74.5 + parent: 2 + - uid: 20512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-75.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-83.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-67.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-66.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20519 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20520 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-48.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20531 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20532 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20533 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20547 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20551 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20553 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20558 + components: + - type: Transform + pos: 73.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20569 + components: + - type: Transform + pos: -80.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20571 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20572 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20576 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20577 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20580 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20584 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20588 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20590 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20591 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20592 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20594 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20598 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20603 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 2 + - uid: 20605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20609 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20614 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-44.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20617 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20618 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-54.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20620 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-62.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-73.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20623 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-58.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20628 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20636 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-52.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20638 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20639 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-65.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20642 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20643 + components: + - type: Transform + pos: 45.5,-70.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20645 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-46.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20650 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20652 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-66.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20655 + components: + - type: Transform + pos: 65.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20656 + components: + - type: Transform + pos: 85.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20657 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20660 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20662 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20663 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-57.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20668 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20678 + components: + - type: Transform + pos: 29.5,-83.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-87.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-90.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-90.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-90.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-81.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20684 + components: + - type: Transform + pos: 26.5,-105.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20685 + components: + - type: Transform + pos: 30.5,-105.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20686 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: 85.5,-13.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-11.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-3.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: 85.5,-5.5 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: 23.5,-95.5 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: 33.5,-95.5 + parent: 2 + - uid: 20694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-106.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-106.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: 32.5,-79.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-63.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 0.5,-89.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -1.5,-89.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-77.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-77.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-77.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-72.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-111.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-74.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-74.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-71.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-71.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-75.5 + parent: 2 + - uid: 20711 + components: + - type: Transform + pos: 16.5,-77.5 + parent: 2 + - uid: 20712 + components: + - type: Transform + pos: 19.5,-77.5 + parent: 2 + - uid: 20713 + components: + - type: Transform + pos: 11.5,-66.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: 9.5,-79.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-80.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-80.5 + parent: 2 + - uid: 20717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-56.5 + parent: 2 + - uid: 20718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-52.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 20721 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 20722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 20724 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 20726 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + - uid: 20727 + components: + - type: Transform + pos: 71.5,-19.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + - uid: 20728 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 20729 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 +- proto: PuddleVomit + entities: + - uid: 20730 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 20731 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 + parent: 2 +- proto: Rack + entities: + - uid: 20734 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: 8.5,-89.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + pos: -16.5,-75.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: 26.5,-87.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: 29.5,-83.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: 33.5,-95.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + pos: 51.5,-43.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: 55.5,-51.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: -11.5,38.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 20763 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: 75.5,12.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + pos: -45.5,21.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 20786 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 20791 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 20794 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + pos: -31.5,-74.5 + parent: 2 + - uid: 20798 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 20801 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 20804 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 20815 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 20817 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 20818 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 20819 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + pos: 47.5,-72.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + pos: 47.5,-71.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: 84.5,-48.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: 76.5,-57.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: 82.5,-63.5 + parent: 2 + - uid: 20826 + components: + - type: Transform + pos: 72.5,-33.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: 65.5,-52.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: 65.5,-53.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: 75.5,-54.5 + parent: 2 + - uid: 20831 + components: + - type: Transform + pos: 86.5,-27.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + pos: 86.5,-26.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 20834 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + pos: 81.5,-23.5 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: 80.5,-49.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 20843 + components: + - type: Transform + pos: 23.5,-88.5 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: 34.5,-90.5 + parent: 2 + - uid: 20845 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: 32.5,-64.5 + parent: 2 + - uid: 20849 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: 9.5,-75.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -9.5,-90.5 + parent: 2 + - uid: 20855 + components: + - type: Transform + pos: -9.5,-91.5 + parent: 2 +- proto: RadiationCollector + entities: + - uid: 20856 + components: + - type: Transform + pos: -2.5,-85.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: 1.5,-87.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: 1.5,-85.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: -2.5,-87.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: -1.5,-88.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: -1.5,-89.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: 0.5,-89.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: 2.5,-87.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: -3.5,-85.5 + parent: 2 + - uid: 20867 + components: + - type: Transform + pos: -3.5,-87.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 20868 + components: + - type: Transform + pos: 9.443931,-54.34355 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: -56.5,3.5000002 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + pos: -8.455454,-57.408157 + parent: 2 + - uid: 20873 + components: + - type: Transform + pos: 9.568931,-54.452927 + parent: 2 + - uid: 20874 + components: + - type: Transform + pos: 5.809936,-62.359688 + parent: 2 + - uid: 20875 + components: + - type: Transform + pos: 5.934936,-62.500313 + parent: 2 + - uid: 20876 + components: + - type: Transform + pos: 29.481524,-83.494064 + parent: 2 + - uid: 20877 + components: + - type: Transform + pos: 9.243138,-75.305466 + parent: 2 + - uid: 20878 + components: + - type: Transform + pos: 9.493138,-75.32109 + parent: 2 + - uid: 20879 + components: + - type: Transform + pos: 9.790013,-75.32109 + parent: 2 +- proto: Railing + entities: + - uid: 20880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-73.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-73.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: 71.5,-14.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + pos: 69.5,-14.5 + parent: 2 + - uid: 20889 + components: + - type: Transform + pos: 70.5,-14.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + pos: 62.5,-14.5 + parent: 2 + - uid: 20892 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 20893 + components: + - type: Transform + pos: -24.5,-56.5 + parent: 2 + - uid: 20894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-51.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-51.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-42.5 + parent: 2 + - uid: 20897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-42.5 + parent: 2 + - uid: 20898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-42.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-42.5 + parent: 2 + - uid: 20900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-42.5 + parent: 2 + - uid: 20901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-42.5 + parent: 2 + - uid: 20902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-42.5 + parent: 2 + - uid: 20903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-42.5 + parent: 2 + - uid: 20904 + components: + - type: Transform + pos: -50.5,-46.5 + parent: 2 + - uid: 20905 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 20906 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 20907 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - uid: 20908 + components: + - type: Transform + pos: -46.5,-46.5 + parent: 2 + - uid: 20909 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-40.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-41.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: -44.5,-46.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: -51.5,-46.5 + parent: 2 + - uid: 20914 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 20915 + components: + - type: Transform + pos: -53.5,-46.5 + parent: 2 + - uid: 20916 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 20918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-42.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-42.5 + parent: 2 + - uid: 20920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-42.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-42.5 + parent: 2 + - uid: 20922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-42.5 + parent: 2 + - uid: 20923 + components: + - type: Transform + pos: -43.5,-46.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 20924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-46.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-42.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 20926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-46.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-14.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 20931 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 20934 + components: + - type: Transform + pos: 78.5,-29.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: 80.5,-29.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 2 +- proto: RandomArtifactSpawner20 + entities: + - uid: 20937 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 20940 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 20941 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 20943 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 20947 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 20948 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 20949 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 20951 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 20952 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 20953 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 20954 + components: + - type: Transform + pos: 71.5,-29.5 + parent: 2 + - uid: 20955 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 20958 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 20965 + components: + - type: Transform + pos: 52.5,-48.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + pos: 61.5,-44.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 20975 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 20976 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 20979 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 20989 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: 41.5,-67.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + pos: 50.5,-61.5 + parent: 2 + - uid: 20995 + components: + - type: Transform + pos: 48.5,-48.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + pos: 64.5,-63.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + pos: 67.5,-57.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: 69.5,-67.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: 75.5,-62.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: 72.5,-62.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: 83.5,-56.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: 83.5,-53.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: 83.5,-40.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + pos: 84.5,-30.5 + parent: 2 + - uid: 21008 + components: + - type: Transform + pos: 87.5,-25.5 + parent: 2 + - uid: 21009 + components: + - type: Transform + pos: 77.5,-18.5 + parent: 2 + - uid: 21010 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 21012 + components: + - type: Transform + pos: 67.5,15.5 + parent: 2 + - uid: 21013 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 21014 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 21019 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 21020 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 21021 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 21023 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 + - uid: 21025 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 21026 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 21027 + components: + - type: Transform + pos: 64.5,-51.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: 58.5,-42.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 21031 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 21032 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 21034 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 21035 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 21036 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 21037 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 21038 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 21039 + components: + - type: Transform + pos: -71.5,11.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 21041 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 21049 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 21050 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 21051 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 21052 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 21053 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 21054 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 21055 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 21057 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 21058 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 21059 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 21060 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 21061 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 21062 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 2 + - uid: 21063 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 21064 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 21065 + components: + - type: Transform + pos: 60.5,-38.5 + parent: 2 + - uid: 21066 + components: + - type: Transform + pos: 37.5,-59.5 + parent: 2 + - uid: 21067 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 21068 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 21070 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 21071 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 21072 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 21073 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 21074 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 21075 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 21076 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 21078 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 21079 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 21080 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 21081 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 21082 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 21083 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 21086 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: 67.5,16.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: 73.5,12.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-6.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-11.5 + parent: 2 + - uid: 21114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-14.5 + parent: 2 + - uid: 21115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-12.5 + parent: 2 + - uid: 21116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 21118 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 21121 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 21122 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + pos: -71.5,10.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 21133 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 21134 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 21135 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 21137 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 + - uid: 21139 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 21140 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 21143 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 21146 + components: + - type: Transform + pos: -27.5,-58.5 + parent: 2 + - uid: 21147 + components: + - type: Transform + pos: -32.5,-74.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: 53.5,-62.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: 68.5,-59.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: 70.5,-56.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: 66.5,-67.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: 80.5,-58.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: 81.5,-61.5 + parent: 2 + - uid: 21154 + components: + - type: Transform + pos: 86.5,-55.5 + parent: 2 + - uid: 21155 + components: + - type: Transform + pos: 85.5,-42.5 + parent: 2 + - uid: 21156 + components: + - type: Transform + pos: 82.5,-35.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: 84.5,-31.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: 86.5,-21.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: 78.5,-19.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + pos: -12.5,47.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 21168 + components: + - type: Transform + pos: 51.5,-51.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: 55.5,-55.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: 63.5,-54.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 21171 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 21173 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 2 + - uid: 21177 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 21178 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 21180 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 21181 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 21184 + components: + - type: Transform + pos: 9.5,-57.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 +- proto: RCD + entities: + - uid: 21186 + components: + - type: Transform + pos: 8.498226,-89.46947 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 21187 + components: + - type: Transform + pos: -4.334055,-63.512657 + parent: 2 + - uid: 21188 + components: + - type: Transform + pos: -4.47468,-63.512657 + parent: 2 + - uid: 21189 + components: + - type: Transform + pos: 8.31825,-89.58041 + parent: 2 +- proto: RCDEmpty + entities: + - uid: 21190 + components: + - type: Transform + pos: -4.396555,-63.387657 + parent: 2 +- proto: ReagentContainerFlourSmall + entities: + - uid: 21191 + components: + - type: Transform + pos: -6.5124555,50.51773 + parent: 2 +- proto: ReagentContainerSugar + entities: + - uid: 21192 + components: + - type: Transform + pos: -38.656677,-45.97023 + parent: 2 + - type: Tag + tags: [] +- proto: Recycler + entities: + - uid: 21193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24276 +- proto: RedBarrel + entities: + - uid: 21194 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 21195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-71.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-71.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-71.5 + parent: 2 + - uid: 21198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-71.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + pos: 25.5,-58.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + pos: 25.5,-64.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 21205 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-72.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-81.5 + parent: 2 + - uid: 21208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-72.5 + parent: 2 + - uid: 21209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-72.5 + parent: 2 + - uid: 21211 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 2 + - uid: 21216 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 21217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-85.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + pos: -3.5,-78.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + pos: -5.5,-76.5 + parent: 2 + - uid: 21222 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 21224 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 21225 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 21226 + components: + - type: Transform + pos: 47.5,-54.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: 46.5,-54.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 21229 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 21232 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 21241 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 21242 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 21244 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-82.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-92.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 2 + - uid: 21250 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 21252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-72.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-72.5 + parent: 2 + - uid: 21254 + components: + - type: Transform + pos: 9.5,-92.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-71.5 + parent: 2 + - uid: 21256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-85.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 21257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-70.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-45.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-44.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-44.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-78.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 + - uid: 21264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 21265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - uid: 21268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - uid: 21269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - uid: 21270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - uid: 21272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-59.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-47.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-66.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-60.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-67.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-64.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-62.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + pos: -17.5,-77.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - uid: 21287 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 21293 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 21295 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 21298 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 21300 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 21301 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 21305 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 21306 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 21307 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 21308 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 21309 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 21310 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 21313 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 21314 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 21315 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 21320 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 21321 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 21322 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 21324 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 21325 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 21332 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 21334 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 21336 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 21337 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 21343 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 21344 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 21347 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 21354 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 21355 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 21356 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,7.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-2.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-2.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,7.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,7.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,7.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 21369 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 21370 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 21371 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 21372 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 21373 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 21374 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 21375 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 21378 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 21379 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 21380 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 21382 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 21383 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 21384 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 21385 + components: + - type: Transform + pos: 49.5,3.5 + parent: 2 + - uid: 21386 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 21387 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 21388 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 21389 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 21390 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 21391 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 21392 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 21393 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 21394 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 21396 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 21398 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 21399 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 21400 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 21401 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 21402 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 21403 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 21407 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 21408 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 2 + - uid: 21409 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: -67.5,-15.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 21412 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 21417 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 21418 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 21421 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 21422 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 21423 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 21424 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,7.5 + parent: 2 + - uid: 21433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 21439 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 21448 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + pos: 93.5,-27.5 + parent: 2 + - uid: 21466 + components: + - type: Transform + pos: 93.5,-28.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + pos: 92.5,-28.5 + parent: 2 + - uid: 21468 + components: + - type: Transform + pos: 91.5,-28.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + pos: 91.5,-27.5 + parent: 2 + - uid: 21470 + components: + - type: Transform + pos: 91.5,-30.5 + parent: 2 + - uid: 21471 + components: + - type: Transform + pos: 93.5,-30.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + pos: 42.5,-44.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + pos: 77.5,-48.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: 75.5,-48.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + pos: 72.5,-48.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + pos: 71.5,-48.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: 70.5,-48.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + pos: 38.5,-49.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 21491 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + pos: 68.5,-35.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: 80.5,-27.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: 88.5,-22.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: 89.5,-22.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: 90.5,-22.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: 91.5,-22.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: 92.5,-22.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: 92.5,-23.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: 80.5,-16.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + pos: 85.5,-2.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: 83.5,-2.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 21543 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - uid: 21544 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: 75.5,2.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 21569 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: 82.5,-67.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: 82.5,-66.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: 83.5,-66.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: 82.5,-68.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 21579 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + pos: 77.5,-65.5 + parent: 2 + - uid: 21581 + components: + - type: Transform + pos: 76.5,-65.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: 70.5,-69.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: 69.5,-69.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: 65.5,-73.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: 64.5,-73.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: 63.5,-73.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: 62.5,-73.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: 62.5,-72.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: 60.5,-72.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: 63.5,-63.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + pos: 62.5,-63.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: 61.5,-63.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: 58.5,-63.5 + parent: 2 + - uid: 21597 + components: + - type: Transform + pos: 57.5,-63.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 21605 + components: + - type: Transform + pos: 50.5,-66.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 43.5,-74.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + pos: 42.5,-74.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 21619 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 21620 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: 74.5,-61.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + pos: 73.5,-61.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: 73.5,-63.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: 74.5,-63.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 21630 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 21643 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + pos: 42.5,-57.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 21672 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 21675 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 21676 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 21677 + components: + - type: Transform + pos: 86.5,-2.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: -33.5,-73.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: -33.5,-74.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + pos: 86.5,-14.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + pos: 29.5,-103.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + pos: 29.5,-102.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: 29.5,-101.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: 29.5,-99.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: 29.5,-97.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: 29.5,-95.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: 27.5,-96.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + pos: 27.5,-97.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: 27.5,-98.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + pos: 27.5,-99.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: 27.5,-100.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: 27.5,-101.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + pos: 27.5,-102.5 + parent: 2 + - uid: 21733 + components: + - type: Transform + pos: 27.5,-103.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + pos: 30.5,-107.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + pos: 29.5,-107.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: 27.5,-107.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + pos: 26.5,-107.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + pos: 30.5,-81.5 + parent: 2 + - uid: 21739 + components: + - type: Transform + pos: 30.5,-80.5 + parent: 2 + - uid: 21740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-78.5 + parent: 2 + - uid: 21741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-78.5 + parent: 2 + - uid: 21742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-78.5 + parent: 2 + - uid: 21743 + components: + - type: Transform + pos: 26.5,-78.5 + parent: 2 + - uid: 21744 + components: + - type: Transform + pos: 26.5,-79.5 + parent: 2 + - uid: 21745 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 21746 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 21747 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 21748 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 2 + - uid: 21749 + components: + - type: Transform + pos: 50.5,-68.5 + parent: 2 + - uid: 21750 + components: + - type: Transform + pos: 50.5,-67.5 + parent: 2 + - uid: 21751 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 21754 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 21755 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + pos: 26.5,-80.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 21758 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 21759 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 21760 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 21761 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 21762 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 21763 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 21764 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 21765 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 21766 + components: + - type: Transform + pos: 76.5,-48.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 21768 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 21769 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 21775 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 21778 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 21795 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 21796 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 21798 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 21799 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 21800 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 21801 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 21804 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 21805 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 21808 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 21809 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 21810 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 21813 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 21814 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 21815 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 21816 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 21818 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 21819 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 21820 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 21821 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 21822 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - uid: 21823 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 21824 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 21825 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 21826 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 21827 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 21828 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 21830 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 21833 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 21835 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 21836 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 21837 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 21839 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 21840 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 21841 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 21844 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 21848 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 21849 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 21851 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 21853 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 21854 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 21855 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 21856 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 21868 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 21872 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 21873 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 21874 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 21879 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 21907 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 21908 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 21926 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 21928 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 21929 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 21934 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 21935 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 21937 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 21948 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 21958 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 21962 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 21964 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 21965 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 21969 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 21970 + components: + - type: Transform + pos: 86.5,-6.5 + parent: 2 + - uid: 21971 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + pos: 87.5,-14.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 21974 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 21975 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 21976 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 21977 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 21978 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 21979 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 21981 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 21985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-2.5 + parent: 2 + - uid: 21986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: 51.5,-60.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: 53.5,-56.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: 52.5,-56.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: 56.5,-56.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 21992 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 21993 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 21994 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 21995 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 21997 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 21998 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 22000 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 22001 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 22002 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 22003 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 22004 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 22005 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 22006 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 22007 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 22008 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 22009 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - uid: 22024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 22025 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 22029 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 22031 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 22032 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 22033 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - uid: 22034 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - uid: 22035 + components: + - type: Transform + pos: 58.5,-60.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + pos: 57.5,-60.5 + parent: 2 + - uid: 22037 + components: + - type: Transform + pos: 56.5,-60.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + pos: 63.5,-60.5 + parent: 2 + - uid: 22039 + components: + - type: Transform + pos: 62.5,-60.5 + parent: 2 + - uid: 22040 + components: + - type: Transform + pos: 61.5,-60.5 + parent: 2 + - uid: 22041 + components: + - type: Transform + pos: 75.5,5.5 + parent: 2 + - uid: 22042 + components: + - type: Transform + pos: 57.5,-56.5 + parent: 2 + - uid: 22043 + components: + - type: Transform + pos: 63.5,-56.5 + parent: 2 + - uid: 22044 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 22045 + components: + - type: Transform + pos: 58.5,-56.5 + parent: 2 + - uid: 22046 + components: + - type: Transform + pos: 61.5,-56.5 + parent: 2 + - uid: 22047 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 22048 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 22049 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 22051 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: 51.5,-56.5 + parent: 2 + - uid: 22053 + components: + - type: Transform + pos: 62.5,-56.5 + parent: 2 + - uid: 22054 + components: + - type: Transform + pos: 64.5,-39.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-42.5 + parent: 2 + - uid: 22056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-42.5 + parent: 2 + - uid: 22057 + components: + - type: Transform + pos: 64.5,-41.5 + parent: 2 + - uid: 22058 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 22059 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 22060 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 22062 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 22065 + components: + - type: Transform + pos: 87.5,-6.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 22067 + components: + - type: Transform + pos: 45.5,-59.5 + parent: 2 + - uid: 22068 + components: + - type: Transform + pos: 45.5,-58.5 + parent: 2 + - uid: 22069 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 2 + - uid: 22070 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 22071 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 22072 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 22073 + components: + - type: Transform + pos: 67.5,0.5 + parent: 2 + - uid: 22074 + components: + - type: Transform + pos: 86.5,-10.5 + parent: 2 + - uid: 22075 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 22076 + components: + - type: Transform + pos: -14.5,-77.5 + parent: 2 + - uid: 22077 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 22079 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 22080 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 2 + - uid: 22081 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 2 + - uid: 22082 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 22084 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 22085 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - uid: 22088 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 22089 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 22090 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 22091 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 22092 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 22093 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 22094 + components: + - type: Transform + pos: 7.5,-58.5 + parent: 2 + - uid: 22095 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 22097 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 22098 + components: + - type: Transform + pos: 33.5,-78.5 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: 32.5,-78.5 + parent: 2 + - uid: 22100 + components: + - type: Transform + pos: 31.5,-78.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: 31.5,-80.5 + parent: 2 + - uid: 22102 + components: + - type: Transform + pos: 32.5,-80.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: 33.5,-80.5 + parent: 2 + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,43.5 + parent: 2 + - uid: 22105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 2 + - uid: 22106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,45.5 + parent: 2 + - uid: 22107 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-76.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-76.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-76.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-71.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-70.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-70.5 + parent: 2 + - uid: 22115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-68.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 22116 + components: + - type: Transform + pos: 0.5348537,-4.4576077 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: -5.380559,9.56794 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: -5.505559,9.708565 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 22119 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 +- proto: ResearchComputerCircuitboard + entities: + - uid: 22120 + components: + - type: Transform + pos: 72.5,-33.5 + parent: 2 +- proto: ReverseEngineeringMachine + entities: + - uid: 22121 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 2 +- proto: RiotShield + entities: + - uid: 22122 + components: + - type: Transform + pos: 0.2666831,39.43831 + parent: 2 + - uid: 22123 + components: + - type: Transform + pos: 0.2510581,39.68831 + parent: 2 +- proto: RobocopCircuitBoard + entities: + - uid: 22124 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 22125 + components: + - type: Transform + pos: -19.744875,7.720537 + parent: 2 + - uid: 22126 + components: + - type: Transform + rot: 2.9154674848541617E-05 rad + pos: -22.735086,7.7025566 + parent: 2 +- proto: RockGuitarInstrument + entities: + - uid: 22127 + components: + - type: Transform + pos: 22.573097,2.4609609 + parent: 2 +- proto: RollerBed + entities: + - uid: 22128 + components: + - type: Transform + pos: 63.382973,11.66713 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 22129 + components: + - type: Transform + pos: -32.431705,-27.266624 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: RubberStampDenied + entities: + - uid: 22130 + components: + - type: Transform + pos: -32.431705,-27.543318 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SalvageCanisterSpawner + entities: + - uid: 22131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-62.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 22132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 22133 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - uid: 22135 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 +- proto: Screen + entities: + - uid: 22136 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 22138 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 22139 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 22140 + components: + - type: Transform + pos: 73.5,-11.5 + parent: 2 + - uid: 22141 + components: + - type: Transform + pos: 75.5,-15.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 22146 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 22148 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 22150 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 22151 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 22152 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 22153 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 22154 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 22155 + components: + - type: Transform + pos: 59.397083,-51.321266 + parent: 2 + - uid: 22156 + components: + - type: Transform + pos: -46.457306,2.9827793 + parent: 2 + - uid: 22157 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 22158 + components: + - type: Transform + rot: 0.00013372956891544163 rad + pos: -8.435265,-33.26435 + parent: 2 + - uid: 22159 + components: + - type: Transform + pos: 79.5,-47.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + pos: 29.559649,-83.400314 + parent: 2 +- proto: SecBreachingHammer + entities: + - uid: 22161 + components: + - type: Transform + pos: -2.4509373,35.55912 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 22162 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 22163 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 22164 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 22165 + components: + - type: Transform + pos: 60.52009,-47.51496 + parent: 2 + - uid: 22166 + components: + - type: Transform + pos: -41.498413,-16.841608 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 22167 + components: + - type: Transform + pos: -52.937687,15.598715 + parent: 2 + - uid: 22168 + components: + - type: Transform + pos: -57.359562,12.192465 + parent: 2 + - uid: 22169 + components: + - type: Transform + pos: -57.531437,12.004965 + parent: 2 + - uid: 22170 + components: + - type: Transform + pos: -55.265812,16.848715 + parent: 2 + - uid: 22171 + components: + - type: Transform + pos: -53.265812,15.348715 + parent: 2 + - uid: 22172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,14.5 + parent: 2 + - uid: 22173 + components: + - type: Transform + pos: -57.531437,14.45809 + parent: 2 +- proto: SheetGlass + entities: + - uid: 1210 + components: + - type: Transform + parent: 1207 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11601 + components: + - type: Transform + parent: 11600 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11602 + components: + - type: Transform + parent: 11600 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11608 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11609 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11610 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11611 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 22174 + components: + - type: Transform + pos: -51.52255,-5.0715327 + parent: 2 + - uid: 22175 + components: + - type: Transform + pos: -51.52255,-5.0715327 + parent: 2 + - uid: 22176 + components: + - type: Transform + pos: 47.405727,11.349856 + parent: 2 + - uid: 22177 + components: + - type: Transform + pos: 53.452602,15.396731 + parent: 2 + - uid: 22178 + components: + - type: Transform + pos: -6.4615808,3.554113 + parent: 2 + - uid: 22179 + components: + - type: Transform + pos: -51.52255,-5.0715327 + parent: 2 + - uid: 22180 + components: + - type: Transform + pos: -65.69919,13.123488 + parent: 2 + - uid: 22181 + components: + - type: Transform + pos: -45.29138,21.721916 + parent: 2 + - uid: 22182 + components: + - type: Transform + pos: -23.474255,-5.524679 + parent: 2 + - uid: 22183 + components: + - type: Transform + pos: -28.687122,-52.44169 + parent: 2 + - uid: 22184 + components: + - type: Transform + pos: 9.439449,-60.01837 + parent: 2 + - uid: 22185 + components: + - type: Transform + pos: 9.439449,-60.01837 + parent: 2 + - uid: 22186 + components: + - type: Transform + rot: -0.0007233519572764635 rad + pos: 47.73502,-67.92985 + parent: 2 + - uid: 22187 + components: + - type: Transform + pos: 74.58924,-20.229673 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22188 + components: + - type: Transform + pos: 78.42439,-63.099358 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: 9.439449,-60.01837 + parent: 2 + - uid: 22190 + components: + - type: Transform + pos: 60.593304,-19.41946 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22191 + components: + - type: Transform + pos: 60.64018,-23.528835 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22192 + components: + - type: Transform + pos: 74.53299,-20.567173 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22193 + components: + - type: Transform + pos: 74.38299,-20.417173 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22194 + components: + - type: Transform + pos: 38.409573,-26.656715 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22195 + components: + - type: Transform + pos: -2.322044,39.202774 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SheetPlasma + entities: + - uid: 22196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5389829,-89.38325 + parent: 2 + - uid: 22197 + components: + - type: Transform + pos: 43.53589,-62.501984 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: 77.44578,-54.439636 + parent: 2 + - uid: 22199 + components: + - type: Transform + pos: -24.410706,-71.44174 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 22200 + components: + - type: Transform + pos: 57.348213,-49.249336 + parent: 2 + - uid: 22201 + components: + - type: Transform + pos: 57.348213,-49.249336 + parent: 2 + - uid: 22202 + components: + - type: Transform + pos: 57.348213,-49.249336 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 22203 + components: + - type: Transform + pos: 9.673824,-59.64337 + parent: 2 + - uid: 22204 + components: + - type: Transform + pos: -5.9772058,3.554113 + parent: 2 + - uid: 22205 + components: + - type: Transform + pos: -51.506924,-5.4777827 + parent: 2 + - uid: 22206 + components: + - type: Transform + pos: -51.506924,-5.4777827 + parent: 2 + - uid: 22207 + components: + - type: Transform + pos: -51.506924,-5.4777827 + parent: 2 + - uid: 22208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.418626,-55.98893 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.638622,-87.50826 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SheetPlastic + entities: + - uid: 11603 + components: + - type: Transform + parent: 11600 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11604 + components: + - type: Transform + parent: 11600 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11612 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 22210 + components: + - type: Transform + pos: 60.599773,-19.48226 + parent: 2 + - uid: 22211 + components: + - type: Transform + pos: 74.57049,-20.101408 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22212 + components: + - type: Transform + pos: -2.665794,39.202774 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22213 + components: + - type: Transform + pos: 60.625816,-23.492676 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: 74.34549,-20.288908 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22215 + components: + - type: Transform + pos: 74.57049,-20.21391 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22216 + components: + - type: Transform + pos: 38.51374,-26.435362 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22217 + components: + - type: Transform + pos: 9.638229,-59.720238 + parent: 2 +- proto: SheetRGlass + entities: + - uid: 22218 + components: + - type: Transform + pos: -65.35544,13.342238 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: -28.390247,-52.707314 + parent: 2 + - uid: 22220 + components: + - type: Transform + pos: 47.289577,-67.7736 + parent: 2 + - uid: 22221 + components: + - type: Transform + pos: 78.42439,-63.599358 + parent: 2 + - uid: 22222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.509371,-84.59551 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SheetRPGlass + entities: + - uid: 22223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.485933,-83.5635 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SheetRUGlass + entities: + - uid: 22224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.532809,-81.49946 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SheetSteel + entities: + - uid: 1211 + components: + - type: Transform + parent: 1207 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11605 + components: + - type: Transform + parent: 11600 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11606 + components: + - type: Transform + parent: 11600 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11613 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11614 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11615 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11616 + components: + - type: Transform + parent: 11607 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 22225 + components: + - type: Transform + pos: 12.474865,-78.47559 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22226 + components: + - type: Transform + pos: 12.491154,-77.61297 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22227 + components: + - type: Transform + pos: -5.4615808,3.554113 + parent: 2 + - uid: 22228 + components: + - type: Transform + pos: -51.5538,-4.6965327 + parent: 2 + - uid: 22229 + components: + - type: Transform + pos: 9.423824,-59.471497 + parent: 2 + - uid: 22230 + components: + - type: Transform + pos: -2.4700446,39.637985 + parent: 2 + - uid: 22231 + components: + - type: Transform + pos: 47.796352,11.724856 + parent: 2 + - uid: 22232 + components: + - type: Transform + rot: 0.001271634129807353 rad + pos: 53.735325,15.802864 + parent: 2 + - uid: 22233 + components: + - type: Transform + pos: -65.63669,13.873488 + parent: 2 + - uid: 22234 + components: + - type: Transform + pos: -65.43356,13.982863 + parent: 2 + - uid: 22235 + components: + - type: Transform + pos: -51.5538,-4.6965327 + parent: 2 + - uid: 22236 + components: + - type: Transform + pos: -45.69763,21.378166 + parent: 2 + - uid: 22237 + components: + - type: Transform + pos: -23.005505,-5.509054 + parent: 2 + - uid: 22238 + components: + - type: Transform + pos: -28.671497,-53.41044 + parent: 2 + - uid: 22239 + components: + - type: Transform + pos: 7.510936,-46.443596 + parent: 2 + - uid: 22240 + components: + - type: Transform + pos: 7.510936,-46.443596 + parent: 2 + - uid: 22241 + components: + - type: Transform + pos: 47.711452,-67.03922 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: 74.34549,-20.135923 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22243 + components: + - type: Transform + pos: 78.65877,-63.208733 + parent: 2 + - uid: 22244 + components: + - type: Transform + pos: -51.5538,-4.6965327 + parent: 2 + - uid: 22245 + components: + - type: Transform + pos: 7.510936,-46.443596 + parent: 2 + - uid: 22246 + components: + - type: Transform + pos: 7.510936,-46.443596 + parent: 2 + - uid: 22247 + components: + - type: Transform + pos: 9.423824,-59.471497 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: 9.423824,-59.471497 + parent: 2 + - uid: 22249 + components: + - type: Transform + pos: 60.593304,-19.41946 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22250 + components: + - type: Transform + pos: 60.562054,-23.435085 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22251 + components: + - type: Transform + pos: 74.53299,-20.117174 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22252 + components: + - type: Transform + pos: 74.364235,-20.323423 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22253 + components: + - type: Transform + pos: 38.448635,-26.526508 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22254 + components: + - type: Transform + pos: -28.647863,-54.501938 + parent: 2 + - uid: 22255 + components: + - type: Transform + pos: -17.853651,-82.134964 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 22256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.507512,-86.47525 + parent: 2 + - uid: 22257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.507512,-86.47525 + parent: 2 + - uid: 22258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.685497,-86.64043 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: SheetUranium + entities: + - uid: 22259 + components: + - type: Transform + pos: -23.566956,-71.37924 + parent: 2 +- proto: ShellShotgun + entities: + - uid: 11148 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 11149 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 19315 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19316 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ShellShotgunBeanbag + entities: + - uid: 11150 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 11151 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 11152 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 11153 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 19317 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19318 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ShellShotgunPractice + entities: + - uid: 22260 + components: + - type: Transform + pos: 25.354076,35.417572 + parent: 2 + - uid: 22261 + components: + - type: Transform + pos: 25.463451,35.401947 + parent: 2 + - uid: 22262 + components: + - type: Transform + pos: 25.713451,35.401947 + parent: 2 + - uid: 22263 + components: + - type: Transform + pos: 25.572826,35.401947 + parent: 2 +- proto: ShellShotgunSlug + entities: + - uid: 19319 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19320 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Shovel + entities: + - uid: 22264 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 22265 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 +- proto: ShowcaseRobotMarauder + entities: + - uid: 22266 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 22267 + components: + - type: Transform + pos: 31.5,-84.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22414 + - uid: 22269 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24273 + - uid: 22270 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24273 + - uid: 22271 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24273 +- proto: ShuttersNormalOpen + entities: + - uid: 22272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-63.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22277 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22280 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22393 + - uid: 22282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22393 + - uid: 22283 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22408 + - uid: 22284 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22408 + - uid: 22285 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22408 + - uid: 22286 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22413 + - uid: 22287 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22288 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22289 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22290 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22291 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22398 + - uid: 22292 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22398 + - uid: 22293 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22398 + - uid: 22294 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22398 + - uid: 22295 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22395 + - uid: 22296 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 22297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22299 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 22300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22301 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 22302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22403 + - uid: 22304 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22306 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22307 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 22309 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 22310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22393 + - uid: 22311 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22389 + - uid: 22312 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22313 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22314 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22315 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22316 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22317 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22318 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22319 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22320 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22409 + - uid: 22321 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22413 + - uid: 22322 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22413 + - uid: 22323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-107.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19303 + - uid: 22324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-107.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19303 + - uid: 22325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-107.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19303 + - uid: 22326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-107.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19303 + - uid: 22327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-107.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19303 +- proto: ShuttersRadiation + entities: + - uid: 22328 + components: + - type: Transform + pos: -4.5,-85.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19305 + - uid: 22329 + components: + - type: Transform + pos: -4.5,-86.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19305 + - uid: 22330 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19306 + - uid: 22331 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19306 + - uid: 22332 + components: + - type: Transform + pos: -4.5,-87.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19305 + - uid: 22333 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19306 + - uid: 22334 + components: + - type: Transform + pos: 0.5,-90.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19304 + - uid: 22335 + components: + - type: Transform + pos: -0.5,-90.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19304 + - uid: 22336 + components: + - type: Transform + pos: -1.5,-90.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19304 +- proto: ShuttersRadiationOpen + entities: + - uid: 22337 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19308 + - 19307 + - uid: 22338 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19308 + - 19307 + - uid: 22339 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22340 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22341 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22342 + components: + - type: Transform + pos: -3.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22343 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22344 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22345 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 + - uid: 22346 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19307 + - 19308 +- proto: ShuttersWindow + entities: + - uid: 22347 + components: + - type: MetaData + name: Warehouse Shutters + - type: Transform + pos: -31.5,-17.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 22348 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22349 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22350 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22351 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22352 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22353 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22354 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22400 + - uid: 22355 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22356 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22357 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22358 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22359 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22360 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22361 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22362 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22363 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22406 + - uid: 22364 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22399 + - uid: 22365 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22399 + - uid: 22366 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22399 + - uid: 22367 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22399 + - uid: 22368 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 22371 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22372 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22373 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22374 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22375 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22376 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22377 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22378 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 22379 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22397 + - uid: 22380 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 22381 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - uid: 22382 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22390 + - uid: 22383 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22390 + - uid: 22384 + components: + - type: Transform + pos: 68.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 22390 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 22385 + components: + - type: Transform + pos: -67.6619,12.290884 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 22386 + components: + - type: Transform + pos: 67.5,-75.5 + parent: 2 +- proto: SignAi + entities: + - uid: 22387 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 22388 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 22389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.19841719,-64.49025 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22276: + - Pressed: Toggle + 22275: + - Pressed: Toggle + 22274: + - Pressed: Toggle + 22305: + - Pressed: Toggle + 22311: + - Pressed: Toggle + 22306: + - Pressed: Toggle + 22280: + - Pressed: Toggle + 22279: + - Pressed: Toggle + - uid: 22390 + components: + - type: Transform + pos: 70.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22384: + - Pressed: Toggle + 22383: + - Pressed: Toggle + 22382: + - Pressed: Toggle + - uid: 22391 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1110: + - Pressed: Toggle + - uid: 22392 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1104: + - Pressed: Toggle + - uid: 22393 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22281: + - Pressed: Toggle + 22282: + - Pressed: Toggle + 22310: + - Pressed: Toggle + - uid: 22394 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1113: + - Pressed: Toggle + 1114: + - Pressed: Toggle + 1115: + - Pressed: Toggle + - uid: 22395 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22295: + - Pressed: Toggle + - uid: 22396 + components: + - type: Transform + pos: 81.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1108: + - Pressed: Toggle + - uid: 22397 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22371: + - Pressed: Toggle + 22372: + - Pressed: Toggle + 22373: + - Pressed: Toggle + 22374: + - Pressed: Toggle + 22375: + - Pressed: Toggle + 22376: + - Pressed: Toggle + 22377: + - Pressed: Toggle + 22379: + - Pressed: Toggle + - uid: 22398 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22294: + - Pressed: Toggle + 22291: + - Pressed: Toggle + 22292: + - Pressed: Toggle + 22293: + - Pressed: Toggle + - uid: 22399 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22364: + - Pressed: Toggle + 22365: + - Pressed: Toggle + 22366: + - Pressed: Toggle + 22367: + - Pressed: Toggle + - uid: 22400 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22354: + - Pressed: Toggle + 22353: + - Pressed: Toggle + 22352: + - Pressed: Toggle + 22351: + - Pressed: Toggle + 22350: + - Pressed: Toggle + 22349: + - Pressed: Toggle + 22348: + - Pressed: Toggle + - uid: 22401 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1134: + - Pressed: Toggle + 1132: + - Pressed: Toggle + 1133: + - Pressed: Toggle + - uid: 22402 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1135: + - Pressed: Toggle + 1136: + - Pressed: Toggle + 1137: + - Pressed: Toggle + - uid: 22403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22300: + - Pressed: Toggle + 22273: + - Pressed: Toggle + 22303: + - Pressed: Toggle + 22298: + - Pressed: Toggle + 22272: + - Pressed: Toggle + 22297: + - Pressed: Toggle + 22302: + - Pressed: Toggle + - uid: 22404 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1112: + - Pressed: Toggle + 1111: + - Pressed: Toggle + - uid: 22405 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1120: + - Pressed: Toggle + 1119: + - Pressed: Toggle + 1118: + - Pressed: Toggle + - uid: 22406 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22363: + - Pressed: Toggle + 22362: + - Pressed: Toggle + 22361: + - Pressed: Toggle + 22360: + - Pressed: Toggle + 22359: + - Pressed: Toggle + 22358: + - Pressed: Toggle + 22357: + - Pressed: Toggle + 22356: + - Pressed: Toggle + 22355: + - Pressed: Toggle + 22290: + - Pressed: Toggle + 22289: + - Pressed: Toggle + 22287: + - Pressed: Toggle + 22288: + - Pressed: Toggle + - uid: 22407 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1139: + - Pressed: Toggle + 1140: + - Pressed: Toggle + - uid: 22408 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22285: + - Pressed: Toggle + 22284: + - Pressed: Toggle + 22283: + - Pressed: Toggle + - uid: 22409 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22312: + - Pressed: Toggle + 22313: + - Pressed: Toggle + 22314: + - Pressed: Toggle + 22315: + - Pressed: Toggle + 22316: + - Pressed: Toggle + 22317: + - Pressed: Toggle + 22318: + - Pressed: Toggle + 22320: + - Pressed: Toggle + 22319: + - Pressed: Toggle + - uid: 22410 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 504: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 22411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1130: + - Pressed: Toggle + 1131: + - Pressed: Toggle + - uid: 22412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1128: + - Pressed: Toggle + 1129: + - Pressed: Toggle + 1138: + - Pressed: Toggle + - uid: 22413 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22286: + - Pressed: Toggle + 22321: + - Pressed: Toggle + 22322: + - Pressed: Toggle + - uid: 22414 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22268: + - Pressed: Toggle + - uid: 22415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 135: + - Pressed: DoorBolt + - uid: 22416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 134: + - Pressed: DoorBolt + - uid: 22417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 133: + - Pressed: DoorBolt + - uid: 22418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 132: + - Pressed: DoorBolt + - uid: 22419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 131: + - Pressed: DoorBolt + - uid: 22420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 130: + - Pressed: DoorBolt +- proto: SignalSwitch + entities: + - uid: 22421 + components: + - type: MetaData + name: brig shutters switch + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 22422 + components: + - type: MetaData + name: lights switch + - type: Transform + pos: 10.8,3.5 + parent: 2 +- proto: SignAnomaly + entities: + - uid: 22423 + components: + - type: Transform + pos: 75.5,-22.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 22424 + components: + - type: Transform + pos: 68.5,-48.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 22425 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 22426 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 +- proto: SignBar + entities: + - uid: 22427 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 22428 + components: + - type: Transform + pos: 41.5,-50.5 + parent: 2 + - uid: 22429 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 22430 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 22431 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 +- proto: SignCanisters + entities: + - uid: 22432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-40.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 22433 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 22434 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 22435 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 +- proto: SignChem + entities: + - uid: 22436 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 22437 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 22438 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 22439 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 +- proto: SignConference + entities: + - uid: 22440 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 22441 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 22442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,2.5 + parent: 2 + - uid: 22443 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 22444 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 22445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.499004,2.2885544 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 22446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - uid: 22447 + components: + - type: Transform + pos: -19.49536,-3.7142625 + parent: 2 + - uid: 22448 + components: + - type: Transform + pos: -2.495048,-32.707497 + parent: 2 + - uid: 22449 + components: + - type: Transform + pos: 17.493805,-15.696056 + parent: 2 + - uid: 22450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.50528,-6.7218995 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 22451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 2 + - uid: 22452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 2 + - uid: 22453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.504663,2.2990081 + parent: 2 + - uid: 22454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 22455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.48893,-28.299696 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 22456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - uid: 22457 + components: + - type: Transform + pos: -18.489511,-4.1296644 + parent: 2 + - uid: 22458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - uid: 22459 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 22460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.499992,-3.7091393 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 22461 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 22462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.499992,-3.2872643 + parent: 2 + - uid: 22463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.495048,-32.301247 + parent: 2 + - uid: 22464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.493805,-15.305431 + parent: 2 + - uid: 22465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 22466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 22467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 22468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 2 + - uid: 22469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.49536,-3.2767625 + parent: 2 + - uid: 22470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.499279,-11.288156 + parent: 2 + - uid: 22471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.504663,2.7208831 + parent: 2 + - uid: 22472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.499004,2.7260544 + parent: 2 + - uid: 22473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.505136,0.7252439 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 22474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-59.5 + parent: 2 + - uid: 22475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-65.5 + parent: 2 + - uid: 22476 + components: + - type: Transform + pos: 83.5,-49.5 + parent: 2 + - uid: 22477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - uid: 22478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,4.5 + parent: 2 + - uid: 22479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,12.5 + parent: 2 + - uid: 22480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,12.5 + parent: 2 + - uid: 22481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,6.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 22482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.494359,-28.72186 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: -18.494526,-3.909933 + parent: 2 + - uid: 22485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.50528,-6.2843995 + parent: 2 + - uid: 22486 + components: + - type: Transform + pos: -17.505136,0.28774393 + parent: 2 +- proto: SignDirectionalWash + entities: + - uid: 22487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.490667,-11.707433 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 22488 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 22489 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 22490 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 22491 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 22496 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 22497 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 22498 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 22499 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 22500 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 22501 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 22503 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 22504 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 22505 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 22506 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 22507 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 22508 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 22509 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - uid: 22510 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 +- proto: SignFire + entities: + - uid: 22511 + components: + - type: Transform + pos: 74.5,-42.5 + parent: 2 + - uid: 22512 + components: + - type: Transform + pos: 68.5,-38.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 22513 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 +- proto: SignHead + entities: + - uid: 22514 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 22515 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 22516 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 22517 + components: + - type: MetaData + desc: A sign showing Bungle Town's permit to operate on this station. + name: Bungle Town + - type: Transform + pos: 56.5,-51.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 22519 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 22520 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 22521 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 22522 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 +- proto: SignMagneticsMed + entities: + - uid: 22523 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 +- proto: SignMail + entities: + - uid: 22524 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 22525 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 22527 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 22528 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 22529 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 +- proto: SignNews + entities: + - uid: 22530 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 22531 + components: + - type: Transform + pos: 64.5,-36.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 22532 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 22533 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 22534 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 22535 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 22536 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 22537 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 +- proto: SignRadiation + entities: + - uid: 22538 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 22540 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 22542 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 22543 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 22545 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 22546 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 +- proto: SignRedFive + entities: + - uid: 22547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 +- proto: SignRedFour + entities: + - uid: 22548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 22549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 +- proto: SignRedSix + entities: + - uid: 22550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 +- proto: SignRedThree + entities: + - uid: 22551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 22552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 +- proto: SignRND + entities: + - uid: 22553 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 22554 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 22555 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 22556 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 +- proto: SignScience + entities: + - uid: 22557 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 22558 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 22559 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 22560 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 22562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-39.5 + parent: 2 + - uid: 22563 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 22564 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 22565 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 22566 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-39.5 + parent: 2 + - uid: 22568 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 22570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-40.5 + parent: 2 + - uid: 22571 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 22572 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 22573 + components: + - type: Transform + pos: 30.5,-82.5 + parent: 2 + - uid: 22574 + components: + - type: Transform + pos: 26.5,-82.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + pos: 26.5,-93.5 + parent: 2 + - uid: 22576 + components: + - type: Transform + pos: 30.5,-93.5 + parent: 2 +- proto: SignSecureSmall + entities: + - uid: 22577 + components: + - type: Transform + pos: -80.5,12.5 + parent: 2 + - uid: 22578 + components: + - type: Transform + pos: -74.5,12.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 22579 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 22580 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 22581 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 22582 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 2 + - uid: 22583 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 22584 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 22585 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 22586 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 22587 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 22588 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 22589 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 22590 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 22591 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 22592 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 22593 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + pos: 91.5,-24.5 + parent: 2 + - uid: 22595 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + pos: 83.5,-12.5 + parent: 2 + - uid: 22597 + components: + - type: Transform + pos: 87.5,-56.5 + parent: 2 + - uid: 22598 + components: + - type: Transform + pos: 80.5,-66.5 + parent: 2 + - uid: 22599 + components: + - type: Transform + pos: 48.5,-66.5 + parent: 2 + - uid: 22600 + components: + - type: Transform + pos: 62.5,-69.5 + parent: 2 + - uid: 22601 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 22602 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: -74.5,-15.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: -76.5,-12.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 22610 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 22611 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 22612 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 22613 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 22614 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 +- proto: SignToxins + entities: + - uid: 22615 + components: + - type: Transform + pos: 69.5,-43.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 22616 + components: + - type: Transform + pos: 39.5,-50.5 + parent: 2 +- proto: Sink + entities: + - uid: 22617 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - uid: 22621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - uid: 22622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 22623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - uid: 22624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - uid: 22625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 + - uid: 22628 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-56.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 2 + - uid: 22632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,41.5 + parent: 2 + - uid: 22634 + components: + - type: Transform + pos: -19.5,51.5 + parent: 2 + - uid: 22635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,51.5 + parent: 2 + - uid: 22636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-66.5 + parent: 2 +- proto: SinkEmpty + entities: + - uid: 22637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 2 + - uid: 22638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - uid: 22640 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 22641 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 22642 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 22643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 22644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - uid: 22647 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-46.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 2 + - uid: 22651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 22652 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + pos: 38.5,-57.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 22655 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 22656 + components: + - type: Transform + pos: 28.5,-113.5 + parent: 2 + - uid: 22657 + components: + - type: MetaData + name: Solars South East SMES + - type: Transform + pos: 80.5,-65.5 + parent: 2 + - uid: 22658 + components: + - type: MetaData + name: Solars North East SMES + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 22659 + components: + - type: MetaData + name: Solars North West SMES + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 22660 + components: + - type: MetaData + name: Telecomms SMES + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 22661 + components: + - type: MetaData + name: Solars South West SMES + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 22662 + components: + - type: MetaData + name: SMES Bank 3 + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 22663 + components: + - type: MetaData + name: SMES Bank 2 + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 22664 + components: + - type: MetaData + name: SMES Bank 1 + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: 34.5,-91.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: -4.5,-89.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: -9.5,-64.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 2 + - uid: 22670 + components: + - type: MetaData + name: SMES Bank 4 + - type: Transform + pos: -24.5,-65.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 22671 + components: + - type: Transform + pos: -67.4744,12.728384 + parent: 2 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 22672 + components: + - type: Transform + pos: 8.552821,-16.117027 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: 23.548721,-3.4380002 + parent: 2 +- proto: SoapNT + entities: + - uid: 22674 + components: + - type: Transform + pos: 10.464365,-22.554323 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 22675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - uid: 22676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - uid: 22677 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 22678 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22680 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 22684 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + pos: -47.5,34.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22692 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 22696 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22697 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22698 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22700 + components: + - type: Transform + pos: -45.5,32.5 + parent: 2 + - uid: 22701 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22702 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 22703 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 22704 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22705 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 22706 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 22707 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 22708 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 22709 + components: + - type: Transform + pos: -53.5,28.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 22711 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22712 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 22713 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22714 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 22715 + components: + - type: Transform + pos: -47.5,30.5 + parent: 2 + - uid: 22716 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 22719 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - type: PowerSupplier + supplyRate: 262 + - uid: 22720 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 22722 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22723 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 22724 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 22726 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 22727 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 22728 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 22729 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 22730 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 22731 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 22732 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 22733 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 22734 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 22735 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 22736 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 22737 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 22738 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 22739 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 22740 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 22741 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 22742 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 22744 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 22745 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 22746 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 22747 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 22748 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 22749 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 22750 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 22751 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 22752 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 22753 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 22754 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 22755 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 22756 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 22757 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 22758 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 22759 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 22760 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 22761 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 22762 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 22764 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 22765 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 22766 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 22767 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 22768 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 22769 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 22770 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22771 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 22773 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22774 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 22775 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 22776 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22777 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 22778 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 22779 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 22780 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22781 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 22782 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 22783 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 2 + - uid: 22784 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 2 + - uid: 22785 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 22786 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 22787 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 22788 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 22789 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 22790 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 22791 + components: + - type: Transform + pos: -48.5,-58.5 + parent: 2 + - uid: 22792 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 22793 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 22794 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 2 + - uid: 22795 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 2 + - uid: 22796 + components: + - type: Transform + pos: -48.5,-67.5 + parent: 2 + - uid: 22797 + components: + - type: Transform + pos: -50.5,-65.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + pos: -46.5,-66.5 + parent: 2 + - uid: 22799 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 22800 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 22801 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 22802 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 22803 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 22804 + components: + - type: Transform + pos: -50.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22805 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 2 + - uid: 22806 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 2 + - uid: 22807 + components: + - type: Transform + pos: -48.5,-66.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22808 + components: + - type: Transform + pos: -48.5,-65.5 + parent: 2 + - uid: 22809 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 22810 + components: + - type: Transform + pos: -48.5,-63.5 + parent: 2 + - uid: 22811 + components: + - type: Transform + pos: -44.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22812 + components: + - type: Transform + pos: -44.5,-66.5 + parent: 2 + - uid: 22813 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 22814 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 22815 + components: + - type: Transform + pos: -46.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22816 + components: + - type: Transform + pos: -46.5,-65.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 22818 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 22819 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 22820 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 22824 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 22825 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 22826 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 2 + - uid: 22827 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 22828 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 22829 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 2 + - uid: 22830 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 22831 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 22832 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1494 + - uid: 22833 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 22834 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 22835 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 22836 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1494 + - uid: 22837 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + pos: -52.5,-65.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1494 + - uid: 22840 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 22841 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 22842 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 22843 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 22844 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 2 + - uid: 22845 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 22846 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 22847 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 22848 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 22849 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 22850 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 22851 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 22852 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 22853 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 22854 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 22855 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 22856 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 22857 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 22858 + components: + - type: Transform + pos: 78.5,-77.5 + parent: 2 + - uid: 22859 + components: + - type: Transform + pos: 77.5,-79.5 + parent: 2 + - uid: 22860 + components: + - type: Transform + pos: 75.5,-73.5 + parent: 2 + - uid: 22861 + components: + - type: Transform + pos: 78.5,-75.5 + parent: 2 + - uid: 22862 + components: + - type: Transform + pos: 79.5,-81.5 + parent: 2 + - uid: 22863 + components: + - type: Transform + pos: 79.5,-83.5 + parent: 2 + - uid: 22864 + components: + - type: Transform + pos: 84.5,-83.5 + parent: 2 + - uid: 22865 + components: + - type: Transform + pos: 77.5,-83.5 + parent: 2 + - uid: 22866 + components: + - type: Transform + pos: 76.5,-81.5 + parent: 2 + - uid: 22867 + components: + - type: Transform + pos: 76.5,-77.5 + parent: 2 + - uid: 22868 + components: + - type: Transform + pos: 75.5,-83.5 + parent: 2 + - uid: 22869 + components: + - type: Transform + pos: 87.5,-77.5 + parent: 2 + - uid: 22870 + components: + - type: Transform + pos: 84.5,-75.5 + parent: 2 + - uid: 22871 + components: + - type: Transform + pos: 83.5,-77.5 + parent: 2 + - uid: 22872 + components: + - type: Transform + pos: 86.5,-79.5 + parent: 2 + - uid: 22873 + components: + - type: Transform + pos: 85.5,-73.5 + parent: 2 + - uid: 22874 + components: + - type: Transform + pos: 87.5,-81.5 + parent: 2 + - uid: 22875 + components: + - type: Transform + pos: 86.5,-83.5 + parent: 2 + - uid: 22876 + components: + - type: Transform + pos: 83.5,-81.5 + parent: 2 + - uid: 22877 + components: + - type: Transform + pos: 84.5,-79.5 + parent: 2 + - uid: 22878 + components: + - type: Transform + pos: 76.5,-73.5 + parent: 2 + - uid: 22879 + components: + - type: Transform + pos: 77.5,-73.5 + parent: 2 + - uid: 22880 + components: + - type: Transform + pos: 78.5,-73.5 + parent: 2 + - uid: 22881 + components: + - type: Transform + pos: 79.5,-73.5 + parent: 2 + - uid: 22882 + components: + - type: Transform + pos: 79.5,-75.5 + parent: 2 + - uid: 22883 + components: + - type: Transform + pos: 77.5,-75.5 + parent: 2 + - uid: 22884 + components: + - type: Transform + pos: 76.5,-75.5 + parent: 2 + - uid: 22885 + components: + - type: Transform + pos: 75.5,-75.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22886 + components: + - type: Transform + pos: 83.5,-73.5 + parent: 2 + - uid: 22887 + components: + - type: Transform + pos: 84.5,-73.5 + parent: 2 + - uid: 22888 + components: + - type: Transform + pos: 86.5,-73.5 + parent: 2 + - uid: 22889 + components: + - type: Transform + pos: 87.5,-73.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + pos: 87.5,-75.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + pos: 86.5,-75.5 + parent: 2 + - uid: 22892 + components: + - type: Transform + pos: 85.5,-75.5 + parent: 2 + - uid: 22893 + components: + - type: Transform + pos: 83.5,-75.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: 75.5,-77.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22895 + components: + - type: Transform + pos: 77.5,-77.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: 79.5,-77.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + pos: 79.5,-79.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: 78.5,-79.5 + parent: 2 + - uid: 22899 + components: + - type: Transform + pos: 76.5,-79.5 + parent: 2 + - uid: 22900 + components: + - type: Transform + pos: 75.5,-79.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22901 + components: + - type: Transform + pos: 75.5,-81.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22902 + components: + - type: Transform + pos: 78.5,-81.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22903 + components: + - type: Transform + pos: 77.5,-81.5 + parent: 2 + - uid: 22904 + components: + - type: Transform + pos: 76.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22905 + components: + - type: Transform + pos: 78.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22906 + components: + - type: Transform + pos: 83.5,-83.5 + parent: 2 + - uid: 22907 + components: + - type: Transform + pos: 85.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22908 + components: + - type: Transform + pos: 87.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22909 + components: + - type: Transform + pos: 86.5,-81.5 + parent: 2 + - uid: 22910 + components: + - type: Transform + pos: 85.5,-81.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22911 + components: + - type: Transform + pos: 84.5,-81.5 + parent: 2 + - uid: 22912 + components: + - type: Transform + pos: 83.5,-79.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22913 + components: + - type: Transform + pos: 85.5,-79.5 + parent: 2 + - uid: 22914 + components: + - type: Transform + pos: 87.5,-79.5 + parent: 2 + - uid: 22915 + components: + - type: Transform + pos: 86.5,-77.5 + parent: 2 + - uid: 22916 + components: + - type: Transform + pos: 85.5,-77.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22917 + components: + - type: Transform + pos: 84.5,-77.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 22918 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - uid: 22919 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 22920 + components: + - type: Transform + pos: 81.5,-86.5 + parent: 2 + - uid: 22921 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 +- proto: SophicScribeSpawner + entities: + - uid: 22922 + components: + - type: Transform + pos: 71.5,-3.5 + parent: 2 +- proto: SpaceVillainArcadeComputerCircuitboard + entities: + - uid: 22923 + components: + - type: Transform + pos: 75.53078,12.7389765 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 22924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 22925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 22926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 22927 + components: + - type: Transform + pos: 72.5,12.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 22928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpareIdCabinetFilled + entities: + - uid: 22929 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 +- proto: SpawnMechRipley + entities: + - uid: 22930 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 22931 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 22932 + components: + - type: Transform + pos: 72.5,-36.5 + parent: 2 +- proto: SpawnMobCat + entities: + - uid: 22933 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 22934 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 22935 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 22936 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 22937 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 22938 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 22939 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 +- proto: SpawnMobGoat + entities: + - uid: 22940 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 22941 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 22942 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 22943 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 22944 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 22945 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 22946 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 22947 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 22948 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 22949 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 22950 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 22951 + components: + - type: Transform + pos: -22.5,-54.5 + parent: 2 + - uid: 22952 + components: + - type: Transform + pos: 80.5,-32.5 + parent: 2 + - uid: 22953 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 22954 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 22955 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 22956 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 22957 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 22958 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 22959 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 22960 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 22961 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 22962 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 22963 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 22964 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 22965 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 22966 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 22967 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 22968 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 22969 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 22970 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 22971 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 22972 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 22973 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 22974 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 22975 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 22976 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 22977 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 22978 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 22979 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 22980 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 22981 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 22982 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 22983 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 22984 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 22985 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 22986 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 22987 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 22988 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 22989 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 22990 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 22991 + components: + - type: Transform + pos: -75.5,10.5 + parent: 2 + - uid: 22992 + components: + - type: Transform + pos: -74.5,10.5 + parent: 2 + - uid: 22993 + components: + - type: Transform + pos: -73.5,10.5 + parent: 2 + - uid: 22994 + components: + - type: Transform + pos: -72.5,10.5 + parent: 2 + - uid: 22995 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 22997 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + pos: -72.5,-5.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 22999 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 23000 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 23001 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 +- proto: SpawnPointMagistrate + entities: + - uid: 23002 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 23003 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 23004 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 +- proto: SpawnPointMedicalBorg + entities: + - uid: 23005 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 23006 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 23007 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 2 + - uid: 23008 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 2 + - uid: 23009 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 2 + - uid: 23010 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 23012 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 23013 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 23015 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 23016 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 + - uid: 23017 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: 45.5,-46.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 23019 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 23020 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 23024 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 23025 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 23026 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - uid: 23027 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 23028 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 23029 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 23030 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 23031 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 23032 + components: + - type: Transform + pos: 45.5,-23.5 + parent: 2 + - uid: 23033 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 23035 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 23036 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 23037 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 23038 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 +- proto: SpawnPointPrisoner + entities: + - uid: 23039 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - uid: 23040 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 23042 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 23043 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 23044 + components: + - type: Transform + pos: -17.5,47.5 + parent: 2 + - uid: 23045 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 23046 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 23047 + components: + - type: Transform + pos: -1.5,49.5 + parent: 2 + - uid: 23048 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 23049 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 23050 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 +- proto: SpawnPointPrisonGuard + entities: + - uid: 23051 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 23052 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 23053 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 23054 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 23055 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 23056 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 2 + - uid: 23057 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 23058 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 23059 + components: + - type: Transform + pos: 73.5,-27.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 23060 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 +- proto: SpawnPointRoboticist + entities: + - uid: 23061 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 23063 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 + - uid: 23064 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 23065 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 23066 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 2 + - uid: 23067 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 23068 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 2 + - uid: 23069 + components: + - type: Transform + pos: 72.5,-27.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 23070 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 23071 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 23072 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 23073 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 23074 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 23075 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 23077 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 23079 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 23080 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - uid: 23081 + components: + - type: Transform + pos: -7.5,-75.5 + parent: 2 +- proto: SpawnPointSeniorOfficer + entities: + - uid: 23082 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 +- proto: SpawnPointSeniorPhysician + entities: + - uid: 23084 + components: + - type: Transform + pos: 36.5,-47.5 + parent: 2 +- proto: SpawnPointSeniorResearcher + entities: + - uid: 23085 + components: + - type: Transform + pos: 70.5,-20.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 23086 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 23088 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 23090 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - uid: 23092 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 23093 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 23095 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 23097 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 23100 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 23101 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 23102 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 23103 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 23104 + components: + - type: Transform + pos: -49.700584,-7.3589315 + parent: 2 + - uid: 23105 + components: + - type: Transform + pos: -49.700584,-7.3589315 + parent: 2 + - uid: 23106 + components: + - type: Transform + pos: -34.47067,-4.5023966 + parent: 2 + - uid: 23107 + components: + - type: Transform + pos: -34.25192,-4.6898966 + parent: 2 + - uid: 23108 + components: + - type: Transform + pos: -34.68942,-4.3773966 + parent: 2 + - uid: 23109 + components: + - type: Transform + rot: 0.00031763542210683227 rad + pos: 22.734983,-27.003876 + parent: 2 + - uid: 23110 + components: + - type: Transform + pos: -49.700584,-7.3589315 + parent: 2 + - uid: 23111 + components: + - type: Transform + pos: 2.3238735,-34.830353 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: 2.4488735,-34.908478 + parent: 2 + - uid: 23113 + components: + - type: Transform + pos: 2.5894985,-34.986603 + parent: 2 +- proto: SprayBottleWater + entities: + - uid: 23114 + components: + - type: Transform + pos: 24.48325,-36.395668 + parent: 2 +- proto: SprayPainter + entities: + - uid: 23115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.577742,-55.428635 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 23116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-56.5 + parent: 2 + - uid: 23117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.590919,-89.47928 + parent: 2 + - uid: 23118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.606471,-90.4898 + parent: 2 +- proto: StasisBed + entities: + - uid: 23119 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 23120 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 23122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 +- proto: StationAnchorIndestructible + entities: + - uid: 23124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-74.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 23125 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 +- proto: StationMap + entities: + - uid: 23126 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 23127 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 23128 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 23129 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 23130 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 23131 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 23132 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 23133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-71.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 23134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,23.5 + parent: 2 + - uid: 23135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,23.5 + parent: 2 + - uid: 23136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - uid: 23137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,32.5 + parent: 2 + - uid: 23138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,32.5 + parent: 2 + - uid: 23139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,32.5 + parent: 2 +- proto: Stool + entities: + - uid: 23140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 23142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 23144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-33.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-49.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 23148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 23149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 + - uid: 23150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 23152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 2 + - uid: 23153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,12.5 + parent: 2 + - uid: 23155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 2 + - uid: 23156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + - uid: 23157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 23165 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,39.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,39.5 + parent: 2 + - uid: 23168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-19.5 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 23170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 2 + - uid: 23173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - uid: 23174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 + - uid: 23175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-39.5 + parent: 2 + - uid: 23176 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 23177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 23178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-45.5 + parent: 2 + - uid: 23179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-44.5 + parent: 2 + - uid: 23180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-46.5 + parent: 2 + - uid: 23181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-4.5 + parent: 2 + - uid: 23182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 2 + - uid: 23183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 2 + - uid: 23184 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 23185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,48.5 + parent: 2 + - uid: 23186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,20.5 + parent: 2 + - uid: 23187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 + - uid: 23188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,22.5 + parent: 2 + - uid: 23189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-11.5 + parent: 2 + - uid: 23190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - uid: 23191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 2 + - uid: 23192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 23193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - uid: 23195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - uid: 23196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - uid: 23197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 23198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 23199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,48.5 + parent: 2 + - uid: 23200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,48.5 + parent: 2 + - uid: 23201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-11.5 + parent: 2 + - uid: 23202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 23203 + components: + - type: Transform + pos: -3.5,-83.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + pos: -4.5,-83.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 23208 + components: + - type: Transform + pos: 76.5,-36.5 + parent: 2 + - uid: 23209 + components: + - type: Transform + pos: 76.5,-35.5 + parent: 2 + - uid: 23210 + components: + - type: Transform + pos: 76.5,-34.5 + parent: 2 + - uid: 23211 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + pos: 59.5,-33.5 + parent: 2 + - uid: 23214 + components: + - type: Transform + pos: 60.5,-33.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + pos: 61.5,-33.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: 62.5,-33.5 + parent: 2 + - uid: 23217 + components: + - type: Transform + pos: 8.5,-94.5 + parent: 2 + - uid: 23218 + components: + - type: Transform + pos: 7.5,-94.5 + parent: 2 + - uid: 23219 + components: + - type: Transform + pos: 6.5,-94.5 + parent: 2 +- proto: StrangePill + entities: + - uid: 23220 + components: + - type: Transform + pos: -17.365225,51.57157 + parent: 2 + - uid: 23221 + components: + - type: Transform + pos: -15.670289,47.233337 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 23222 + components: + - type: Transform + pos: -3.5,-89.5 + parent: 2 + - uid: 23223 + components: + - type: MetaData + name: Cargo Substation + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 60.000237 + currentSupply: 60.000237 + supplyRampPosition: 60.000237 + - uid: 23224 + components: + - type: MetaData + name: Science Substation + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 260.0401 + currentSupply: 260.0401 + supplyRampPosition: 260.0401 + - uid: 23225 + components: + - type: MetaData + name: Command Substation + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 23226 + components: + - type: MetaData + name: Gravity Substation + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 23227 + components: + - type: MetaData + name: Starboard Bow Service Substation + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 23228 + components: + - type: MetaData + name: Port Quarter Maintenance Substation + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 23229 + components: + - type: MetaData + name: Security Substation + - type: Transform + pos: 24.5,22.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 45.00018 + currentSupply: 45.00018 + supplyRampPosition: 45.00018 + - uid: 23230 + components: + - type: MetaData + name: Port Bow Service Substation + - type: Transform + pos: -44.5,9.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 19.980549 + currentSupply: 19.980549 + supplyRampPosition: 19.980549 + - uid: 23231 + components: + - type: MetaData + name: Engi Sub + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 23232 + components: + - type: MetaData + name: Telecomms Substation + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 23233 + components: + - type: MetaData + name: Medbay Substation + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - type: Battery + startingCharge: 2421964.2 + - type: PowerNetworkBattery + loadingNetworkDemand: 225.0009 + currentSupply: 225.0009 + supplyRampPosition: 225.0009 + - uid: 23234 + components: + - type: Transform + pos: 24.5,-112.5 + parent: 2 + - uid: 23235 + components: + - type: MetaData + name: Perma Substation + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 23236 + components: + - type: MetaData + name: Engineering Substation Storage Room + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 23237 + components: + - type: Transform + pos: 34.5,-89.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 23238 + components: + - type: Transform + pos: -67.42753,12.306509 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 23239 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 23240 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 +- proto: SuitStorageCorpsman + entities: + - uid: 23241 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 23242 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 23243 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - uid: 23244 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 23245 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 23246 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 23250 + components: + - type: Transform + pos: 72.5,-34.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 23251 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 23252 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 23253 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 23254 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 11304 + components: + - type: Transform + pos: 3.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: + - 11305 + - uid: 11306 + components: + - type: Transform + pos: 4.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: + - 11307 + - uid: 23255 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 23256 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 +- proto: Supermatter + entities: + - uid: 23257 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 23258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 23259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Office + - uid: 23260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + - uid: 23261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West + - uid: 23262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge East + - uid: 23263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + - uid: 23264 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + - uid: 23265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High Sec Circuitry + - uid: 23266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Drone Storage + - uid: 23267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Upload + - uid: 23268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Tunnel + - uid: 23269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Entrance E + - uid: 23270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain Bathroom + - uid: 23271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Supply + - uid: 23272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Grav Gen + - uid: 23273 + components: + - type: Transform + pos: 29.5,-81.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Airlock + - uid: 23274 + components: + - type: Transform + pos: 29.5,-87.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Monitor Station + - uid: 23275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-90.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Entrance + - uid: 23276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-92.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Closet + - uid: 23277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-92.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Power + - uid: 23278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-99.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext NW + - uid: 23279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-99.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext NE + - uid: 23280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-112.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Core E + - uid: 23281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-112.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Core W + - uid: 23282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-105.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Core Door + - uid: 23283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-100.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Walkup + - uid: 23284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-119.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext SE + - uid: 23285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-119.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext SW + - uid: 23286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-112.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext W + - uid: 23287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-112.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext E + - uid: 23288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-84.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Closet + - uid: 23289 + components: + - type: Transform + pos: 24.5,-86.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext N + - uid: 23290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-85.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Ext + - uid: 23291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Show Room + - uid: 23292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-68.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Chube + - uid: 23293 + components: + - type: Transform + pos: 28.5,-115.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Core S +- proto: SurveillanceCameraEngineering + entities: + - uid: 23294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-72.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-63.5 + parent: 2 + - uid: 23297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-67.5 + parent: 2 + - uid: 23298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-68.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Bank + - uid: 23299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Atmos + - uid: 23300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: EVA Supply + - uid: 23301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Canister Storage + - uid: 23302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Circuitry + - uid: 23303 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: 'Solars SW ' + - uid: 23304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars SW Airlock + - uid: 23305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: 'Solars NW ' + - uid: 23306 + components: + - type: Transform + pos: -48.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars NW Door + - uid: 23307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Lobby + - uid: 23308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms + - uid: 23309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Anchor Room + - uid: 23310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: EVA Supply + - uid: 23311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars NE + - uid: 23312 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars NE Door + - uid: 23313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms Entrance + - uid: 23314 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE Office + - uid: 23315 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Secure Storage + - uid: 23316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Construction Area + - uid: 23317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmo North + - uid: 23318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmo Tank 1 + - uid: 23319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmo Tank 2 + - uid: 23320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmo Tank 3 + - uid: 23321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmo Tank 4 + - uid: 23322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Locker Room + - uid: 23323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front Desk + - uid: 23324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break Room + - uid: 23325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-66.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Soft Play Area + - uid: 23326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-68.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Hall + - uid: 23327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker Room + - uid: 23328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-79.5 + parent: 2 + - uid: 23329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-79.5 + parent: 2 + - uid: 23330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-87.5 + parent: 2 + - uid: 23331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-87.5 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -7.5,-94.5 + parent: 2 + - uid: 23333 + components: + - type: Transform + pos: 5.5,-94.5 + parent: 2 + - uid: 23334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-76.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-75.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-78.5 + parent: 2 + - uid: 23337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-77.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-69.5 + parent: 2 + - uid: 23339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-56.5 + parent: 2 + - uid: 23340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-78.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-72.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-67.5 + parent: 2 + - uid: 23343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-69.5 + parent: 2 + - uid: 23344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 2 + - uid: 23345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-65.5 + parent: 2 + - uid: 23346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-58.5 + parent: 2 +- proto: SurveillanceCameraGeneral + entities: + - uid: 23347 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool Room + - uid: 23348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel Crematorium + - uid: 23349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel + - uid: 23350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + - uid: 23351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hydroponics + - uid: 23352 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Kitchen + - uid: 23353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Theater + - uid: 23354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bar + - uid: 23355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bathroom + - uid: 23356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms + - uid: 23357 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Law + - uid: 23358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Gameroom + - uid: 23359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Grav + - uid: 23360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall HoP + - uid: 23361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Tool Room + - uid: 23362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Rec Room + - uid: 23363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Gym + - uid: 23364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bathroom + - uid: 23365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Arrivals + - uid: 23366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals + - uid: 23367 + components: + - type: Transform + pos: -71.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals N + - uid: 23368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals S + - uid: 23369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals Docks + - uid: 23370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Shuttle Construction Room + - uid: 23371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Vault + - uid: 23372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arts & Crafts Room + - uid: 23373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Arrivals Docks ' + - uid: 23374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals Offices + - uid: 23375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Disposals + - uid: 23376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Closet + - uid: 23377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Office + - uid: 23378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge Entrance W + - uid: 23379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Eva + - uid: 23380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall North + - uid: 23381 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bar + - uid: 23382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Bar + - uid: 23383 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Medical + - uid: 23384 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Boxing Ring + - uid: 23385 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Bar Room + - uid: 23386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Holodeck W + - uid: 23387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryosleep + - uid: 23388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Holodeck E + - uid: 23389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 6 + - uid: 23390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 5 + - uid: 23391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 3 + - uid: 23392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 4 + - uid: 23393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 2 + - uid: 23394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 1 + - uid: 23395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Dorms + - uid: 23396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Boxing Ring + - uid: 23397 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + - uid: 23398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Librarian Room + - uid: 23399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chaplain Office + - uid: 23400 + components: + - type: Transform + pos: 72.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel North + - uid: 23401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 1 + - uid: 23402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac S + - uid: 23403 + components: + - type: Transform + pos: 85.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac N + - uid: 23404 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Sci + - uid: 23405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Shower Room + - uid: 23406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Theater Room + - uid: 23407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Bridge E + - uid: 23408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Engi + - uid: 23409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Library +- proto: SurveillanceCameraMedical + entities: + - uid: 23410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + - uid: 23411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 23412 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 23413 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Storage + - uid: 23414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Emergency Room + - uid: 23415 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Lobby + - uid: 23416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 23417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology Breakroom + - uid: 23418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Arrivals Dock 1 + - uid: 23419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Arrivals Dock 2 + - uid: 23420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Arrivals Dock 3 + - uid: 23421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO Office + - uid: 23422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery prep + - uid: 23423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Storage + - uid: 23424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryonics + - uid: 23425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Dissection + - uid: 23426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical S Hallway + - uid: 23427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology Airlock + - uid: 23428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Storage + - uid: 23429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Hall + - uid: 23430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Breakroom + - uid: 23431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Hall N + - uid: 23432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Hall W +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 23433 + components: + - type: Transform + pos: -15.5,-57.5 + parent: 2 +- proto: SurveillanceCameraRouterConstructed + entities: + - uid: 23434 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 23435 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 23436 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 23437 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 23438 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 23439 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 23440 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 23441 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 23442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-29.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins + - uid: 23444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD's Room + - uid: 23445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RND + - uid: 23446 + components: + - type: Transform + pos: 61.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Breakroom Hall + - uid: 23447 + components: + - type: Transform + pos: 84.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Abandoned Room + - uid: 23448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Entrance + - uid: 23449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Inside + - uid: 23450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly Lab + - uid: 23451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Breakroom + - uid: 23452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Canister Storage + - uid: 23453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifact Lab Chamber + - uid: 23454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifact Test Lab + - uid: 23455 + components: + - type: Transform + pos: 80.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifact Lab Chamber + - uid: 23456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins Storage Cans + - uid: 23457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Hall S + - uid: 23458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Hall + - uid: 23459 + components: + - type: Transform + pos: 71.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science + - uid: 23460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Hall E + - uid: 23461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Server Room + - uid: 23462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics Surgery + - uid: 23463 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics Bay +- proto: SurveillanceCameraSecurity + entities: + - uid: 23464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory Exterior + - uid: 23465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Robotics + - uid: 23466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Courtroom + - uid: 23467 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cargo Sec Office + - uid: 23468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Sec Office + - uid: 23469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Shooting Range + - uid: 23470 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS Room + - uid: 23471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Locker Room + - uid: 23472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 23473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Room + - uid: 23474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell Block + - uid: 23475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Office + - uid: 23476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: sec hallway + - uid: 23477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Entrance + - uid: 23478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Front Door + - uid: 23479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Visitation + - uid: 23480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Entrance + - uid: 23481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security + - uid: 23482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Law Office + - uid: 23483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation + - uid: 23484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security External West + - uid: 23485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evidence Room + - uid: 23486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Ext W + - uid: 23487 + components: + - type: Transform + pos: 0.5,53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Ext N + - uid: 23488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Checkpoint Evac + - uid: 23489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Hall + - uid: 23490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Recreation + - uid: 23491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Botany + - uid: 23492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Library + - uid: 23493 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Cells + - uid: 23494 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Exterior Armory + - uid: 23495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Entryway +- proto: SurveillanceCameraService + entities: + - uid: 23496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bartender backroom + - uid: 23497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 23498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany Backroom + - uid: 23499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor Closet +- proto: SurveillanceCameraSupply + entities: + - uid: 23500 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mail Room + - uid: 23501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Lobby + - uid: 23502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay + - uid: 23503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay Airlock + - uid: 23504 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + - uid: 23505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Airlock 2 + - uid: 23506 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Airlock 1 + - uid: 23507 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay Closet + - uid: 23508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay North + - uid: 23509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Lobby + - uid: 23510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 23511 + components: + - type: Transform + pos: -15.5,-55.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 23513 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 23514 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 +- proto: Syringe + entities: + - uid: 23515 + components: + - type: Transform + pos: 20.360558,-36.34526 + parent: 2 + - uid: 23516 + components: + - type: Transform + pos: 28.52842,-36.41355 + parent: 2 + - uid: 23517 + components: + - type: Transform + pos: 29.437502,-32.468803 + parent: 2 + - uid: 23518 + components: + - type: Transform + pos: 31.51019,-36.387512 + parent: 2 + - uid: 23519 + components: + - type: Transform + pos: 20.946495,-36.43641 + parent: 2 + - uid: 23520 + components: + - type: Transform + pos: 20.673058,-36.358284 + parent: 2 +- proto: SyringeEphedrine + entities: + - uid: 23521 + components: + - type: Transform + pos: -20.550821,14.488405 + parent: 2 + - type: Tag + tags: [] +- proto: Table + entities: + - uid: 23522 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-89.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + pos: 85.5,-53.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + pos: 27.5,-83.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + pos: 26.5,-86.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + pos: 30.5,-87.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + pos: 58.5,-49.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + pos: 60.5,-49.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + pos: 59.5,-49.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + pos: 57.5,-49.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + pos: 59.5,-51.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + pos: 58.5,-51.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 23544 + components: + - type: Transform + pos: 53.5,-48.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 23550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 23552 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 23553 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 23554 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 23555 + components: + - type: Transform + pos: 72.5,-29.5 + parent: 2 + - uid: 23556 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 2 + - uid: 23557 + components: + - type: Transform + pos: 71.5,-28.5 + parent: 2 + - uid: 23558 + components: + - type: Transform + pos: 71.5,-29.5 + parent: 2 + - uid: 23559 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 23560 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 2 + - uid: 23561 + components: + - type: Transform + pos: 69.5,-28.5 + parent: 2 + - uid: 23562 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 23563 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 23564 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 23565 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 23568 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 23569 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 23570 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 23571 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 23574 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 23575 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 23576 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 23577 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 23579 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 23580 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 23581 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 23582 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 23583 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 23584 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 23585 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 23586 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 23587 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 23588 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 23589 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 23590 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 23591 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - uid: 23592 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - uid: 23593 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - uid: 23594 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 23595 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 23596 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 23601 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 23602 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 23603 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 23604 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 23606 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 23610 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 23614 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 23615 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 23616 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 23618 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 23623 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + pos: 76.5,-1.5 + parent: 2 + - uid: 23625 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 23628 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 23638 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 23643 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 23645 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 23647 + components: + - type: Transform + pos: -65.5,13.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 23652 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 23653 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 23658 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 23659 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 23660 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 23678 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 23679 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 23680 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 23681 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 23682 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 23683 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 23684 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 23685 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 23686 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 23687 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 23688 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 23689 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 23690 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 23693 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 23694 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: -8.5,-57.5 + parent: 2 + - uid: 23696 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - uid: 23697 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 23698 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 23699 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 23700 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 23701 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 23702 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 23703 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 23704 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - uid: 23705 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 23706 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 23709 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 23711 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 23712 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 23714 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 23716 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 23720 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 23725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-17.5 + parent: 2 + - uid: 23726 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 23732 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-54.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 2 + - uid: 23738 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 23740 + components: + - type: Transform + pos: -1.5,-66.5 + parent: 2 + - uid: 23741 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 23742 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 23743 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 23745 + components: + - type: Transform + pos: -24.5,-71.5 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: -23.5,-71.5 + parent: 2 + - uid: 23747 + components: + - type: Transform + pos: 9.5,-60.5 + parent: 2 + - uid: 23748 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 23749 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 23750 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 23751 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 + - uid: 23752 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 23753 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 23754 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 23755 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 23756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-45.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 23761 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 23762 + components: + - type: Transform + pos: 47.5,-68.5 + parent: 2 + - uid: 23763 + components: + - type: Transform + pos: 47.5,-67.5 + parent: 2 + - uid: 23764 + components: + - type: Transform + pos: 47.5,-66.5 + parent: 2 + - uid: 23765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-20.5 + parent: 2 + - uid: 23766 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 23769 + components: + - type: Transform + pos: 73.5,-16.5 + parent: 2 + - uid: 23770 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + pos: 74.5,-31.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 2 + - uid: 23773 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 2 + - uid: 23774 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + pos: 63.5,-21.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + pos: 63.5,-20.5 + parent: 2 + - uid: 23777 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 + - uid: 23778 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 23779 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 23780 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 23781 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 23782 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 23783 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - uid: 23785 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 23787 + components: + - type: Transform + pos: 70.5,-53.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + pos: 69.5,-53.5 + parent: 2 + - uid: 23789 + components: + - type: Transform + pos: 76.5,-54.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: 80.5,-43.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + pos: 80.5,-44.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 2 + - uid: 23794 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 2 + - uid: 23795 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + pos: 79.5,-47.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 23798 + components: + - type: Transform + pos: 69.5,-35.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + pos: 71.5,-37.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + pos: 77.5,-26.5 + parent: 2 + - uid: 23802 + components: + - type: Transform + pos: 80.5,-26.5 + parent: 2 + - uid: 23803 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 23804 + components: + - type: Transform + pos: 77.5,-54.5 + parent: 2 + - uid: 23805 + components: + - type: Transform + pos: 78.5,-54.5 + parent: 2 + - uid: 23806 + components: + - type: Transform + pos: 78.5,-64.5 + parent: 2 + - uid: 23807 + components: + - type: Transform + pos: 78.5,-63.5 + parent: 2 + - uid: 23808 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 23813 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 23814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 2 + - uid: 23817 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 23818 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 + - uid: 23820 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 23823 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 23824 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: 2.5,51.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 23827 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 23828 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 23829 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 23830 + components: + - type: Transform + pos: 59.5,-39.5 + parent: 2 + - uid: 23831 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + pos: 33.5,-88.5 + parent: 2 + - uid: 23833 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 + - uid: 23834 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 23835 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 23836 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: 80.5,-56.5 + parent: 2 + - uid: 23840 + components: + - type: Transform + pos: 79.5,-56.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + pos: 78.5,-56.5 + parent: 2 + - uid: 23842 + components: + - type: Transform + pos: 84.5,-53.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: 86.5,-41.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: 86.5,-40.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: 86.5,-42.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: 84.5,-40.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-76.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-76.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-76.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-55.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-56.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-77.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-77.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-77.5 + parent: 2 + - uid: 23855 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: -5.5,-72.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - uid: 23861 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 + - uid: 23862 + components: + - type: Transform + pos: -26.5,-73.5 + parent: 2 + - uid: 23863 + components: + - type: Transform + pos: -4.5,-70.5 + parent: 2 + - uid: 23864 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 23865 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 23866 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 23867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 23870 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 23875 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 23877 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + pos: 46.5,-44.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 23885 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 23887 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 23888 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: 69.5,6.5 + parent: 2 + - uid: 23893 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + pos: 74.5,2.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + pos: 74.5,1.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: 74.5,0.5 + parent: 2 + - uid: 23897 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 23898 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 23900 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 23901 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 23902 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 23903 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 23904 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 23905 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 23906 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 23907 + components: + - type: Transform + pos: 41.5,-57.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 23909 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + pos: 38.5,-59.5 + parent: 2 + - uid: 23912 + components: + - type: Transform + pos: 38.5,-60.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 23914 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 23917 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 2 + - uid: 23918 + components: + - type: Transform + pos: 74.5,-19.5 + parent: 2 + - uid: 23919 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 23920 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 23921 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 23922 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 23923 + components: + - type: Transform + pos: 47.5,-60.5 + parent: 2 + - uid: 23924 + components: + - type: Transform + pos: 44.5,-60.5 + parent: 2 + - uid: 23925 + components: + - type: Transform + pos: 46.5,-60.5 + parent: 2 + - uid: 23926 + components: + - type: Transform + pos: 43.5,-60.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + pos: 73.5,-49.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: 74.5,-49.5 + parent: 2 + - uid: 23929 + components: + - type: Transform + pos: 74.5,-50.5 + parent: 2 + - uid: 23930 + components: + - type: Transform + pos: 74.5,-51.5 + parent: 2 + - uid: 23931 + components: + - type: Transform + pos: 78.5,-51.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + pos: 78.5,-50.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + pos: 16.5,-71.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + pos: 19.5,-71.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 23935 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 23936 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 23937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 23938 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 23939 + components: + - type: Transform + pos: 26.5,-105.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + pos: 26.5,-106.5 + parent: 2 + - uid: 23941 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 23942 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 23943 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 23944 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 23945 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 23946 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 23947 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 23948 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 2 + - uid: 23949 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 23950 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 23951 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 23952 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 23953 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 23954 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 23955 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 23956 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 23957 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 23958 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 23959 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 23960 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 23961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-22.5 + parent: 2 + - uid: 23962 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 23963 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 23964 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 23965 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 23966 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 23967 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 23968 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 23969 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 23970 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 23971 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 23972 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 23973 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 23974 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 23975 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 23976 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 23988 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 23990 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 23992 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 23993 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 23996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - uid: 23997 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: 51.5,-33.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 24018 + components: + - type: Transform + pos: -9.5,-83.5 + parent: 2 + - uid: 24019 + components: + - type: Transform + pos: -9.5,-84.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + pos: 69.5,-55.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + pos: 68.5,-55.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + pos: 74.5,-33.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + pos: 74.5,-35.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 24025 + components: + - type: Transform + pos: -9.5,-81.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + pos: -9.5,-86.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 2 + - uid: 24028 + components: + - type: Transform + pos: -9.5,-88.5 + parent: 2 + - uid: 24029 + components: + - type: Transform + pos: 70.5,-55.5 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: 70.5,-57.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + pos: 69.5,-57.5 + parent: 2 +- proto: TableWood + entities: + - uid: 24032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-29.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: 62.5,-30.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 + - uid: 24037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-30.5 + parent: 2 + - uid: 24038 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: 45.5,-62.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 24055 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 24057 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 24069 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 24070 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 24071 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 24073 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 24074 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 24076 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 24077 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 24078 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 24079 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 24083 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 24087 + components: + - type: Transform + pos: -13.5,48.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 24089 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 24090 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 24091 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 24092 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 24093 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 24096 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 24097 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 24098 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 24099 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 24101 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 24104 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 24107 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 24111 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 24112 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 + - uid: 24113 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 24114 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 24115 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 24117 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 24119 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 24120 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 24121 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 24123 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 24124 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 24125 + components: + - type: Transform + pos: 56.5,3.5 + parent: 2 + - uid: 24126 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 24128 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 24130 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 24133 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 24135 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 24136 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 24140 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 24141 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 24142 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 24143 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 24144 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 24145 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 24146 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 24147 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 24148 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 24149 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 24151 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 24152 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 24153 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 24154 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 24155 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 24157 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 24158 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 24159 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 24160 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 24161 + components: + - type: Transform + pos: 45.5,-63.5 + parent: 2 + - uid: 24162 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 24163 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - uid: 24164 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 24165 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 24168 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 24169 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 24170 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 24171 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 24172 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 24176 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 +- proto: TelecomServer + entities: + - uid: 13431 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13432 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13433 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13434 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13435 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13436 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13437 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13438 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13439 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13440 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13441 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13442 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13443 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13444 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13445 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13446 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 24177 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: 32.5,-112.5 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 24179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-84.5 + parent: 2 +- proto: TeslaCoilFlatpack + entities: + - uid: 11622 + components: + - type: Transform + parent: 11621 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11623 + components: + - type: Transform + parent: 11621 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11624 + components: + - type: Transform + parent: 11621 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: TeslaGroundingRod + entities: + - uid: 24180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-84.5 + parent: 2 +- proto: TeslaGroundingRodFlatpack + entities: + - uid: 11625 + components: + - type: Transform + parent: 11621 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11626 + components: + - type: Transform + parent: 11621 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11627 + components: + - type: Transform + parent: 11621 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Thruster + entities: + - uid: 24181 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 + - uid: 24182 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 24183 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 +- proto: TimpaniInstrument + entities: + - uid: 24184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 24185 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 24186 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 24189 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 24190 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 24192 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 24195 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 24197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-56.5 + parent: 2 + - uid: 24199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 + parent: 2 + - uid: 24200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 24201 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 24203 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 +- proto: ToolboxArtistic + entities: + - uid: 24204 + components: + - type: Transform + pos: -34.499626,-5.94352 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 24205 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 24206 + components: + - type: Transform + pos: 43.497356,5.7166862 + parent: 2 + - uid: 24207 + components: + - type: Transform + pos: 47.537563,-38.378395 + parent: 2 + - uid: 24208 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 24209 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 24211 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - uid: 24212 + components: + - type: Transform + rot: 0.0005229588132351637 rad + pos: -29.737185,-45.684746 + parent: 2 + - uid: 24213 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 24214 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 24215 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 24216 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 24217 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 + - uid: 24218 + components: + - type: Transform + pos: -3.614934,9.66169 + parent: 2 + - uid: 24219 + components: + - type: Transform + pos: 34.60652,-90.48169 + parent: 2 + - uid: 24220 + components: + - type: Transform + pos: 23.516981,-88.44529 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: -5.5,-72.5 + parent: 2 +- proto: ToolboxEmergency + entities: + - uid: 24222 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 24223 + components: + - type: Transform + pos: 4.550616,-4.4732327 + parent: 2 + - uid: 24224 + components: + - type: Transform + pos: 76.5,-1.5 + parent: 2 + - uid: 24225 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 24226 + components: + - type: Transform + pos: 43.489185,-72.69064 + parent: 2 + - uid: 24227 + components: + - type: Transform + pos: -11.516717,9.665451 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 24228 + components: + - type: Transform + pos: -33.54612,4.2426443 + parent: 2 +- proto: ToolboxMechanical + entities: + - uid: 24229 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 24230 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 24231 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: -37.5,3.5000002 + parent: 2 + - uid: 24233 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 24234 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 24235 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 24236 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 24237 + components: + - type: Transform + pos: -29.300238,-45.38687 + parent: 2 + - uid: 24238 + components: + - type: Transform + pos: -5.492169,-57.366646 + parent: 2 + - uid: 24239 + components: + - type: Transform + pos: 6.4599867,-44.36032 + parent: 2 + - uid: 24240 + components: + - type: Transform + pos: 73.5,-16.5 + parent: 2 + - uid: 24241 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 24242 + components: + - type: Transform + pos: -3.505559,9.50544 + parent: 2 + - uid: 24243 + components: + - type: Transform + pos: -12.5005455,3.5448246 + parent: 2 + - uid: 24244 + components: + - type: Transform + pos: 34.48152,-90.32544 + parent: 2 + - uid: 24245 + components: + - type: Transform + pos: 7.435697,-65.321434 + parent: 2 + - uid: 24246 + components: + - type: Transform + pos: -5.537703,-72.19311 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 24247 + components: + - type: Transform + pos: 4.714342,-65.524 + parent: 2 +- proto: ToyFigurinePassenger + entities: + - uid: 24248 + components: + - type: Transform + pos: 45.487507,-73.57517 + parent: 2 +- proto: ToyMouse + entities: + - uid: 24249 + components: + - type: Transform + pos: 35.67903,-38.52378 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 24250 + components: + - type: Transform + pos: 10.494166,-22.655447 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 24252 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 24253 + components: + - type: Transform + pos: 31.579891,15.170173 + parent: 2 +- proto: ToySpawner + entities: + - uid: 24254 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 24255 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 24256 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 24257 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 24258 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 24259 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 24260 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 24261 + components: + - type: Transform + pos: -49.68496,-6.4370565 + parent: 2 + - uid: 24262 + components: + - type: Transform + pos: -49.68496,-6.4370565 + parent: 2 + - uid: 24263 + components: + - type: Transform + pos: -49.68496,-6.4370565 + parent: 2 + - uid: 24264 + components: + - type: Transform + pos: -23.561554,51.44249 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: 2.3238735,-34.158478 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: 2.5113735,-34.158478 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: 2.6832485,-34.158478 + parent: 2 +- proto: trayScanner + entities: + - uid: 24268 + components: + - type: Transform + pos: 51.56124,-43.44272 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: -43.679325,5.6580877 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: 7.5693617,-44.500946 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: -12.463955,6.5667586 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 24273 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22269: + - Left: Open + - Right: Open + - Middle: Close + 22270: + - Left: Open + - Right: Open + - Middle: Close + 22271: + - Left: Open + - Right: Open + - Middle: Close + - uid: 24274 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11550: + - Left: Forward + - Right: Reverse + - Middle: Off + 11549: + - Left: Forward + - Right: Reverse + - Middle: Off + 11556: + - Left: Forward + - Right: Reverse + - Middle: Off + 11551: + - Left: Forward + - Right: Reverse + - Middle: Off + 11557: + - Left: Forward + - Right: Reverse + - Middle: Off + 11558: + - Left: Forward + - Right: Reverse + - Middle: Off + 11561: + - Left: Forward + - Right: Reverse + - Middle: Off + 11559: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 24276 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11544: + - Left: Forward + - Right: Reverse + - Middle: Off + 11543: + - Left: Forward + - Right: Reverse + - Middle: Off + 11542: + - Left: Forward + - Right: Reverse + - Middle: Off + 11541: + - Left: Forward + - Right: Reverse + - Middle: Off + 11540: + - Left: Forward + - Right: Reverse + - Middle: Off + 11539: + - Left: Forward + - Right: Reverse + - Middle: Off + 11538: + - Left: Forward + - Right: Reverse + - Middle: Off + 11545: + - Left: Forward + - Right: Reverse + - Middle: Off + 11546: + - Left: Forward + - Right: Reverse + - Middle: Off + 11547: + - Left: Forward + - Right: Reverse + - Middle: Off + 11548: + - Left: Forward + - Right: Reverse + - Middle: Off + 11562: + - Left: Forward + - Right: Reverse + - Middle: Off + 11537: + - Right: Reverse + - Left: Forward + - Middle: Off + 21193: + - Right: Reverse + - Left: Forward + - Middle: Off + - uid: 24277 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 24278 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1109: + - Left: Open + - Right: Open + - Middle: Close + - uid: 24279 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11560: + - Left: Forward + - Right: Reverse + - Middle: Off + 11563: + - Left: Forward + - Right: Reverse + - Middle: Off + 11553: + - Left: Forward + - Right: Reverse + - Middle: Off + 11536: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 24280 + components: + - type: Transform + pos: 88.5,-25.5 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 24283 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Cloth + - Durathread +- proto: UprightPianoInstrument + entities: + - uid: 24284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 24285 + components: + - type: Transform + pos: 41.5,-59.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 24286 + components: + - type: Transform + pos: 39.520527,-16.513474 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: 45.5,-52.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 24288 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 24289 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 24290 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 +- proto: VendingMachineBoxingDrobe + entities: + - uid: 24293 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + missingComponents: + - AccessReader +- proto: VendingMachineCargoDrobe + entities: + - uid: 24294 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 24295 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 +- proto: VendingMachineChang + entities: + - uid: 24296 + components: + - type: Transform + pos: 57.5,-37.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 24298 + components: + - type: Transform + pos: 63.5,3.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 24299 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 24300 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 24301 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 24302 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 24303 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 24304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: 68.5,-47.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: 53.5,-37.5 + parent: 2 + - uid: 24315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-70.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 24316 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 24317 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 24318 + components: + - type: Transform + pos: 68.5,-43.5 + parent: 2 + - uid: 24319 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 24320 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: -74.5,8.5 + parent: 2 + - uid: 24322 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 24323 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + pos: -32.5,-72.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-70.5 + parent: 2 +- proto: VendingMachineCola + entities: + - uid: 24326 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 24327 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 24328 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 24329 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 24330 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 24331 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 24332 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 24333 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 24334 + components: + - type: Transform + pos: 82.5,-1.5 + parent: 2 + - uid: 24335 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 24336 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 24337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-62.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 2 +- proto: VendingMachineFitness + entities: + - uid: 24339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 24340 + components: + - type: Transform + pos: 53.5,2.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 24341 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 24342 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 24343 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 24344 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 24345 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 24346 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: 47.5,-55.5 + parent: 2 + - uid: 24348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 24349 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 2 +- proto: VendingMachineMNKDrobe + entities: + - uid: 24350 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 24351 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 +- proto: VendingMachinePride + entities: + - uid: 24352 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 + - uid: 24353 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 +- proto: VendingMachineRepDrobe + entities: + - uid: 24354 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 24355 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 24356 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 24357 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 24358 + components: + - type: Transform + pos: 74.5,-28.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 24359 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 24360 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 24361 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 24362 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 24363 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 24364 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 24365 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 +- proto: VendingMachineSnack + entities: + - uid: 24366 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 24367 + components: + - type: Transform + pos: -73.5,-3.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 24368 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 24369 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 24370 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 24371 + components: + - type: Transform + pos: 8.5,-84.5 + parent: 2 + - uid: 24372 + components: + - type: Transform + pos: 63.5,-33.5 + parent: 2 + - uid: 24373 + components: + - type: Transform + pos: -0.5,-94.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 24374 + components: + - type: Transform + pos: 75.5,-43.5 + parent: 2 + - uid: 24375 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 24376 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 24377 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 24378 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 24379 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 24380 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 24381 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 24382 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 24383 + components: + - type: MetaData + name: Cargo's NanoMed + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 24384 + components: + - type: MetaData + name: ' Gym NanoMed' + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 24385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-27.5 + parent: 2 + - uid: 24386 + components: + - type: MetaData + name: Public NanoMed + - type: Transform + pos: 32.5,-15.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 24387 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 24388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 24389 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 24390 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 24391 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 24392 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 24393 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 24395 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 24396 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 24397 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 24399 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: -11.5,-77.5 + parent: 2 + - uid: 24401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-65.5 + parent: 2 + - uid: 24402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-71.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-71.5 + parent: 2 + - uid: 24404 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 24405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-65.5 + parent: 2 + - uid: 24406 + components: + - type: Transform + pos: -11.5,-78.5 + parent: 2 + - uid: 24407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-80.5 + parent: 2 + - uid: 24408 + components: + - type: Transform + pos: -9.5,-80.5 + parent: 2 + - uid: 24409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-75.5 + parent: 2 + - uid: 24410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-74.5 + parent: 2 + - uid: 24411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-76.5 + parent: 2 + - uid: 24412 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 2 + - uid: 24413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-67.5 + parent: 2 + - uid: 24414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-64.5 + parent: 2 + - uid: 24415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-67.5 + parent: 2 + - uid: 24416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-65.5 + parent: 2 + - uid: 24417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-62.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + pos: 29.5,-69.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-65.5 + parent: 2 + - uid: 24421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-66.5 + parent: 2 + - uid: 24422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-67.5 + parent: 2 + - uid: 24423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-59.5 + parent: 2 + - uid: 24424 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 2 + - uid: 24425 + components: + - type: Transform + pos: 29.5,-68.5 + parent: 2 + - uid: 24426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-65.5 + parent: 2 + - uid: 24427 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 2 + - uid: 24428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-65.5 + parent: 2 + - uid: 24429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-61.5 + parent: 2 + - uid: 24430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-72.5 + parent: 2 + - uid: 24431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-75.5 + parent: 2 + - uid: 24432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-71.5 + parent: 2 + - uid: 24433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-69.5 + parent: 2 + - uid: 24434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-65.5 + parent: 2 + - uid: 24435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-61.5 + parent: 2 + - uid: 24436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 2 + - uid: 24437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-69.5 + parent: 2 + - uid: 24438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-53.5 + parent: 2 + - uid: 24439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-76.5 + parent: 2 + - uid: 24440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-71.5 + parent: 2 + - uid: 24441 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 2 + - uid: 24442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-75.5 + parent: 2 + - uid: 24443 + components: + - type: Transform + pos: 12.5,-68.5 + parent: 2 + - uid: 24444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-73.5 + parent: 2 + - uid: 24445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-76.5 + parent: 2 + - uid: 24446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-49.5 + parent: 2 + - uid: 24447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-93.5 + parent: 2 + - uid: 24448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-73.5 + parent: 2 + - uid: 24449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-73.5 + parent: 2 + - uid: 24450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-75.5 + parent: 2 + - uid: 24451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-45.5 + parent: 2 + - uid: 24452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - uid: 24453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-69.5 + parent: 2 + - uid: 24454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-71.5 + parent: 2 + - uid: 24455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-73.5 + parent: 2 + - uid: 24456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-74.5 + parent: 2 + - uid: 24457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-72.5 + parent: 2 + - uid: 24458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-74.5 + parent: 2 + - uid: 24459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-73.5 + parent: 2 + - uid: 24460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-72.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-72.5 + parent: 2 + - uid: 24462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-61.5 + parent: 2 + - uid: 24463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-61.5 + parent: 2 + - uid: 24464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-65.5 + parent: 2 + - uid: 24465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-61.5 + parent: 2 + - uid: 24466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-72.5 + parent: 2 + - uid: 24467 + components: + - type: Transform + pos: -27.5,-73.5 + parent: 2 + - uid: 24468 + components: + - type: Transform + pos: -27.5,-74.5 + parent: 2 + - uid: 24469 + components: + - type: Transform + pos: -26.5,-76.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + pos: -27.5,-76.5 + parent: 2 + - uid: 24471 + components: + - type: Transform + pos: -27.5,-75.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: 7.5,-78.5 + parent: 2 + - uid: 24473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-84.5 + parent: 2 + - uid: 24474 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 24475 + components: + - type: Transform + pos: -10.5,-75.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: -10.5,-83.5 + parent: 2 + - uid: 24478 + components: + - type: Transform + pos: 9.5,-80.5 + parent: 2 + - uid: 24479 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 24480 + components: + - type: Transform + pos: -10.5,-84.5 + parent: 2 + - uid: 24481 + components: + - type: Transform + pos: -10.5,-86.5 + parent: 2 + - uid: 24482 + components: + - type: Transform + pos: -10.5,-90.5 + parent: 2 + - uid: 24483 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 24484 + components: + - type: Transform + pos: -10.5,-91.5 + parent: 2 + - uid: 24485 + components: + - type: Transform + pos: -10.5,-95.5 + parent: 2 + - uid: 24486 + components: + - type: Transform + pos: -7.5,-95.5 + parent: 2 + - uid: 24487 + components: + - type: Transform + pos: -6.5,-95.5 + parent: 2 + - uid: 24488 + components: + - type: Transform + pos: -4.5,-95.5 + parent: 2 + - uid: 24489 + components: + - type: Transform + pos: 0.5,-95.5 + parent: 2 + - uid: 24490 + components: + - type: Transform + pos: 1.5,-95.5 + parent: 2 + - uid: 24491 + components: + - type: Transform + pos: 2.5,-95.5 + parent: 2 + - uid: 24492 + components: + - type: Transform + pos: 4.5,-95.5 + parent: 2 + - uid: 24493 + components: + - type: Transform + pos: -10.5,-78.5 + parent: 2 + - uid: 24494 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 2 + - uid: 24495 + components: + - type: Transform + pos: -2.5,-83.5 + parent: 2 + - uid: 24496 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - uid: 24497 + components: + - type: Transform + pos: -4.5,-84.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + pos: -10.5,-77.5 + parent: 2 + - uid: 24499 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 24500 + components: + - type: Transform + pos: 1.5,-83.5 + parent: 2 + - uid: 24501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-78.5 + parent: 2 + - uid: 24502 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 2 + - uid: 24503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-82.5 + parent: 2 + - uid: 24504 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 + - uid: 24505 + components: + - type: Transform + pos: -4.5,-78.5 + parent: 2 + - uid: 24506 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 24507 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 2 + - uid: 24508 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 24509 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 24510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-82.5 + parent: 2 + - uid: 24511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-82.5 + parent: 2 + - uid: 24512 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 2 + - uid: 24513 + components: + - type: Transform + pos: 9.5,-89.5 + parent: 2 + - uid: 24514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-82.5 + parent: 2 + - uid: 24515 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 24516 + components: + - type: Transform + pos: 8.5,-78.5 + parent: 2 + - uid: 24517 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 2 + - uid: 24518 + components: + - type: Transform + pos: -10.5,-93.5 + parent: 2 + - uid: 24519 + components: + - type: Transform + pos: 9.5,-94.5 + parent: 2 + - uid: 24520 + components: + - type: Transform + pos: -9.5,-95.5 + parent: 2 + - uid: 24521 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 24522 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + pos: 9.5,-88.5 + parent: 2 + - uid: 24524 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - uid: 24525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 24526 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 24527 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 24529 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 24530 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 24531 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 24532 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 24533 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 24534 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 24535 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 24538 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 24539 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 24540 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 24542 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 24544 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 24545 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 24546 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 24548 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 24552 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 24554 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 24558 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 24559 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 24560 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 24561 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 24562 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 24563 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 24564 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 24565 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 24566 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 24567 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 24568 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 24569 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 24570 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 24571 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 24572 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 24573 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 24574 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 24575 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 24576 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 24577 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 24578 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 24581 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 24582 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 24583 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 24584 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 24585 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 24586 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 24587 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 24588 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 24589 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 24590 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 24591 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 24592 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 24593 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 24594 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 24595 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 24596 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 24597 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 24598 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 24599 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 24600 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 24601 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 24602 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 24603 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 24604 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 24605 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 24606 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 24607 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 24608 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 24609 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 24610 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 24611 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 + - uid: 24612 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 24613 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 24614 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 24615 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 24616 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 24617 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 24618 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 24619 + components: + - type: Transform + pos: -47.5,24.5 + parent: 2 + - uid: 24620 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 24621 + components: + - type: Transform + pos: -48.5,25.5 + parent: 2 + - uid: 24622 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 24623 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 + - uid: 24624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + pos: 30.5,-83.5 + parent: 2 + - uid: 24626 + components: + - type: Transform + pos: -80.5,11.5 + parent: 2 + - uid: 24627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,7.5 + parent: 2 + - uid: 24628 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 24629 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 24630 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 24631 + components: + - type: Transform + pos: 34.5,-84.5 + parent: 2 + - uid: 24632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-3.5 + parent: 2 + - uid: 24633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-2.5 + parent: 2 + - uid: 24634 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 24635 + components: + - type: Transform + pos: -79.5,11.5 + parent: 2 + - uid: 24636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,11.5 + parent: 2 + - uid: 24637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,7.5 + parent: 2 + - uid: 24638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,7.5 + parent: 2 + - uid: 24639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-6.5 + parent: 2 + - uid: 24640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-6.5 + parent: 2 + - uid: 24641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,7.5 + parent: 2 + - uid: 24642 + components: + - type: Transform + pos: -65.5,-0.5 + parent: 2 + - uid: 24643 + components: + - type: Transform + pos: -65.5,-1.5 + parent: 2 + - uid: 24644 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 24645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-6.5 + parent: 2 + - uid: 24646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-5.5 + parent: 2 + - uid: 24647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-3.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-2.5 + parent: 2 + - uid: 24649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,8.5 + parent: 2 + - uid: 24650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-6.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 24652 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 24653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,7.5 + parent: 2 + - uid: 24654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,10.5 + parent: 2 + - uid: 24655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-2.5 + parent: 2 + - uid: 24656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,7.5 + parent: 2 + - uid: 24657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-6.5 + parent: 2 + - uid: 24658 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 24659 + components: + - type: Transform + pos: 30.5,-92.5 + parent: 2 + - uid: 24660 + components: + - type: Transform + pos: 26.5,-92.5 + parent: 2 + - uid: 24661 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 24662 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 24663 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 24664 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 24665 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 24666 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 24667 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 24668 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 24669 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 24670 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 24671 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 24672 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 24673 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 24674 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 24675 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 24676 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 24677 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 24679 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 24680 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 24681 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 24682 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 24683 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 24684 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 24685 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 24686 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 24687 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 24688 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 24689 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 24690 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 24691 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 24692 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 24693 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 24694 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 24696 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 24697 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 24698 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 24705 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 24707 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 24708 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 24709 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 24710 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 24711 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 24712 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 24713 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 24714 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 24715 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 24716 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 24718 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 24719 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 24721 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 24722 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 24723 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 24724 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 24725 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 24726 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 24727 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: -76.5,-12.5 + parent: 2 + - uid: 24730 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 24731 + components: + - type: Transform + pos: -78.5,-12.5 + parent: 2 + - uid: 24732 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 24733 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 24734 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 24735 + components: + - type: Transform + pos: -77.5,-16.5 + parent: 2 + - uid: 24736 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 24737 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 24738 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 24739 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 24740 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 24741 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 24742 + components: + - type: Transform + pos: -78.5,-16.5 + parent: 2 + - uid: 24743 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 24744 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 24745 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 24746 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 24747 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 24748 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 24750 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 24751 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 24752 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - uid: 24753 + components: + - type: Transform + pos: -58.5,19.5 + parent: 2 + - uid: 24754 + components: + - type: Transform + pos: -59.5,19.5 + parent: 2 + - uid: 24755 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 24756 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 24757 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 24758 + components: + - type: Transform + pos: -49.5,-19.5 + parent: 2 + - uid: 24759 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 24760 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 24762 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 24763 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 24764 + components: + - type: Transform + pos: -62.5,16.5 + parent: 2 + - uid: 24765 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 24766 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 24767 + components: + - type: Transform + pos: -63.5,15.5 + parent: 2 + - uid: 24768 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + pos: -60.5,18.5 + parent: 2 + - uid: 24770 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + pos: -77.5,11.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - uid: 24776 + components: + - type: Transform + pos: -74.5,11.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + pos: -73.5,11.5 + parent: 2 + - uid: 24778 + components: + - type: Transform + pos: -72.5,11.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + pos: -71.5,11.5 + parent: 2 + - uid: 24780 + components: + - type: Transform + pos: -70.5,11.5 + parent: 2 + - uid: 24781 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 24782 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 24783 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 24784 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 24785 + components: + - type: Transform + pos: -68.5,19.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 24787 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 24788 + components: + - type: Transform + pos: -64.5,17.5 + parent: 2 + - uid: 24789 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 24790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-2.5 + parent: 2 + - uid: 24791 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 24792 + components: + - type: Transform + pos: -60.5,19.5 + parent: 2 + - uid: 24793 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 24794 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 24795 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 24796 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 24797 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 24798 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 24799 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 24802 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 24803 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 24804 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 24805 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 24806 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 24807 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 24809 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 24810 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - uid: 24811 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 24812 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 24813 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 24814 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 24815 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 24816 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 24817 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 + - uid: 24818 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 24819 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 24821 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 24823 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 24825 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 24826 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 24827 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 24828 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 24829 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - uid: 24830 + components: + - type: Transform + pos: 49.5,5.5 + parent: 2 + - uid: 24831 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 24833 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 24834 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 24835 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 24836 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 24837 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 24838 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 24839 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 24840 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 24841 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 24842 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 24843 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 24844 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 24845 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 2 + - uid: 24847 + components: + - type: Transform + pos: 45.5,-39.5 + parent: 2 + - uid: 24848 + components: + - type: Transform + pos: 42.5,-39.5 + parent: 2 + - uid: 24849 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 24850 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 24851 + components: + - type: Transform + pos: 66.5,24.5 + parent: 2 + - uid: 24852 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 24853 + components: + - type: Transform + pos: 66.5,22.5 + parent: 2 + - uid: 24854 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 24855 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 + - uid: 24856 + components: + - type: Transform + pos: 48.5,-38.5 + parent: 2 + - uid: 24857 + components: + - type: Transform + pos: 48.5,-39.5 + parent: 2 + - uid: 24858 + components: + - type: Transform + pos: 42.5,-40.5 + parent: 2 + - uid: 24859 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 24860 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 2 + - uid: 24861 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 2 + - uid: 24862 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - uid: 24863 + components: + - type: Transform + pos: 45.5,-41.5 + parent: 2 + - uid: 24864 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 2 + - uid: 24865 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 2 + - uid: 24866 + components: + - type: Transform + pos: 42.5,-54.5 + parent: 2 + - uid: 24867 + components: + - type: Transform + pos: 42.5,-53.5 + parent: 2 + - uid: 24868 + components: + - type: Transform + pos: 42.5,-52.5 + parent: 2 + - uid: 24869 + components: + - type: Transform + pos: 42.5,-51.5 + parent: 2 + - uid: 24870 + components: + - type: Transform + pos: 42.5,-50.5 + parent: 2 + - uid: 24871 + components: + - type: Transform + pos: 43.5,-50.5 + parent: 2 + - uid: 24872 + components: + - type: Transform + pos: 44.5,-50.5 + parent: 2 + - uid: 24873 + components: + - type: Transform + pos: 45.5,-50.5 + parent: 2 + - uid: 24874 + components: + - type: Transform + pos: 46.5,-50.5 + parent: 2 + - uid: 24875 + components: + - type: Transform + pos: 47.5,-50.5 + parent: 2 + - uid: 24876 + components: + - type: Transform + pos: 48.5,-50.5 + parent: 2 + - uid: 24877 + components: + - type: Transform + pos: 48.5,-51.5 + parent: 2 + - uid: 24878 + components: + - type: Transform + pos: 48.5,-52.5 + parent: 2 + - uid: 24879 + components: + - type: Transform + pos: 48.5,-53.5 + parent: 2 + - uid: 24880 + components: + - type: Transform + pos: 48.5,-54.5 + parent: 2 + - uid: 24881 + components: + - type: Transform + pos: 48.5,-55.5 + parent: 2 + - uid: 24882 + components: + - type: Transform + pos: 48.5,-56.5 + parent: 2 + - uid: 24883 + components: + - type: Transform + pos: 48.5,-57.5 + parent: 2 + - uid: 24884 + components: + - type: Transform + pos: 48.5,-58.5 + parent: 2 + - uid: 24885 + components: + - type: Transform + pos: 48.5,-59.5 + parent: 2 + - uid: 24886 + components: + - type: Transform + pos: 48.5,-60.5 + parent: 2 + - uid: 24887 + components: + - type: Transform + pos: 48.5,-61.5 + parent: 2 + - uid: 24888 + components: + - type: Transform + pos: 47.5,-61.5 + parent: 2 + - uid: 24889 + components: + - type: Transform + pos: 46.5,-61.5 + parent: 2 + - uid: 24890 + components: + - type: Transform + pos: 45.5,-61.5 + parent: 2 + - uid: 24891 + components: + - type: Transform + pos: 44.5,-61.5 + parent: 2 + - uid: 24892 + components: + - type: Transform + pos: 43.5,-61.5 + parent: 2 + - uid: 24893 + components: + - type: Transform + pos: 42.5,-61.5 + parent: 2 + - uid: 24894 + components: + - type: Transform + pos: 41.5,-61.5 + parent: 2 + - uid: 24895 + components: + - type: Transform + pos: 40.5,-61.5 + parent: 2 + - uid: 24896 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 2 + - uid: 24897 + components: + - type: Transform + pos: 38.5,-61.5 + parent: 2 + - uid: 24898 + components: + - type: Transform + pos: 37.5,-61.5 + parent: 2 + - uid: 24899 + components: + - type: Transform + pos: 37.5,-60.5 + parent: 2 + - uid: 24900 + components: + - type: Transform + pos: 37.5,-59.5 + parent: 2 + - uid: 24901 + components: + - type: Transform + pos: 37.5,-58.5 + parent: 2 + - uid: 24902 + components: + - type: Transform + pos: 37.5,-57.5 + parent: 2 + - uid: 24903 + components: + - type: Transform + pos: 37.5,-56.5 + parent: 2 + - uid: 24904 + components: + - type: Transform + pos: 36.5,-56.5 + parent: 2 + - uid: 24905 + components: + - type: Transform + pos: 35.5,-56.5 + parent: 2 + - uid: 24906 + components: + - type: Transform + pos: 34.5,-56.5 + parent: 2 + - uid: 24907 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 24908 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 2 + - uid: 24909 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 2 + - uid: 24910 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 2 + - uid: 24911 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 2 + - uid: 24913 + components: + - type: Transform + pos: 33.5,-50.5 + parent: 2 + - uid: 24914 + components: + - type: Transform + pos: 34.5,-50.5 + parent: 2 + - uid: 24915 + components: + - type: Transform + pos: 35.5,-50.5 + parent: 2 + - uid: 24916 + components: + - type: Transform + pos: 36.5,-50.5 + parent: 2 + - uid: 24917 + components: + - type: Transform + pos: 37.5,-50.5 + parent: 2 + - uid: 24918 + components: + - type: Transform + pos: 38.5,-50.5 + parent: 2 + - uid: 24919 + components: + - type: Transform + pos: 38.5,-51.5 + parent: 2 + - uid: 24920 + components: + - type: Transform + pos: 38.5,-52.5 + parent: 2 + - uid: 24921 + components: + - type: Transform + pos: 38.5,-53.5 + parent: 2 + - uid: 24922 + components: + - type: Transform + pos: 38.5,-54.5 + parent: 2 + - uid: 24923 + components: + - type: Transform + pos: 41.5,-54.5 + parent: 2 + - uid: 24924 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 + - uid: 24925 + components: + - type: Transform + pos: 64.5,-53.5 + parent: 2 + - uid: 24926 + components: + - type: Transform + pos: 64.5,-52.5 + parent: 2 + - uid: 24927 + components: + - type: Transform + pos: 64.5,-51.5 + parent: 2 + - uid: 24928 + components: + - type: Transform + pos: 64.5,-50.5 + parent: 2 + - uid: 24929 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 24930 + components: + - type: Transform + pos: 58.5,-35.5 + parent: 2 + - uid: 24931 + components: + - type: Transform + pos: 58.5,-34.5 + parent: 2 + - uid: 24932 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 2 + - uid: 24933 + components: + - type: Transform + pos: 58.5,-32.5 + parent: 2 + - uid: 24934 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 24935 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 2 + - uid: 24936 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 24937 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 24938 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 24939 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 + - uid: 24940 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 + - uid: 24941 + components: + - type: Transform + pos: 51.5,-30.5 + parent: 2 + - uid: 24942 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 24943 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 24944 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 + - uid: 24945 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 24946 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - uid: 24947 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - uid: 24948 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 24949 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 24950 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 24951 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 2 + - uid: 24952 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 24953 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 24954 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 24955 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 24956 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 24957 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 24958 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 24959 + components: + - type: Transform + pos: 64.5,-18.5 + parent: 2 + - uid: 24960 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 24961 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 2 + - uid: 24962 + components: + - type: Transform + pos: 65.5,-20.5 + parent: 2 + - uid: 24963 + components: + - type: Transform + pos: 65.5,-16.5 + parent: 2 + - uid: 24964 + components: + - type: Transform + pos: 67.5,-16.5 + parent: 2 + - uid: 24965 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 + - uid: 24966 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 24967 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 2 + - uid: 24968 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 24969 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 2 + - uid: 24970 + components: + - type: Transform + pos: 67.5,-20.5 + parent: 2 + - uid: 24971 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 2 + - uid: 24972 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 24973 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 2 + - uid: 24974 + components: + - type: Transform + pos: 74.5,-15.5 + parent: 2 + - uid: 24975 + components: + - type: Transform + pos: 75.5,-15.5 + parent: 2 + - uid: 24976 + components: + - type: Transform + pos: 75.5,-16.5 + parent: 2 + - uid: 24977 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 24978 + components: + - type: Transform + pos: 75.5,-18.5 + parent: 2 + - uid: 24979 + components: + - type: Transform + pos: 75.5,-19.5 + parent: 2 + - uid: 24980 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 + - uid: 24981 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 2 + - uid: 24982 + components: + - type: Transform + pos: 77.5,-22.5 + parent: 2 + - uid: 24983 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 2 + - uid: 24984 + components: + - type: Transform + pos: 75.5,-22.5 + parent: 2 + - uid: 24985 + components: + - type: Transform + pos: 78.5,-22.5 + parent: 2 + - uid: 24986 + components: + - type: Transform + pos: 79.5,-22.5 + parent: 2 + - uid: 24987 + components: + - type: Transform + pos: 80.5,-22.5 + parent: 2 + - uid: 24988 + components: + - type: Transform + pos: 81.5,-22.5 + parent: 2 + - uid: 24989 + components: + - type: Transform + pos: 82.5,-22.5 + parent: 2 + - uid: 24990 + components: + - type: Transform + pos: 83.5,-22.5 + parent: 2 + - uid: 24991 + components: + - type: Transform + pos: 83.5,-24.5 + parent: 2 + - uid: 24992 + components: + - type: Transform + pos: 83.5,-25.5 + parent: 2 + - uid: 24993 + components: + - type: Transform + pos: 83.5,-26.5 + parent: 2 + - uid: 24994 + components: + - type: Transform + pos: 83.5,-27.5 + parent: 2 + - uid: 24995 + components: + - type: Transform + pos: 83.5,-28.5 + parent: 2 + - uid: 24996 + components: + - type: Transform + pos: 83.5,-29.5 + parent: 2 + - uid: 24997 + components: + - type: Transform + pos: 83.5,-30.5 + parent: 2 + - uid: 24998 + components: + - type: Transform + pos: 83.5,-31.5 + parent: 2 + - uid: 24999 + components: + - type: Transform + pos: 82.5,-31.5 + parent: 2 + - uid: 25000 + components: + - type: Transform + pos: 81.5,-31.5 + parent: 2 + - uid: 25001 + components: + - type: Transform + pos: 80.5,-31.5 + parent: 2 + - uid: 25002 + components: + - type: Transform + pos: 79.5,-31.5 + parent: 2 + - uid: 25003 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 25004 + components: + - type: Transform + pos: 77.5,-31.5 + parent: 2 + - uid: 25005 + components: + - type: Transform + pos: 76.5,-31.5 + parent: 2 + - uid: 25006 + components: + - type: Transform + pos: 75.5,-32.5 + parent: 2 + - uid: 25007 + components: + - type: Transform + pos: 75.5,-31.5 + parent: 2 + - uid: 25008 + components: + - type: Transform + pos: 75.5,-30.5 + parent: 2 + - uid: 25009 + components: + - type: Transform + pos: 75.5,-29.5 + parent: 2 + - uid: 25010 + components: + - type: Transform + pos: 75.5,-28.5 + parent: 2 + - uid: 25011 + components: + - type: Transform + pos: 75.5,-27.5 + parent: 2 + - uid: 25012 + components: + - type: Transform + pos: 78.5,-27.5 + parent: 2 + - uid: 25013 + components: + - type: Transform + pos: 81.5,-27.5 + parent: 2 + - uid: 25014 + components: + - type: Transform + pos: 79.5,-32.5 + parent: 2 + - uid: 25015 + components: + - type: Transform + pos: 79.5,-33.5 + parent: 2 + - uid: 25016 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 2 + - uid: 25017 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 2 + - uid: 25018 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 25019 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - uid: 25020 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 25021 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 25022 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - uid: 25023 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - uid: 25024 + components: + - type: Transform + pos: 80.5,-42.5 + parent: 2 + - uid: 25025 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - uid: 25026 + components: + - type: Transform + pos: 81.5,-43.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + pos: 81.5,-44.5 + parent: 2 + - uid: 25028 + components: + - type: Transform + pos: 81.5,-45.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + pos: 81.5,-46.5 + parent: 2 + - uid: 25030 + components: + - type: Transform + pos: 81.5,-47.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + pos: 81.5,-48.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + pos: 81.5,-49.5 + parent: 2 + - uid: 25033 + components: + - type: Transform + pos: 81.5,-50.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + pos: 81.5,-51.5 + parent: 2 + - uid: 25035 + components: + - type: Transform + pos: 81.5,-52.5 + parent: 2 + - uid: 25036 + components: + - type: Transform + pos: 81.5,-53.5 + parent: 2 + - uid: 25037 + components: + - type: Transform + pos: 80.5,-55.5 + parent: 2 + - uid: 25038 + components: + - type: Transform + pos: 81.5,-54.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + pos: 79.5,-55.5 + parent: 2 + - uid: 25040 + components: + - type: Transform + pos: 78.5,-55.5 + parent: 2 + - uid: 25041 + components: + - type: Transform + pos: 77.5,-55.5 + parent: 2 + - uid: 25042 + components: + - type: Transform + pos: 76.5,-55.5 + parent: 2 + - uid: 25043 + components: + - type: Transform + pos: 75.5,-55.5 + parent: 2 + - uid: 25044 + components: + - type: Transform + pos: 80.5,-48.5 + parent: 2 + - uid: 25045 + components: + - type: Transform + pos: 79.5,-48.5 + parent: 2 + - uid: 25046 + components: + - type: Transform + pos: 78.5,-48.5 + parent: 2 + - uid: 25047 + components: + - type: Transform + pos: 74.5,-48.5 + parent: 2 + - uid: 25048 + components: + - type: Transform + pos: 73.5,-48.5 + parent: 2 + - uid: 25049 + components: + - type: Transform + pos: 69.5,-48.5 + parent: 2 + - uid: 25050 + components: + - type: Transform + pos: 75.5,-56.5 + parent: 2 + - uid: 25051 + components: + - type: Transform + pos: 75.5,-57.5 + parent: 2 + - uid: 25052 + components: + - type: Transform + pos: 75.5,-58.5 + parent: 2 + - uid: 25053 + components: + - type: Transform + pos: 74.5,-58.5 + parent: 2 + - uid: 25054 + components: + - type: Transform + pos: 73.5,-58.5 + parent: 2 + - uid: 25055 + components: + - type: Transform + pos: 72.5,-58.5 + parent: 2 + - uid: 25056 + components: + - type: Transform + pos: 71.5,-58.5 + parent: 2 + - uid: 25057 + components: + - type: Transform + pos: 71.5,-57.5 + parent: 2 + - uid: 25058 + components: + - type: Transform + pos: 71.5,-56.5 + parent: 2 + - uid: 25059 + components: + - type: Transform + pos: 71.5,-55.5 + parent: 2 + - uid: 25060 + components: + - type: Transform + pos: 70.5,-54.5 + parent: 2 + - uid: 25061 + components: + - type: Transform + pos: 69.5,-54.5 + parent: 2 + - uid: 25062 + components: + - type: Transform + pos: 68.5,-54.5 + parent: 2 + - uid: 25063 + components: + - type: Transform + pos: 67.5,-54.5 + parent: 2 + - uid: 25064 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 25065 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 + - uid: 25066 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 2 + - uid: 25067 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - uid: 25068 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 2 + - uid: 25069 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 25070 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 25071 + components: + - type: Transform + pos: 55.5,-56.5 + parent: 2 + - uid: 25072 + components: + - type: Transform + pos: 54.5,-56.5 + parent: 2 + - uid: 25073 + components: + - type: Transform + pos: 50.5,-58.5 + parent: 2 + - uid: 25074 + components: + - type: Transform + pos: 50.5,-57.5 + parent: 2 + - uid: 25075 + components: + - type: Transform + pos: 50.5,-56.5 + parent: 2 + - uid: 25076 + components: + - type: Transform + pos: 60.5,-56.5 + parent: 2 + - uid: 25077 + components: + - type: Transform + pos: 59.5,-56.5 + parent: 2 + - uid: 25078 + components: + - type: Transform + pos: 64.5,-56.5 + parent: 2 + - uid: 25079 + components: + - type: Transform + pos: 64.5,-49.5 + parent: 2 + - uid: 25080 + components: + - type: Transform + pos: 64.5,-48.5 + parent: 2 + - uid: 25081 + components: + - type: Transform + pos: 64.5,-47.5 + parent: 2 + - uid: 25082 + components: + - type: Transform + pos: 64.5,-46.5 + parent: 2 + - uid: 25083 + components: + - type: Transform + pos: 64.5,-45.5 + parent: 2 + - uid: 25084 + components: + - type: Transform + pos: 64.5,-44.5 + parent: 2 + - uid: 25085 + components: + - type: Transform + pos: 64.5,-43.5 + parent: 2 + - uid: 25086 + components: + - type: Transform + pos: 64.5,-42.5 + parent: 2 + - uid: 25087 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - uid: 25088 + components: + - type: Transform + pos: 58.5,-37.5 + parent: 2 + - uid: 25089 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 + - uid: 25090 + components: + - type: Transform + pos: 71.5,13.5 + parent: 2 + - uid: 25091 + components: + - type: Transform + pos: 70.5,-42.5 + parent: 2 + - uid: 25092 + components: + - type: Transform + pos: 73.5,-42.5 + parent: 2 + - uid: 25093 + components: + - type: Transform + pos: 74.5,-42.5 + parent: 2 + - uid: 25094 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 25095 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - uid: 25096 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 + - uid: 25097 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 2 + - uid: 25098 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 2 + - uid: 25099 + components: + - type: Transform + pos: 75.5,-38.5 + parent: 2 + - uid: 25100 + components: + - type: Transform + pos: 74.5,-38.5 + parent: 2 + - uid: 25101 + components: + - type: Transform + pos: 73.5,-38.5 + parent: 2 + - uid: 25102 + components: + - type: Transform + pos: 72.5,-38.5 + parent: 2 + - uid: 25103 + components: + - type: Transform + pos: 71.5,-38.5 + parent: 2 + - uid: 25104 + components: + - type: Transform + pos: 70.5,-38.5 + parent: 2 + - uid: 25105 + components: + - type: Transform + pos: 71.5,15.5 + parent: 2 + - uid: 25106 + components: + - type: Transform + pos: 75.5,-25.5 + parent: 2 + - uid: 25107 + components: + - type: Transform + pos: 75.5,-26.5 + parent: 2 + - uid: 25108 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - uid: 25109 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - uid: 25110 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 25111 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 25112 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 25113 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 25114 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 25115 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 25116 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 25117 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 25118 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 25119 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 25120 + components: + - type: Transform + pos: 76.5,12.5 + parent: 2 + - uid: 25121 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 25122 + components: + - type: Transform + pos: 76.5,10.5 + parent: 2 + - uid: 25123 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 25124 + components: + - type: Transform + pos: 76.5,8.5 + parent: 2 + - uid: 25125 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 25126 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 25127 + components: + - type: Transform + pos: 75.5,6.5 + parent: 2 + - uid: 25128 + components: + - type: Transform + pos: -74.5,-16.5 + parent: 2 + - uid: 25129 + components: + - type: Transform + pos: -74.5,-17.5 + parent: 2 + - uid: 25130 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 2 + - uid: 25131 + components: + - type: Transform + pos: -69.5,-17.5 + parent: 2 + - uid: 25132 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 25133 + components: + - type: Transform + pos: 44.5,-41.5 + parent: 2 + - uid: 25134 + components: + - type: Transform + pos: 44.5,-37.5 + parent: 2 + - uid: 25135 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 2 + - uid: 25136 + components: + - type: Transform + pos: 64.5,-54.5 + parent: 2 + - uid: 25137 + components: + - type: Transform + pos: 65.5,-54.5 + parent: 2 + - uid: 25138 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 25139 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 25140 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 25141 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 25142 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 25144 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 25145 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 2 + - uid: 25146 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 25147 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 25148 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 25149 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 25150 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 25151 + components: + - type: Transform + pos: 86.5,-43.5 + parent: 2 + - uid: 25152 + components: + - type: Transform + pos: 85.5,-43.5 + parent: 2 + - uid: 25153 + components: + - type: Transform + pos: 84.5,-43.5 + parent: 2 + - uid: 25154 + components: + - type: Transform + pos: 83.5,-43.5 + parent: 2 + - uid: 25155 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 25156 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 25157 + components: + - type: Transform + pos: 83.5,-46.5 + parent: 2 + - uid: 25158 + components: + - type: Transform + pos: 87.5,-46.5 + parent: 2 + - uid: 25159 + components: + - type: Transform + pos: 86.5,-46.5 + parent: 2 + - uid: 25160 + components: + - type: Transform + pos: 87.5,-49.5 + parent: 2 + - uid: 25161 + components: + - type: Transform + pos: 83.5,-48.5 + parent: 2 + - uid: 25162 + components: + - type: Transform + pos: 83.5,-61.5 + parent: 2 + - uid: 25163 + components: + - type: Transform + pos: 79.5,-61.5 + parent: 2 + - uid: 25164 + components: + - type: Transform + pos: 79.5,-62.5 + parent: 2 + - uid: 25165 + components: + - type: Transform + pos: 79.5,-63.5 + parent: 2 + - uid: 25166 + components: + - type: Transform + pos: 79.5,-64.5 + parent: 2 + - uid: 25167 + components: + - type: Transform + pos: 83.5,-62.5 + parent: 2 + - uid: 25168 + components: + - type: Transform + pos: 83.5,-63.5 + parent: 2 + - uid: 25169 + components: + - type: Transform + pos: 83.5,-64.5 + parent: 2 + - uid: 25170 + components: + - type: Transform + pos: 79.5,-65.5 + parent: 2 + - uid: 25171 + components: + - type: Transform + pos: 80.5,-68.5 + parent: 2 + - uid: 25172 + components: + - type: Transform + pos: 79.5,-66.5 + parent: 2 + - uid: 25173 + components: + - type: Transform + pos: 80.5,-67.5 + parent: 2 + - uid: 25174 + components: + - type: Transform + pos: 80.5,-62.5 + parent: 2 + - uid: 25175 + components: + - type: Transform + pos: 82.5,-62.5 + parent: 2 + - uid: 25176 + components: + - type: Transform + pos: 83.5,-65.5 + parent: 2 + - uid: 25177 + components: + - type: Transform + pos: 80.5,-66.5 + parent: 2 + - uid: 25178 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 25179 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 + - uid: 25180 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 25181 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 25182 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 25183 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 25184 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 25185 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 + - uid: 25186 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 25187 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 25188 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 25189 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 25190 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 25191 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 25192 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 25193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 + - uid: 25194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 2 + - uid: 25195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 25196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-57.5 + parent: 2 + - uid: 25197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 2 + - uid: 25198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-56.5 + parent: 2 + - uid: 25199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-39.5 + parent: 2 + - uid: 25200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-39.5 + parent: 2 + - uid: 25201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-39.5 + parent: 2 + - uid: 25202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 2 + - uid: 25203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-39.5 + parent: 2 + - uid: 25204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-52.5 + parent: 2 + - uid: 25205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-51.5 + parent: 2 + - uid: 25206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-47.5 + parent: 2 + - uid: 25207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 2 + - uid: 25208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-42.5 + parent: 2 + - uid: 25209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-41.5 + parent: 2 + - uid: 25210 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 25211 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 25212 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 25213 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 25214 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 25215 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 25216 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 25217 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 + - uid: 25218 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 25219 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 25220 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 25221 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 25222 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 2 + - uid: 25223 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 25224 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 25225 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 25226 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 25227 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 25228 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 25229 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 25230 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 25231 + components: + - type: Transform + pos: 93.5,-24.5 + parent: 2 + - uid: 25232 + components: + - type: Transform + pos: 92.5,-24.5 + parent: 2 + - uid: 25233 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 25234 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 25235 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 25236 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 25237 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 25238 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 25239 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 25240 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 25241 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 25242 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 25243 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 25244 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 25245 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 25246 + components: + - type: Transform + pos: 69.5,-38.5 + parent: 2 + - uid: 25247 + components: + - type: Transform + pos: 68.5,-38.5 + parent: 2 + - uid: 25248 + components: + - type: Transform + pos: 69.5,-42.5 + parent: 2 + - uid: 25249 + components: + - type: Transform + pos: 68.5,-42.5 + parent: 2 + - uid: 25250 + components: + - type: Transform + pos: 87.5,-39.5 + parent: 2 + - uid: 25251 + components: + - type: Transform + pos: 89.5,-32.5 + parent: 2 + - uid: 25252 + components: + - type: Transform + pos: 90.5,-32.5 + parent: 2 + - uid: 25253 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 2 + - uid: 25254 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 25255 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 25256 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 25257 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 25258 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 25259 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 25260 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 + - uid: 25261 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 25262 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 25263 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 25264 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 25265 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 25266 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 25267 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 25268 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 25269 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 25270 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 25271 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 25272 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 25273 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 25274 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 25275 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 25276 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 25277 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 25278 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 25279 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 25280 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 25281 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 25282 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 25283 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 25284 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 25285 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 25286 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 25287 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 25288 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 25289 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - uid: 25290 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 25291 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - uid: 25292 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 25293 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 2 + - uid: 25294 + components: + - type: Transform + pos: 91.5,-32.5 + parent: 2 + - uid: 25295 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - uid: 25296 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 25297 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 25298 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - uid: 25299 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 25300 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 25301 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 25302 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 25303 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 25304 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 25305 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 25306 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 25307 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 25308 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 25309 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 25310 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 25311 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 25312 + components: + - type: Transform + pos: 91.5,-31.5 + parent: 2 + - uid: 25313 + components: + - type: Transform + pos: 92.5,-31.5 + parent: 2 + - uid: 25314 + components: + - type: Transform + pos: 93.5,-31.5 + parent: 2 + - uid: 25315 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 25316 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 + - uid: 25317 + components: + - type: Transform + pos: -14.5,-64.5 + parent: 2 + - uid: 25318 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - uid: 25319 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - uid: 25320 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - uid: 25321 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 25322 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 25323 + components: + - type: Transform + pos: -14.5,-67.5 + parent: 2 + - uid: 25324 + components: + - type: Transform + pos: 87.5,-22.5 + parent: 2 + - uid: 25325 + components: + - type: Transform + pos: 87.5,-21.5 + parent: 2 + - uid: 25326 + components: + - type: Transform + pos: 87.5,-20.5 + parent: 2 + - uid: 25327 + components: + - type: Transform + pos: 86.5,-20.5 + parent: 2 + - uid: 25328 + components: + - type: Transform + pos: 82.5,-20.5 + parent: 2 + - uid: 25329 + components: + - type: Transform + pos: 85.5,-20.5 + parent: 2 + - uid: 25330 + components: + - type: Transform + pos: 84.5,-20.5 + parent: 2 + - uid: 25331 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 25332 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 25333 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 25334 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 25335 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 25336 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 25337 + components: + - type: Transform + pos: 83.5,-20.5 + parent: 2 + - uid: 25338 + components: + - type: Transform + pos: 82.5,-18.5 + parent: 2 + - uid: 25339 + components: + - type: Transform + pos: -36.5,-59.5 + parent: 2 + - uid: 25340 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 25341 + components: + - type: Transform + pos: -38.5,-59.5 + parent: 2 + - uid: 25342 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 25343 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 25344 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 25345 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 25346 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 25347 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 25348 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 25349 + components: + - type: Transform + pos: -40.5,-60.5 + parent: 2 + - uid: 25350 + components: + - type: Transform + pos: -41.5,-60.5 + parent: 2 + - uid: 25351 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 25352 + components: + - type: Transform + pos: 81.5,-18.5 + parent: 2 + - uid: 25353 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 25354 + components: + - type: Transform + pos: 80.5,-18.5 + parent: 2 + - uid: 25355 + components: + - type: Transform + pos: 79.5,-18.5 + parent: 2 + - uid: 25356 + components: + - type: Transform + pos: 78.5,-18.5 + parent: 2 + - uid: 25357 + components: + - type: Transform + pos: 77.5,-18.5 + parent: 2 + - uid: 25358 + components: + - type: Transform + pos: 77.5,-17.5 + parent: 2 + - uid: 25359 + components: + - type: Transform + pos: 77.5,-16.5 + parent: 2 + - uid: 25360 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 2 + - uid: 25361 + components: + - type: Transform + pos: 76.5,-0.5 + parent: 2 + - uid: 25362 + components: + - type: Transform + pos: 75.5,-0.5 + parent: 2 + - uid: 25363 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 2 + - uid: 25364 + components: + - type: Transform + pos: -27.5,-64.5 + parent: 2 + - uid: 25365 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 25366 + components: + - type: Transform + pos: -27.5,-66.5 + parent: 2 + - uid: 25367 + components: + - type: Transform + pos: -27.5,-67.5 + parent: 2 + - uid: 25368 + components: + - type: Transform + pos: -27.5,-68.5 + parent: 2 + - uid: 25369 + components: + - type: Transform + pos: -27.5,-69.5 + parent: 2 + - uid: 25370 + components: + - type: Transform + pos: -27.5,-70.5 + parent: 2 + - uid: 25371 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 2 + - uid: 25372 + components: + - type: Transform + pos: -27.5,-72.5 + parent: 2 + - uid: 25373 + components: + - type: Transform + pos: -26.5,-72.5 + parent: 2 + - uid: 25374 + components: + - type: Transform + pos: -25.5,-72.5 + parent: 2 + - uid: 25375 + components: + - type: Transform + pos: -24.5,-72.5 + parent: 2 + - uid: 25376 + components: + - type: Transform + pos: -23.5,-72.5 + parent: 2 + - uid: 25377 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 2 + - uid: 25378 + components: + - type: Transform + pos: -21.5,-72.5 + parent: 2 + - uid: 25379 + components: + - type: Transform + pos: -21.5,-71.5 + parent: 2 + - uid: 25380 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 2 + - uid: 25381 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 + - uid: 25382 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 25383 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 25384 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 25385 + components: + - type: Transform + pos: -26.5,-63.5 + parent: 2 + - uid: 25386 + components: + - type: Transform + pos: -25.5,-63.5 + parent: 2 + - uid: 25387 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 25388 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - uid: 25389 + components: + - type: Transform + pos: -22.5,-63.5 + parent: 2 + - uid: 25390 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 2 + - uid: 25391 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 2 + - uid: 25392 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 2 + - uid: 25393 + components: + - type: Transform + pos: 87.5,-43.5 + parent: 2 + - uid: 25394 + components: + - type: Transform + pos: 87.5,-50.5 + parent: 2 + - uid: 25395 + components: + - type: Transform + pos: 87.5,-54.5 + parent: 2 + - uid: 25396 + components: + - type: Transform + pos: 83.5,-60.5 + parent: 2 + - uid: 25397 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 2 + - uid: 25398 + components: + - type: Transform + pos: 84.5,-60.5 + parent: 2 + - uid: 25399 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 + - uid: 25400 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 2 + - uid: 25401 + components: + - type: Transform + pos: 85.5,-60.5 + parent: 2 + - uid: 25402 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 25403 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 2 + - uid: 25404 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 25405 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 25406 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 25407 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 25408 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 25409 + components: + - type: Transform + pos: 86.5,-60.5 + parent: 2 + - uid: 25410 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 25411 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 25412 + components: + - type: Transform + pos: 10.5,-64.5 + parent: 2 + - uid: 25413 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 + - uid: 25414 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - uid: 25415 + components: + - type: Transform + pos: 87.5,-60.5 + parent: 2 + - uid: 25416 + components: + - type: Transform + pos: 87.5,-59.5 + parent: 2 + - uid: 25417 + components: + - type: Transform + pos: 87.5,-58.5 + parent: 2 + - uid: 25418 + components: + - type: Transform + pos: 87.5,-56.5 + parent: 2 + - uid: 25419 + components: + - type: Transform + pos: 87.5,-55.5 + parent: 2 + - uid: 25420 + components: + - type: Transform + pos: 89.5,-56.5 + parent: 2 + - uid: 25421 + components: + - type: Transform + pos: 88.5,-56.5 + parent: 2 + - uid: 25422 + components: + - type: Transform + pos: 89.5,-58.5 + parent: 2 + - uid: 25423 + components: + - type: Transform + pos: 88.5,-58.5 + parent: 2 + - uid: 25424 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - uid: 25425 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 25426 + components: + - type: Transform + pos: 10.5,-75.5 + parent: 2 + - uid: 25427 + components: + - type: Transform + pos: 10.5,-76.5 + parent: 2 + - uid: 25428 + components: + - type: Transform + pos: 37.5,-70.5 + parent: 2 + - uid: 25429 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 25430 + components: + - type: Transform + pos: 32.5,-68.5 + parent: 2 + - uid: 25431 + components: + - type: Transform + pos: 37.5,-71.5 + parent: 2 + - uid: 25432 + components: + - type: Transform + pos: -3.5,-84.5 + parent: 2 + - uid: 25433 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 25434 + components: + - type: Transform + pos: 39.5,-72.5 + parent: 2 + - uid: 25435 + components: + - type: Transform + pos: 39.5,-73.5 + parent: 2 + - uid: 25436 + components: + - type: Transform + pos: 40.5,-73.5 + parent: 2 + - uid: 25437 + components: + - type: Transform + pos: 40.5,-74.5 + parent: 2 + - uid: 25438 + components: + - type: Transform + pos: 45.5,-74.5 + parent: 2 + - uid: 25439 + components: + - type: Transform + pos: 41.5,-74.5 + parent: 2 + - uid: 25440 + components: + - type: Transform + pos: 46.5,-74.5 + parent: 2 + - uid: 25441 + components: + - type: Transform + pos: 48.5,-69.5 + parent: 2 + - uid: 25442 + components: + - type: Transform + pos: 46.5,-73.5 + parent: 2 + - uid: 25443 + components: + - type: Transform + pos: 47.5,-73.5 + parent: 2 + - uid: 25444 + components: + - type: Transform + pos: 48.5,-70.5 + parent: 2 + - uid: 25445 + components: + - type: Transform + pos: 48.5,-71.5 + parent: 2 + - uid: 25446 + components: + - type: Transform + pos: 48.5,-73.5 + parent: 2 + - uid: 25447 + components: + - type: Transform + pos: 48.5,-72.5 + parent: 2 + - uid: 25448 + components: + - type: Transform + pos: 48.5,-68.5 + parent: 2 + - uid: 25449 + components: + - type: Transform + pos: 54.5,-63.5 + parent: 2 + - uid: 25450 + components: + - type: Transform + pos: 64.5,-60.5 + parent: 2 + - uid: 25451 + components: + - type: Transform + pos: 59.5,-60.5 + parent: 2 + - uid: 25452 + components: + - type: Transform + pos: 60.5,-63.5 + parent: 2 + - uid: 25453 + components: + - type: Transform + pos: 64.5,-63.5 + parent: 2 + - uid: 25454 + components: + - type: Transform + pos: 64.5,-64.5 + parent: 2 + - uid: 25455 + components: + - type: Transform + pos: 64.5,-65.5 + parent: 2 + - uid: 25456 + components: + - type: Transform + pos: 64.5,-66.5 + parent: 2 + - uid: 25457 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 25458 + components: + - type: Transform + pos: 64.5,-67.5 + parent: 2 + - uid: 25459 + components: + - type: Transform + pos: 63.5,-67.5 + parent: 2 + - uid: 25460 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 25461 + components: + - type: Transform + pos: 63.5,-68.5 + parent: 2 + - uid: 25462 + components: + - type: Transform + pos: 63.5,-69.5 + parent: 2 + - uid: 25463 + components: + - type: Transform + pos: 62.5,-69.5 + parent: 2 + - uid: 25464 + components: + - type: Transform + pos: 66.5,-73.5 + parent: 2 + - uid: 25465 + components: + - type: Transform + pos: 66.5,-72.5 + parent: 2 + - uid: 25466 + components: + - type: Transform + pos: 66.5,-71.5 + parent: 2 + - uid: 25467 + components: + - type: Transform + pos: 66.5,-70.5 + parent: 2 + - uid: 25468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - uid: 25469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - uid: 25470 + components: + - type: Transform + pos: 67.5,-70.5 + parent: 2 + - uid: 25471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-76.5 + parent: 2 + - uid: 25472 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 25473 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 25474 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 25475 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 2 + - uid: 25476 + components: + - type: Transform + pos: 67.5,-69.5 + parent: 2 + - uid: 25477 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 25478 + components: + - type: Transform + pos: 87.5,-4.5 + parent: 2 + - uid: 25479 + components: + - type: Transform + pos: 87.5,-12.5 + parent: 2 + - uid: 25480 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 25481 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 + - uid: 25482 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 25483 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 25484 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 25485 + components: + - type: Transform + pos: 29.5,-55.5 + parent: 2 + - uid: 25486 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 25487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-57.5 + parent: 2 + - uid: 25488 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 + - uid: 25489 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 2 + - uid: 25490 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - uid: 25491 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 25492 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 25493 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 25494 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 25495 + components: + - type: Transform + pos: 29.5,-43.5 + parent: 2 + - uid: 25496 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 25497 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 25498 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 2 + - uid: 25499 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 25500 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 25501 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 25502 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 + - uid: 25503 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 2 + - uid: 25504 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 + - uid: 25505 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 + - uid: 25506 + components: + - type: Transform + pos: 27.5,-53.5 + parent: 2 + - uid: 25507 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - uid: 25508 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 25509 + components: + - type: Transform + pos: 28.5,-49.5 + parent: 2 + - uid: 25510 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 25511 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 25512 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 25513 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 25514 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 25515 + components: + - type: Transform + pos: 68.5,-69.5 + parent: 2 + - uid: 25516 + components: + - type: Transform + pos: 71.5,-69.5 + parent: 2 + - uid: 25517 + components: + - type: Transform + pos: 72.5,-69.5 + parent: 2 + - uid: 25518 + components: + - type: Transform + pos: 73.5,-69.5 + parent: 2 + - uid: 25519 + components: + - type: Transform + pos: 73.5,-68.5 + parent: 2 + - uid: 25520 + components: + - type: Transform + pos: 73.5,-67.5 + parent: 2 + - uid: 25521 + components: + - type: Transform + pos: 73.5,-66.5 + parent: 2 + - uid: 25522 + components: + - type: Transform + pos: 73.5,-65.5 + parent: 2 + - uid: 25523 + components: + - type: Transform + pos: 75.5,-65.5 + parent: 2 + - uid: 25524 + components: + - type: Transform + pos: 74.5,-65.5 + parent: 2 + - uid: 25525 + components: + - type: Transform + pos: 78.5,-65.5 + parent: 2 + - uid: 25526 + components: + - type: Transform + pos: 25.5,-87.5 + parent: 2 + - uid: 25527 + components: + - type: Transform + pos: 25.5,-88.5 + parent: 2 + - uid: 25528 + components: + - type: Transform + pos: 26.5,-88.5 + parent: 2 + - uid: 25529 + components: + - type: Transform + pos: 27.5,-88.5 + parent: 2 + - uid: 25530 + components: + - type: Transform + pos: 29.5,-88.5 + parent: 2 + - uid: 25531 + components: + - type: Transform + pos: 30.5,-88.5 + parent: 2 + - uid: 25532 + components: + - type: Transform + pos: 31.5,-88.5 + parent: 2 + - uid: 25533 + components: + - type: Transform + pos: 31.5,-87.5 + parent: 2 + - uid: 25534 + components: + - type: Transform + pos: 32.5,-87.5 + parent: 2 + - uid: 25535 + components: + - type: Transform + pos: 33.5,-87.5 + parent: 2 + - uid: 25536 + components: + - type: Transform + pos: 34.5,-87.5 + parent: 2 + - uid: 25537 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 25538 + components: + - type: Transform + pos: 64.5,-58.5 + parent: 2 + - uid: 25539 + components: + - type: Transform + pos: 22.5,-88.5 + parent: 2 + - uid: 25540 + components: + - type: Transform + pos: 22.5,-87.5 + parent: 2 + - uid: 25541 + components: + - type: Transform + pos: 23.5,-87.5 + parent: 2 + - uid: 25542 + components: + - type: Transform + pos: 24.5,-87.5 + parent: 2 + - uid: 25543 + components: + - type: Transform + pos: 21.5,-89.5 + parent: 2 + - uid: 25544 + components: + - type: Transform + pos: 21.5,-90.5 + parent: 2 + - uid: 25545 + components: + - type: Transform + pos: 21.5,-91.5 + parent: 2 + - uid: 25546 + components: + - type: Transform + pos: 26.5,-94.5 + parent: 2 + - uid: 25547 + components: + - type: Transform + pos: 22.5,-93.5 + parent: 2 + - uid: 25548 + components: + - type: Transform + pos: 22.5,-94.5 + parent: 2 + - uid: 25549 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 25550 + components: + - type: Transform + pos: 21.5,-93.5 + parent: 2 + - uid: 25551 + components: + - type: Transform + pos: 26.5,-90.5 + parent: 2 + - uid: 25552 + components: + - type: Transform + pos: 26.5,-89.5 + parent: 2 + - uid: 25553 + components: + - type: Transform + pos: 26.5,-93.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + pos: 21.5,-88.5 + parent: 2 + - uid: 25555 + components: + - type: Transform + pos: 34.5,-88.5 + parent: 2 + - uid: 25556 + components: + - type: Transform + pos: 35.5,-88.5 + parent: 2 + - uid: 25557 + components: + - type: Transform + pos: 35.5,-89.5 + parent: 2 + - uid: 25558 + components: + - type: Transform + pos: 35.5,-90.5 + parent: 2 + - uid: 25559 + components: + - type: Transform + pos: 35.5,-91.5 + parent: 2 + - uid: 25560 + components: + - type: Transform + pos: 35.5,-92.5 + parent: 2 + - uid: 25561 + components: + - type: Transform + pos: 35.5,-93.5 + parent: 2 + - uid: 25562 + components: + - type: Transform + pos: 34.5,-93.5 + parent: 2 + - uid: 25563 + components: + - type: Transform + pos: 34.5,-94.5 + parent: 2 + - uid: 25564 + components: + - type: Transform + pos: 30.5,-89.5 + parent: 2 + - uid: 25565 + components: + - type: Transform + pos: 30.5,-90.5 + parent: 2 + - uid: 25566 + components: + - type: Transform + pos: 30.5,-94.5 + parent: 2 + - uid: 25567 + components: + - type: Transform + pos: 30.5,-93.5 + parent: 2 + - uid: 25568 + components: + - type: Transform + pos: 29.5,-94.5 + parent: 2 + - uid: 25569 + components: + - type: Transform + pos: 27.5,-94.5 + parent: 2 + - uid: 25570 + components: + - type: Transform + pos: 32.5,-118.5 + parent: 2 + - uid: 25571 + components: + - type: Transform + pos: 32.5,-117.5 + parent: 2 + - uid: 25572 + components: + - type: Transform + pos: 32.5,-116.5 + parent: 2 + - uid: 25573 + components: + - type: Transform + pos: 31.5,-118.5 + parent: 2 + - uid: 25574 + components: + - type: Transform + pos: 31.5,-117.5 + parent: 2 + - uid: 25575 + components: + - type: Transform + pos: 31.5,-116.5 + parent: 2 + - uid: 25576 + components: + - type: Transform + pos: 30.5,-118.5 + parent: 2 + - uid: 25577 + components: + - type: Transform + pos: 30.5,-117.5 + parent: 2 + - uid: 25578 + components: + - type: Transform + pos: 30.5,-116.5 + parent: 2 + - uid: 25579 + components: + - type: Transform + pos: 29.5,-118.5 + parent: 2 + - uid: 25580 + components: + - type: Transform + pos: 29.5,-117.5 + parent: 2 + - uid: 25581 + components: + - type: Transform + pos: 29.5,-116.5 + parent: 2 + - uid: 25582 + components: + - type: Transform + pos: 28.5,-118.5 + parent: 2 + - uid: 25583 + components: + - type: Transform + pos: 28.5,-117.5 + parent: 2 + - uid: 25584 + components: + - type: Transform + pos: 28.5,-116.5 + parent: 2 + - uid: 25585 + components: + - type: Transform + pos: 27.5,-118.5 + parent: 2 + - uid: 25586 + components: + - type: Transform + pos: 27.5,-117.5 + parent: 2 + - uid: 25587 + components: + - type: Transform + pos: 27.5,-116.5 + parent: 2 + - uid: 25588 + components: + - type: Transform + pos: 26.5,-118.5 + parent: 2 + - uid: 25589 + components: + - type: Transform + pos: 26.5,-117.5 + parent: 2 + - uid: 25590 + components: + - type: Transform + pos: 26.5,-116.5 + parent: 2 + - uid: 25591 + components: + - type: Transform + pos: 25.5,-118.5 + parent: 2 + - uid: 25592 + components: + - type: Transform + pos: 25.5,-117.5 + parent: 2 + - uid: 25593 + components: + - type: Transform + pos: 25.5,-116.5 + parent: 2 + - uid: 25594 + components: + - type: Transform + pos: 24.5,-118.5 + parent: 2 + - uid: 25595 + components: + - type: Transform + pos: 24.5,-117.5 + parent: 2 + - uid: 25596 + components: + - type: Transform + pos: 24.5,-116.5 + parent: 2 + - uid: 25597 + components: + - type: Transform + pos: 33.5,-117.5 + parent: 2 + - uid: 25598 + components: + - type: Transform + pos: 33.5,-116.5 + parent: 2 + - uid: 25599 + components: + - type: Transform + pos: 33.5,-115.5 + parent: 2 + - uid: 25600 + components: + - type: Transform + pos: 33.5,-114.5 + parent: 2 + - uid: 25601 + components: + - type: Transform + pos: 33.5,-113.5 + parent: 2 + - uid: 25602 + components: + - type: Transform + pos: 33.5,-112.5 + parent: 2 + - uid: 25603 + components: + - type: Transform + pos: 33.5,-111.5 + parent: 2 + - uid: 25604 + components: + - type: Transform + pos: 33.5,-110.5 + parent: 2 + - uid: 25605 + components: + - type: Transform + pos: 33.5,-109.5 + parent: 2 + - uid: 25606 + components: + - type: Transform + pos: 34.5,-116.5 + parent: 2 + - uid: 25607 + components: + - type: Transform + pos: 34.5,-115.5 + parent: 2 + - uid: 25608 + components: + - type: Transform + pos: 34.5,-114.5 + parent: 2 + - uid: 25609 + components: + - type: Transform + pos: 34.5,-113.5 + parent: 2 + - uid: 25610 + components: + - type: Transform + pos: 34.5,-112.5 + parent: 2 + - uid: 25611 + components: + - type: Transform + pos: 34.5,-111.5 + parent: 2 + - uid: 25612 + components: + - type: Transform + pos: 34.5,-110.5 + parent: 2 + - uid: 25613 + components: + - type: Transform + pos: 34.5,-109.5 + parent: 2 + - uid: 25614 + components: + - type: Transform + pos: 34.5,-108.5 + parent: 2 + - uid: 25615 + components: + - type: Transform + pos: 34.5,-107.5 + parent: 2 + - uid: 25616 + components: + - type: Transform + pos: 34.5,-106.5 + parent: 2 + - uid: 25617 + components: + - type: Transform + pos: 34.5,-105.5 + parent: 2 + - uid: 25618 + components: + - type: Transform + pos: 34.5,-104.5 + parent: 2 + - uid: 25619 + components: + - type: Transform + pos: 34.5,-103.5 + parent: 2 + - uid: 25620 + components: + - type: Transform + pos: 34.5,-102.5 + parent: 2 + - uid: 25621 + components: + - type: Transform + pos: 33.5,-102.5 + parent: 2 + - uid: 25622 + components: + - type: Transform + pos: 33.5,-101.5 + parent: 2 + - uid: 25623 + components: + - type: Transform + pos: 33.5,-100.5 + parent: 2 + - uid: 25624 + components: + - type: Transform + pos: 33.5,-99.5 + parent: 2 + - uid: 25625 + components: + - type: Transform + pos: 33.5,-98.5 + parent: 2 + - uid: 25626 + components: + - type: Transform + pos: 33.5,-97.5 + parent: 2 + - uid: 25627 + components: + - type: Transform + pos: 34.5,-97.5 + parent: 2 + - uid: 25628 + components: + - type: Transform + pos: 34.5,-96.5 + parent: 2 + - uid: 25629 + components: + - type: Transform + pos: 34.5,-95.5 + parent: 2 + - uid: 25630 + components: + - type: Transform + pos: 32.5,-115.5 + parent: 2 + - uid: 25631 + components: + - type: Transform + pos: 32.5,-114.5 + parent: 2 + - uid: 25632 + components: + - type: Transform + pos: 32.5,-113.5 + parent: 2 + - uid: 25633 + components: + - type: Transform + pos: 24.5,-115.5 + parent: 2 + - uid: 25634 + components: + - type: Transform + pos: 24.5,-114.5 + parent: 2 + - uid: 25635 + components: + - type: Transform + pos: 24.5,-113.5 + parent: 2 + - uid: 25636 + components: + - type: Transform + pos: 23.5,-117.5 + parent: 2 + - uid: 25637 + components: + - type: Transform + pos: 23.5,-116.5 + parent: 2 + - uid: 25638 + components: + - type: Transform + pos: 23.5,-115.5 + parent: 2 + - uid: 25639 + components: + - type: Transform + pos: 23.5,-114.5 + parent: 2 + - uid: 25640 + components: + - type: Transform + pos: 23.5,-113.5 + parent: 2 + - uid: 25641 + components: + - type: Transform + pos: 23.5,-112.5 + parent: 2 + - uid: 25642 + components: + - type: Transform + pos: 23.5,-111.5 + parent: 2 + - uid: 25643 + components: + - type: Transform + pos: 23.5,-110.5 + parent: 2 + - uid: 25644 + components: + - type: Transform + pos: 23.5,-109.5 + parent: 2 + - uid: 25645 + components: + - type: Transform + pos: 22.5,-116.5 + parent: 2 + - uid: 25646 + components: + - type: Transform + pos: 22.5,-115.5 + parent: 2 + - uid: 25647 + components: + - type: Transform + pos: 22.5,-114.5 + parent: 2 + - uid: 25648 + components: + - type: Transform + pos: 22.5,-113.5 + parent: 2 + - uid: 25649 + components: + - type: Transform + pos: 22.5,-112.5 + parent: 2 + - uid: 25650 + components: + - type: Transform + pos: 22.5,-111.5 + parent: 2 + - uid: 25651 + components: + - type: Transform + pos: 22.5,-110.5 + parent: 2 + - uid: 25652 + components: + - type: Transform + pos: 22.5,-109.5 + parent: 2 + - uid: 25653 + components: + - type: Transform + pos: 22.5,-108.5 + parent: 2 + - uid: 25654 + components: + - type: Transform + pos: 22.5,-107.5 + parent: 2 + - uid: 25655 + components: + - type: Transform + pos: 22.5,-106.5 + parent: 2 + - uid: 25656 + components: + - type: Transform + pos: 22.5,-105.5 + parent: 2 + - uid: 25657 + components: + - type: Transform + pos: 22.5,-104.5 + parent: 2 + - uid: 25658 + components: + - type: Transform + pos: 22.5,-103.5 + parent: 2 + - uid: 25659 + components: + - type: Transform + pos: 22.5,-102.5 + parent: 2 + - uid: 25660 + components: + - type: Transform + pos: 23.5,-102.5 + parent: 2 + - uid: 25661 + components: + - type: Transform + pos: 23.5,-101.5 + parent: 2 + - uid: 25662 + components: + - type: Transform + pos: 23.5,-100.5 + parent: 2 + - uid: 25663 + components: + - type: Transform + pos: 23.5,-99.5 + parent: 2 + - uid: 25664 + components: + - type: Transform + pos: 23.5,-98.5 + parent: 2 + - uid: 25665 + components: + - type: Transform + pos: 23.5,-97.5 + parent: 2 + - uid: 25666 + components: + - type: Transform + pos: 22.5,-97.5 + parent: 2 + - uid: 25667 + components: + - type: Transform + pos: 22.5,-96.5 + parent: 2 + - uid: 25668 + components: + - type: Transform + pos: 22.5,-95.5 + parent: 2 + - uid: 25669 + components: + - type: Transform + pos: 31.5,-95.5 + parent: 2 + - uid: 25670 + components: + - type: Transform + pos: 31.5,-96.5 + parent: 2 + - uid: 25671 + components: + - type: Transform + pos: 31.5,-97.5 + parent: 2 + - uid: 25672 + components: + - type: Transform + pos: 31.5,-98.5 + parent: 2 + - uid: 25673 + components: + - type: Transform + pos: 64.5,-59.5 + parent: 2 + - uid: 25674 + components: + - type: Transform + pos: 31.5,-100.5 + parent: 2 + - uid: 25675 + components: + - type: Transform + pos: 31.5,-101.5 + parent: 2 + - uid: 25676 + components: + - type: Transform + pos: 31.5,-102.5 + parent: 2 + - uid: 25677 + components: + - type: Transform + pos: 31.5,-103.5 + parent: 2 + - uid: 25678 + components: + - type: Transform + pos: 31.5,-104.5 + parent: 2 + - uid: 25679 + components: + - type: Transform + pos: 31.5,-105.5 + parent: 2 + - uid: 25680 + components: + - type: Transform + pos: 31.5,-106.5 + parent: 2 + - uid: 25681 + components: + - type: Transform + pos: 31.5,-107.5 + parent: 2 + - uid: 25682 + components: + - type: Transform + pos: 32.5,-104.5 + parent: 2 + - uid: 25683 + components: + - type: Transform + pos: 32.5,-105.5 + parent: 2 + - uid: 25684 + components: + - type: Transform + pos: 32.5,-106.5 + parent: 2 + - uid: 25685 + components: + - type: Transform + pos: 32.5,-107.5 + parent: 2 + - uid: 25686 + components: + - type: Transform + pos: 32.5,-108.5 + parent: 2 + - uid: 25687 + components: + - type: Transform + pos: 24.5,-104.5 + parent: 2 + - uid: 25688 + components: + - type: Transform + pos: 24.5,-105.5 + parent: 2 + - uid: 25689 + components: + - type: Transform + pos: 24.5,-106.5 + parent: 2 + - uid: 25690 + components: + - type: Transform + pos: 24.5,-107.5 + parent: 2 + - uid: 25691 + components: + - type: Transform + pos: 24.5,-108.5 + parent: 2 + - uid: 25692 + components: + - type: Transform + pos: 25.5,-107.5 + parent: 2 + - uid: 25693 + components: + - type: Transform + pos: 25.5,-106.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + pos: 25.5,-105.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + pos: 25.5,-104.5 + parent: 2 + - uid: 25696 + components: + - type: Transform + pos: 25.5,-103.5 + parent: 2 + - uid: 25697 + components: + - type: Transform + pos: 25.5,-102.5 + parent: 2 + - uid: 25698 + components: + - type: Transform + pos: 25.5,-101.5 + parent: 2 + - uid: 25699 + components: + - type: Transform + pos: 25.5,-100.5 + parent: 2 + - uid: 25700 + components: + - type: Transform + pos: 59.5,-63.5 + parent: 2 + - uid: 25701 + components: + - type: Transform + pos: 25.5,-98.5 + parent: 2 + - uid: 25702 + components: + - type: Transform + pos: 25.5,-97.5 + parent: 2 + - uid: 25703 + components: + - type: Transform + pos: 25.5,-96.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + pos: 25.5,-95.5 + parent: 2 + - uid: 25705 + components: + - type: Transform + pos: 30.5,-104.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + pos: 29.5,-104.5 + parent: 2 + - uid: 25707 + components: + - type: Transform + pos: 27.5,-104.5 + parent: 2 + - uid: 25708 + components: + - type: Transform + pos: 26.5,-104.5 + parent: 2 + - uid: 25709 + components: + - type: Transform + pos: 29.5,-111.5 + parent: 2 + - uid: 25710 + components: + - type: Transform + pos: 29.5,-112.5 + parent: 2 + - uid: 25711 + components: + - type: Transform + pos: 29.5,-113.5 + parent: 2 + - uid: 25712 + components: + - type: Transform + pos: 27.5,-111.5 + parent: 2 + - uid: 25713 + components: + - type: Transform + pos: 27.5,-112.5 + parent: 2 + - uid: 25714 + components: + - type: Transform + pos: 27.5,-113.5 + parent: 2 + - uid: 25715 + components: + - type: Transform + pos: 28.5,-112.5 + parent: 2 + - uid: 25716 + components: + - type: Transform + pos: 32.5,-111.5 + parent: 2 + - uid: 25717 + components: + - type: Transform + pos: 32.5,-110.5 + parent: 2 + - uid: 25718 + components: + - type: Transform + pos: 32.5,-109.5 + parent: 2 + - uid: 25719 + components: + - type: Transform + pos: 24.5,-111.5 + parent: 2 + - uid: 25720 + components: + - type: Transform + pos: 24.5,-110.5 + parent: 2 + - uid: 25721 + components: + - type: Transform + pos: 24.5,-109.5 + parent: 2 + - uid: 25722 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - uid: 25723 + components: + - type: Transform + pos: 9.5,-78.5 + parent: 2 + - uid: 25724 + components: + - type: Transform + pos: 60.5,-60.5 + parent: 2 + - uid: 25725 + components: + - type: Transform + pos: 55.5,-60.5 + parent: 2 + - uid: 25726 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 2 + - uid: 25727 + components: + - type: Transform + pos: -11.5,-87.5 + parent: 2 + - uid: 25728 + components: + - type: Transform + pos: -12.5,-87.5 + parent: 2 + - uid: 25729 + components: + - type: Transform + pos: -13.5,-87.5 + parent: 2 + - uid: 25730 + components: + - type: Transform + pos: -14.5,-87.5 + parent: 2 + - uid: 25731 + components: + - type: Transform + pos: -15.5,-87.5 + parent: 2 + - uid: 25732 + components: + - type: Transform + pos: -16.5,-87.5 + parent: 2 + - uid: 25733 + components: + - type: Transform + pos: -21.5,-87.5 + parent: 2 + - uid: 25734 + components: + - type: Transform + pos: -20.5,-87.5 + parent: 2 + - uid: 25735 + components: + - type: Transform + pos: -20.5,-88.5 + parent: 2 + - uid: 25736 + components: + - type: Transform + pos: -20.5,-77.5 + parent: 2 + - uid: 25737 + components: + - type: Transform + pos: -20.5,-78.5 + parent: 2 + - uid: 25738 + components: + - type: Transform + pos: -20.5,-79.5 + parent: 2 + - uid: 25739 + components: + - type: Transform + pos: -20.5,-80.5 + parent: 2 + - uid: 25740 + components: + - type: Transform + pos: -20.5,-81.5 + parent: 2 + - uid: 25741 + components: + - type: Transform + pos: -20.5,-82.5 + parent: 2 + - uid: 25742 + components: + - type: Transform + pos: -20.5,-83.5 + parent: 2 + - uid: 25743 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 25744 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 2 + - uid: 25745 + components: + - type: Transform + pos: 54.5,-60.5 + parent: 2 + - uid: 25746 + components: + - type: Transform + pos: 50.5,-60.5 + parent: 2 + - uid: 25747 + components: + - type: Transform + pos: 55.5,-63.5 + parent: 2 + - uid: 25748 + components: + - type: Transform + pos: 50.5,-59.5 + parent: 2 + - uid: 25749 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 25750 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - uid: 25751 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 25752 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 25753 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 25754 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 25755 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 25756 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 25757 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 25758 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 25759 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 25760 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 25761 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 25762 + components: + - type: Transform + pos: -19.5,-62.5 + parent: 2 + - uid: 25763 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 25764 + components: + - type: Transform + pos: -19.5,-64.5 + parent: 2 + - uid: 25765 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 25766 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 2 + - uid: 25767 + components: + - type: Transform + pos: -29.5,-66.5 + parent: 2 + - uid: 25768 + components: + - type: Transform + pos: -36.5,-52.5 + parent: 2 + - uid: 25769 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 25770 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 25771 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 25772 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 25773 + components: + - type: Transform + pos: -39.5,-54.5 + parent: 2 + - uid: 25774 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 25775 + components: + - type: Transform + pos: -39.5,-56.5 + parent: 2 + - uid: 25776 + components: + - type: Transform + pos: -39.5,-57.5 + parent: 2 + - uid: 25777 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 25778 + components: + - type: Transform + pos: -32.5,-66.5 + parent: 2 + - uid: 25779 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 25780 + components: + - type: Transform + pos: -34.5,-66.5 + parent: 2 + - uid: 25781 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 25782 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 25783 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 25784 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 2 + - uid: 25785 + components: + - type: Transform + pos: -30.5,-61.5 + parent: 2 + - uid: 25786 + components: + - type: Transform + pos: -28.5,-66.5 + parent: 2 + - uid: 25787 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 2 + - uid: 25788 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 25789 + components: + - type: Transform + pos: -32.5,-71.5 + parent: 2 + - uid: 25790 + components: + - type: Transform + pos: -33.5,-71.5 + parent: 2 + - uid: 25791 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 25792 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 25793 + components: + - type: Transform + pos: -33.5,-72.5 + parent: 2 + - uid: 25794 + components: + - type: Transform + pos: -30.5,-71.5 + parent: 2 + - uid: 25795 + components: + - type: Transform + pos: -29.5,-71.5 + parent: 2 + - uid: 25796 + components: + - type: Transform + pos: -29.5,-72.5 + parent: 2 + - uid: 25797 + components: + - type: Transform + pos: -29.5,-73.5 + parent: 2 + - uid: 25798 + components: + - type: Transform + pos: -29.5,-75.5 + parent: 2 + - uid: 25799 + components: + - type: Transform + pos: -28.5,-74.5 + parent: 2 + - uid: 25800 + components: + - type: Transform + pos: -29.5,-74.5 + parent: 2 + - uid: 25801 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 25802 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 25803 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 25804 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 25805 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 25806 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 25807 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 25808 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 25809 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 25810 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 25811 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 25812 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 25813 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 25814 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 25815 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 25816 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 25817 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 25818 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - uid: 25819 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 25820 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 25821 + components: + - type: Transform + pos: 33.5,-83.5 + parent: 2 + - uid: 25822 + components: + - type: Transform + pos: 32.5,-83.5 + parent: 2 + - uid: 25823 + components: + - type: Transform + pos: 31.5,-83.5 + parent: 2 + - uid: 25824 + components: + - type: Transform + pos: 30.5,-82.5 + parent: 2 + - uid: 25825 + components: + - type: Transform + pos: 29.5,-82.5 + parent: 2 + - uid: 25826 + components: + - type: Transform + pos: 27.5,-82.5 + parent: 2 + - uid: 25827 + components: + - type: Transform + pos: 26.5,-82.5 + parent: 2 + - uid: 25828 + components: + - type: Transform + pos: 34.5,-86.5 + parent: 2 + - uid: 25829 + components: + - type: Transform + pos: 34.5,-83.5 + parent: 2 + - uid: 25830 + components: + - type: Transform + pos: 34.5,-86.5 + parent: 2 + - uid: 25831 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 25832 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 25833 + components: + - type: Transform + pos: 34.5,-85.5 + parent: 2 + - uid: 25834 + components: + - type: Transform + pos: 25.5,-86.5 + parent: 2 + - uid: 25835 + components: + - type: Transform + pos: 25.5,-85.5 + parent: 2 + - uid: 25836 + components: + - type: Transform + pos: 25.5,-84.5 + parent: 2 + - uid: 25837 + components: + - type: Transform + pos: 25.5,-83.5 + parent: 2 + - uid: 25838 + components: + - type: Transform + pos: 25.5,-82.5 + parent: 2 + - uid: 25839 + components: + - type: Transform + pos: -8.5,-95.5 + parent: 2 + - uid: 25840 + components: + - type: Transform + pos: 38.5,-71.5 + parent: 2 + - uid: 25841 + components: + - type: Transform + pos: 33.5,-70.5 + parent: 2 + - uid: 25842 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 2 + - uid: 25843 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 25844 + components: + - type: Transform + pos: 31.5,-68.5 + parent: 2 + - uid: 25845 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 25846 + components: + - type: Transform + pos: 31.5,-67.5 + parent: 2 + - uid: 25847 + components: + - type: Transform + pos: 39.5,-71.5 + parent: 2 + - uid: 25848 + components: + - type: Transform + pos: 34.5,-70.5 + parent: 2 + - uid: 25849 + components: + - type: Transform + pos: 35.5,-70.5 + parent: 2 + - uid: 25850 + components: + - type: Transform + pos: 36.5,-70.5 + parent: 2 + - uid: 25851 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 2 + - uid: 25852 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 25853 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 25854 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 25855 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 25856 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 25857 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 25858 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 25859 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 25860 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 25861 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 25862 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 25863 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 25864 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 25865 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 25866 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 25867 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 25868 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 25869 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 25870 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 25871 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 25872 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 25873 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 25874 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 25875 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 25876 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 25877 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 25878 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 25879 + components: + - type: Transform + pos: -10.5,-80.5 + parent: 2 + - uid: 25880 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 25881 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 25882 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 25883 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 25884 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 25885 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 25886 + components: + - type: Transform + pos: -10.5,-81.5 + parent: 2 + - uid: 25887 + components: + - type: Transform + pos: -10.5,-87.5 + parent: 2 + - uid: 25888 + components: + - type: Transform + pos: -10.5,-88.5 + parent: 2 + - uid: 25889 + components: + - type: Transform + pos: -10.5,-89.5 + parent: 2 + - uid: 25890 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 25891 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 25892 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 25893 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 25894 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 25895 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 25896 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 25897 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 25898 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 25899 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 25900 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 25901 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 25902 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 25903 + components: + - type: Transform + pos: 9.5,-95.5 + parent: 2 + - uid: 25904 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 25905 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 25906 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 25907 + components: + - type: Transform + pos: 81.5,-55.5 + parent: 2 + - uid: 25908 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 25909 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 25910 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 25911 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 25912 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 25913 + components: + - type: Transform + pos: -11.5,42.5 + parent: 2 + - uid: 25914 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 25915 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 25916 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 25917 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 25918 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 25919 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 25920 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 25921 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 25922 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 25923 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 25924 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 25925 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 25926 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 25927 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 25928 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 25929 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 25930 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 25931 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 25932 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 25933 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 25934 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 25935 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 25936 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 25937 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 25938 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 25939 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 25940 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 25941 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 25942 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 25943 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 25944 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 25945 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 25946 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 25947 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 25948 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 25949 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 25950 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 25951 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 25952 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 25953 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 25954 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 25955 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 25956 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 25957 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 25958 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 25959 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 25960 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 25961 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 25962 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 25963 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 25964 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 25965 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 25966 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 25967 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 25968 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 25969 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 25970 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 25971 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 25972 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 25973 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 25974 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 25975 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 25976 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 25977 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 25978 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 + - uid: 25979 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 25980 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 25981 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 25982 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 25983 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 25984 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 25985 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 25986 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 25987 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 25988 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 25989 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 25990 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 25991 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 25992 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 25993 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 25994 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 25995 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 25996 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 25997 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 25998 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 25999 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 26000 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 26001 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 26002 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 + - uid: 26003 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 26004 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 26005 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 26006 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 26007 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 26008 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 26009 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 26010 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 26011 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 26012 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 26013 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 26014 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 26015 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 26016 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 26017 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 26018 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 26019 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 26020 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 26021 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 26022 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 26023 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 26024 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 26025 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 26026 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 26027 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 26028 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 26029 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 26030 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 26031 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 26032 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 26033 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 26034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 26035 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 26037 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 26038 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 26039 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 26040 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 26041 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 26042 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 + - uid: 26043 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 26044 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 26045 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 26046 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - uid: 26047 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 26048 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 26049 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 26050 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 26051 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 26052 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 26053 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 26054 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 26055 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 26056 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 26057 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 26058 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 26059 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 26060 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 26061 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 26062 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 26063 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 26064 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 26065 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 26066 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 26067 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 26068 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 26069 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 26070 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 26071 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 26072 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 26073 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 26074 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 26075 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 26076 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - uid: 26077 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 26078 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 26079 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 26080 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 26081 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 26082 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 26083 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 26084 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 26085 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 26086 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 26087 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 26088 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 26089 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 26090 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 26091 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 26092 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 26093 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 26094 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 26096 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 26097 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 26098 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 26099 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 26100 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 26101 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 26102 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 26103 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 26104 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 26105 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 26106 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 26107 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 26108 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 26109 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 26110 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 26111 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 26112 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 26113 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 26114 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 26115 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 26116 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 26119 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 26120 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 26121 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 26122 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 26123 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 26124 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 26125 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 26126 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 26127 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 26128 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 26129 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 26130 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 26131 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 26132 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 26133 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 26134 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 26135 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 26136 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 26137 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 26138 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 26139 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 26140 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 26141 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 26142 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 26143 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 26144 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 26145 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 26146 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 26147 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 26148 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 26149 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 26150 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 26151 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 26152 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 26153 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 26154 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 26155 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 26156 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 26157 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 26158 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 26159 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 26160 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 26161 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 26162 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 26163 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 26164 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 26165 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 26166 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 26167 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 26168 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 26169 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 26170 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 26171 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 26172 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 26173 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 26174 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 26175 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 26176 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 26177 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 26178 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 26179 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 26180 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 26181 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 26182 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 26183 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 26184 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 26185 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 26186 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 26187 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 26188 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 26189 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 26190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - uid: 26191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - uid: 26192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 26193 + components: + - type: Transform + pos: -21.5,52.5 + parent: 2 + - uid: 26194 + components: + - type: Transform + pos: -20.5,52.5 + parent: 2 + - uid: 26195 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 26196 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 26197 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - uid: 26198 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 26199 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 26200 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 26201 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 26202 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 26203 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 26204 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 26205 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 26206 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 26207 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 26208 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 26209 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 26210 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 26211 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 26212 + components: + - type: Transform + pos: -23.5,52.5 + parent: 2 + - uid: 26213 + components: + - type: Transform + pos: -22.5,52.5 + parent: 2 + - uid: 26214 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 26215 + components: + - type: Transform + pos: -24.5,40.5 + parent: 2 + - uid: 26216 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 26217 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 26218 + components: + - type: Transform + pos: -10.5,54.5 + parent: 2 + - uid: 26219 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 26220 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 26221 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 26222 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 26223 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 26224 + components: + - type: Transform + pos: -16.5,54.5 + parent: 2 + - uid: 26225 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 26226 + components: + - type: Transform + pos: -13.5,54.5 + parent: 2 + - uid: 26227 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 26228 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 26229 + components: + - type: Transform + pos: -22.5,39.5 + parent: 2 + - uid: 26230 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 26231 + components: + - type: Transform + pos: -24.5,49.5 + parent: 2 + - uid: 26232 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 26233 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 26234 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 26235 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 26236 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 26237 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 26238 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 26239 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 26240 + components: + - type: Transform + pos: -19.5,52.5 + parent: 2 + - uid: 26241 + components: + - type: Transform + pos: -18.5,52.5 + parent: 2 + - uid: 26242 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 26243 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 26244 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 26245 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 26246 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 26247 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 26248 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 26249 + components: + - type: Transform + pos: -1.5,52.5 + parent: 2 + - uid: 26250 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 26251 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 26252 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 26253 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 26254 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 26255 + components: + - type: Transform + pos: 61.5,-70.5 + parent: 2 + - uid: 26256 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 26257 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 26258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 26259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - uid: 26260 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 26261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + - uid: 26262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - uid: 26263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 + - uid: 26264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 2 + - uid: 26265 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 26266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 26267 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 26268 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 26269 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - uid: 26270 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - uid: 26271 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 26272 + components: + - type: Transform + pos: -24.5,50.5 + parent: 2 + - uid: 26273 + components: + - type: Transform + pos: -24.5,51.5 + parent: 2 + - uid: 26274 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 26275 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 26276 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 26277 + components: + - type: Transform + pos: -24.5,48.5 + parent: 2 + - uid: 26278 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 26279 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 26280 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 26281 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 + - uid: 26282 + components: + - type: Transform + pos: -68.5,15.5 + parent: 2 + - uid: 26283 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 26284 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 26285 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 26286 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 26287 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 26288 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 26289 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 26290 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 26291 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 26292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,7.5 + parent: 2 + - uid: 26293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-2.5 + parent: 2 + - uid: 26294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-2.5 + parent: 2 + - uid: 26295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,8.5 + parent: 2 + - uid: 26296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-5.5 + parent: 2 + - uid: 26297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,10.5 + parent: 2 + - uid: 26298 + components: + - type: Transform + pos: -79.5,-16.5 + parent: 2 + - uid: 26299 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 26300 + components: + - type: Transform + pos: -77.5,-15.5 + parent: 2 + - uid: 26301 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 26302 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 + - uid: 26303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 26304 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 26305 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 26306 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 26307 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 26308 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 26309 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 2 + - uid: 26310 + components: + - type: Transform + pos: -42.5,-23.5 + parent: 2 + - uid: 26311 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 26312 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 26313 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 26314 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 26315 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 + - uid: 26316 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 26317 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 26318 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 26319 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 26320 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 26321 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 2 + - uid: 26322 + components: + - type: Transform + pos: 9.5,-83.5 + parent: 2 + - uid: 26323 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 26324 + components: + - type: Transform + pos: 9.5,-82.5 + parent: 2 + - uid: 26325 + components: + - type: Transform + pos: -20.5,-64.5 + parent: 2 + - uid: 26326 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 26327 + components: + - type: Transform + pos: -6.5,-101.5 + parent: 2 + - uid: 26328 + components: + - type: Transform + pos: -4.5,-101.5 + parent: 2 + - uid: 26329 + components: + - type: Transform + pos: -2.5,-101.5 + parent: 2 + - uid: 26330 + components: + - type: Transform + pos: -0.5,-101.5 + parent: 2 + - uid: 26331 + components: + - type: Transform + pos: 1.5,-101.5 + parent: 2 + - uid: 26332 + components: + - type: Transform + pos: 3.5,-101.5 + parent: 2 + - uid: 26333 + components: + - type: Transform + pos: 5.5,-101.5 + parent: 2 + - uid: 26334 + components: + - type: Transform + pos: -5.5,-101.5 + parent: 2 + - uid: 26335 + components: + - type: Transform + pos: -3.5,-101.5 + parent: 2 + - uid: 26336 + components: + - type: Transform + pos: -1.5,-101.5 + parent: 2 + - uid: 26337 + components: + - type: Transform + pos: 2.5,-101.5 + parent: 2 + - uid: 26338 + components: + - type: Transform + pos: 4.5,-101.5 + parent: 2 + - uid: 26339 + components: + - type: Transform + pos: 6.5,-101.5 + parent: 2 + - uid: 26340 + components: + - type: Transform + pos: -7.5,-101.5 + parent: 2 + - uid: 26341 + components: + - type: Transform + pos: 0.5,-101.5 + parent: 2 + - uid: 26342 + components: + - type: Transform + pos: -10.5,-94.5 + parent: 2 + - uid: 26343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-60.5 + parent: 2 + - uid: 26344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 + parent: 2 + - uid: 26345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-61.5 + parent: 2 + - uid: 26346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 + - uid: 26347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - uid: 26348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 + - uid: 26349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 2 + - uid: 26350 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 26351 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 26352 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 26353 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 26354 + components: + - type: Transform + pos: 83.5,-44.5 + parent: 2 + - uid: 26355 + components: + - type: Transform + pos: 86.5,-44.5 + parent: 2 + - uid: 26356 + components: + - type: Transform + pos: 86.5,-45.5 + parent: 2 + - uid: 26357 + components: + - type: Transform + pos: 87.5,-47.5 + parent: 2 + - uid: 26358 + components: + - type: Transform + pos: 87.5,-48.5 + parent: 2 + - uid: 26359 + components: + - type: Transform + pos: 86.5,-49.5 + parent: 2 + - uid: 26360 + components: + - type: Transform + pos: 85.5,-49.5 + parent: 2 + - uid: 26361 + components: + - type: Transform + pos: 84.5,-49.5 + parent: 2 + - uid: 26362 + components: + - type: Transform + pos: 83.5,-49.5 + parent: 2 + - uid: 26363 + components: + - type: Transform + pos: 87.5,-32.5 + parent: 2 + - uid: 26364 + components: + - type: Transform + pos: 88.5,-32.5 + parent: 2 + - uid: 26365 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - uid: 26366 + components: + - type: Transform + pos: 87.5,-33.5 + parent: 2 + - uid: 26367 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 26368 + components: + - type: Transform + pos: 64.5,-57.5 + parent: 2 + - uid: 26369 + components: + - type: Transform + pos: -24.5,52.5 + parent: 2 + - uid: 26370 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 26371 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 26372 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 26373 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 26374 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 26375 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 26376 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 26377 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 26378 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 26379 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 26380 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 26381 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 26387 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 26388 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 26389 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 26390 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 26391 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 26392 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 26393 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 26394 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 26395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 26396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 26397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 26398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 26399 + components: + - type: Transform + pos: -80.5,12.5 + parent: 2 + - uid: 26400 + components: + - type: Transform + pos: -74.5,12.5 + parent: 2 + - uid: 26401 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 26402 + components: + - type: Transform + pos: 10.5,-78.5 + parent: 2 + - uid: 26403 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 26404 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 26405 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 26406 + components: + - type: Transform + pos: -18.5,-75.5 + parent: 2 + - uid: 26407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - uid: 26408 + components: + - type: Transform + pos: -3.5,-65.5 + parent: 2 + - uid: 26409 + components: + - type: Transform + pos: -18.5,-77.5 + parent: 2 + - uid: 26410 + components: + - type: Transform + pos: -18.5,-76.5 + parent: 2 + - uid: 26411 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 26412 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 26413 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 26414 + components: + - type: Transform + pos: -17.5,52.5 + parent: 2 + - uid: 26415 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 26416 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 26417 + components: + - type: Transform + pos: -16.5,53.5 + parent: 2 + - uid: 26418 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 26419 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 26420 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 26421 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 2 + - uid: 26422 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 26423 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 26424 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 26425 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 26426 + components: + - type: Transform + pos: 38.5,-42.5 + parent: 2 + - uid: 26427 + components: + - type: Transform + pos: 38.5,-43.5 + parent: 2 + - uid: 26428 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 2 + - uid: 26429 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 26430 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 26431 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 26432 + components: + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - uid: 26433 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 26434 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 26435 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 26436 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 2 + - uid: 26437 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 26438 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - uid: 26439 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 26440 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 26441 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 26442 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 26443 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 26444 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 26445 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 26446 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - uid: 26447 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 2 + - uid: 26448 + components: + - type: Transform + pos: 68.5,-37.5 + parent: 2 + - uid: 26449 + components: + - type: Transform + pos: 75.5,-36.5 + parent: 2 + - uid: 26450 + components: + - type: Transform + pos: 75.5,-37.5 + parent: 2 + - uid: 26451 + components: + - type: Transform + pos: 75.5,-35.5 + parent: 2 + - uid: 26452 + components: + - type: Transform + pos: 75.5,-34.5 + parent: 2 + - uid: 26453 + components: + - type: Transform + pos: 75.5,-33.5 + parent: 2 + - uid: 26454 + components: + - type: Transform + pos: 74.5,-32.5 + parent: 2 + - uid: 26455 + components: + - type: Transform + pos: 73.5,-32.5 + parent: 2 + - uid: 26456 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 2 + - uid: 26457 + components: + - type: Transform + pos: 71.5,-32.5 + parent: 2 + - uid: 26458 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 2 + - uid: 26459 + components: + - type: Transform + pos: 69.5,-32.5 + parent: 2 + - uid: 26460 + components: + - type: Transform + pos: 68.5,-32.5 + parent: 2 + - uid: 26461 + components: + - type: Transform + pos: -5.5,-95.5 + parent: 2 + - uid: 26462 + components: + - type: Transform + pos: -3.5,-95.5 + parent: 2 + - uid: 26463 + components: + - type: Transform + pos: -2.5,-95.5 + parent: 2 + - uid: 26464 + components: + - type: Transform + pos: 3.5,-95.5 + parent: 2 + - uid: 26465 + components: + - type: Transform + pos: -1.5,-95.5 + parent: 2 + - uid: 26466 + components: + - type: Transform + pos: -0.5,-95.5 + parent: 2 + - uid: 26467 + components: + - type: Transform + pos: 5.5,-95.5 + parent: 2 + - uid: 26468 + components: + - type: Transform + pos: 6.5,-95.5 + parent: 2 + - uid: 26469 + components: + - type: Transform + pos: 7.5,-95.5 + parent: 2 + - uid: 26470 + components: + - type: Transform + pos: 8.5,-95.5 + parent: 2 + - uid: 26471 + components: + - type: Transform + pos: 9.5,-91.5 + parent: 2 + - uid: 26472 + components: + - type: Transform + pos: 9.5,-90.5 + parent: 2 + - uid: 26473 + components: + - type: Transform + pos: 9.5,-87.5 + parent: 2 + - uid: 26474 + components: + - type: Transform + pos: 9.5,-86.5 + parent: 2 + - uid: 26475 + components: + - type: Transform + pos: 9.5,-84.5 + parent: 2 + - uid: 26476 + components: + - type: Transform + pos: -11.5,-80.5 + parent: 2 + - uid: 26477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-80.5 + parent: 2 + - uid: 26478 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 26479 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 + - uid: 26480 + components: + - type: Transform + pos: -4.5,-71.5 + parent: 2 + - uid: 26481 + components: + - type: Transform + pos: -2.5,-71.5 + parent: 2 + - uid: 26482 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 2 + - uid: 26483 + components: + - type: Transform + pos: 4.5,-71.5 + parent: 2 + - uid: 26484 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 26485 + components: + - type: Transform + pos: 5.5,-71.5 + parent: 2 + - uid: 26486 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 2 + - uid: 26487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-84.5 + parent: 2 + - uid: 26488 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 26489 + components: + - type: Transform + pos: 1.5,-89.5 + parent: 2 + - uid: 26490 + components: + - type: Transform + pos: 1.5,-88.5 + parent: 2 + - uid: 26491 + components: + - type: Transform + pos: -2.5,-89.5 + parent: 2 + - uid: 26492 + components: + - type: Transform + pos: -2.5,-90.5 + parent: 2 + - uid: 26493 + components: + - type: Transform + pos: 1.5,-90.5 + parent: 2 + - uid: 26494 + components: + - type: Transform + pos: -4.5,-88.5 + parent: 2 + - uid: 26495 + components: + - type: Transform + pos: -3.5,-88.5 + parent: 2 + - uid: 26496 + components: + - type: Transform + pos: -2.5,-88.5 + parent: 2 +- proto: WallReinforcedDiagonal + entities: + - uid: 26497 + components: + - type: Transform + pos: 21.5,-87.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 26498 + components: + - type: Transform + pos: 70.5,-76.5 + parent: 2 + - uid: 26499 + components: + - type: Transform + pos: 69.5,-75.5 + parent: 2 + - uid: 26500 + components: + - type: Transform + pos: 66.5,-75.5 + parent: 2 + - uid: 26501 + components: + - type: Transform + pos: 65.5,-77.5 + parent: 2 + - uid: 26502 + components: + - type: Transform + pos: 65.5,-76.5 + parent: 2 + - uid: 26503 + components: + - type: Transform + pos: 70.5,-79.5 + parent: 2 + - uid: 26504 + components: + - type: Transform + pos: 65.5,-80.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 26505 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 26506 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 26507 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 26508 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 26509 + components: + - type: Transform + pos: 63.5,-28.5 + parent: 2 + - uid: 26510 + components: + - type: Transform + pos: 64.5,-28.5 + parent: 2 + - uid: 26511 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 26512 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 26513 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 26514 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 26515 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 26516 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 26517 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 26518 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 26519 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 26520 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 26521 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 26522 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - uid: 26523 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 26524 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 26525 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 26526 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 26527 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 26528 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 26529 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 26530 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 26531 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 26532 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 26533 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 26534 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 26535 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 26536 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 26537 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 26538 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 26539 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 26540 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 26541 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 26542 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 26543 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 26544 + components: + - type: Transform + pos: -62.5,7.5 + parent: 2 + - uid: 26545 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 26546 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 26547 + components: + - type: Transform + pos: 53.5,-50.5 + parent: 2 + - uid: 26548 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 26549 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 26550 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 26551 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 26552 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 26553 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 26554 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 26555 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 26556 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - uid: 26557 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 26558 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 26559 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 26560 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 26561 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 26562 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 26563 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 26564 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 26565 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 26566 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 26567 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 26568 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 26569 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 26570 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 26571 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 26572 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 26574 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 26575 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 26576 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 26577 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 26578 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 26579 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 26580 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 26581 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 26582 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 26583 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 26584 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 26585 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 26586 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 26587 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 26588 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 26589 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 26590 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 26591 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 26592 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 26593 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 26594 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 + - uid: 26595 + components: + - type: Transform + pos: -60.5,16.5 + parent: 2 + - uid: 26596 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 26597 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 26598 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 26599 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 26600 + components: + - type: Transform + pos: -60.5,9.5 + parent: 2 + - uid: 26601 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 26602 + components: + - type: Transform + pos: -64.5,13.5 + parent: 2 + - uid: 26603 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 26604 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - uid: 26605 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 26606 + components: + - type: Transform + pos: -62.5,11.5 + parent: 2 + - uid: 26607 + components: + - type: Transform + pos: -60.5,12.5 + parent: 2 + - uid: 26608 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 26609 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 + - uid: 26610 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 26611 + components: + - type: Transform + pos: -59.5,9.5 + parent: 2 + - uid: 26612 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 26613 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 26614 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - uid: 26615 + components: + - type: Transform + pos: -62.5,8.5 + parent: 2 + - uid: 26616 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 26617 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 26618 + components: + - type: Transform + pos: -65.5,11.5 + parent: 2 + - uid: 26619 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 26620 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 26621 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 26622 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 26623 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 26624 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 26625 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 26626 + components: + - type: Transform + pos: -62.5,4.5 + parent: 2 + - uid: 26627 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 26628 + components: + - type: Transform + pos: -62.5,2.5 + parent: 2 + - uid: 26629 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 26630 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 26631 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 26632 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 26633 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 26634 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 26635 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 26636 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 26637 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 26638 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 26639 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 + - uid: 26640 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 26641 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 26642 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 26643 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 26644 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 26645 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - uid: 26646 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - uid: 26647 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 26648 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 26649 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 26650 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 26651 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 26652 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 26653 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 26654 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 26655 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 26656 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 26657 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 26658 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 26659 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 26660 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 26661 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 26662 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 26663 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 26664 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 26665 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 26666 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 26667 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 26668 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 26669 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 26670 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 26671 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 26672 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - uid: 26673 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 26674 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 26675 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 26676 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 26677 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 26678 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 26679 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 26680 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 26681 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 26682 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 26683 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 26684 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 26685 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 26686 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 26687 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 26688 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 26689 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 26690 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 26691 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 26692 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 26693 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 26694 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 26695 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 26696 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 26697 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 26698 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 26699 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 26700 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 26701 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 26702 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 26703 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 26704 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 26705 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 26706 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 26707 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 26708 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 26709 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 26710 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 26711 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 26712 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 26713 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 26714 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 26715 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 26716 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 + - uid: 26717 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 26718 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 26719 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 26720 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 26721 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 26722 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 26723 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 26724 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 26725 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 26726 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 26727 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 26728 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 26729 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 26730 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 26731 + components: + - type: Transform + pos: 71.5,9.5 + parent: 2 + - uid: 26732 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 26733 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 26734 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 26735 + components: + - type: Transform + pos: 71.5,10.5 + parent: 2 + - uid: 26736 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 + - uid: 26737 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 26738 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 26739 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 26740 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 26741 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 26742 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 26743 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 26744 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 26745 + components: + - type: Transform + pos: 56.5,-53.5 + parent: 2 + - uid: 26746 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 26747 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 26748 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 26749 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 26750 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 26751 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 26752 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 26753 + components: + - type: Transform + pos: 68.5,15.5 + parent: 2 + - uid: 26754 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - uid: 26755 + components: + - type: Transform + pos: 66.5,15.5 + parent: 2 + - uid: 26756 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 26757 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 26758 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 26759 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 26760 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 26761 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 26762 + components: + - type: Transform + pos: 71.5,7.5 + parent: 2 + - uid: 26763 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 26764 + components: + - type: Transform + pos: 69.5,7.5 + parent: 2 + - uid: 26765 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 26766 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 26768 + components: + - type: Transform + pos: 78.5,11.5 + parent: 2 + - uid: 26769 + components: + - type: Transform + pos: 79.5,11.5 + parent: 2 + - uid: 26770 + components: + - type: Transform + pos: 80.5,11.5 + parent: 2 + - uid: 26771 + components: + - type: Transform + pos: 81.5,11.5 + parent: 2 + - uid: 26772 + components: + - type: Transform + pos: 77.5,7.5 + parent: 2 + - uid: 26773 + components: + - type: Transform + pos: 78.5,7.5 + parent: 2 + - uid: 26774 + components: + - type: Transform + pos: 74.5,6.5 + parent: 2 + - uid: 26775 + components: + - type: Transform + pos: 73.5,6.5 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: 67.5,15.5 + parent: 2 + - uid: 26777 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 26778 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 26779 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 26780 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 26781 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 26782 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 26783 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 26784 + components: + - type: Transform + pos: 57.5,6.5 + parent: 2 + - uid: 26785 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 26786 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 26787 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 26788 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 26789 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 26790 + components: + - type: Transform + pos: 68.5,6.5 + parent: 2 + - uid: 26791 + components: + - type: Transform + pos: 68.5,4.5 + parent: 2 + - uid: 26792 + components: + - type: Transform + pos: 67.5,4.5 + parent: 2 + - uid: 26793 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - uid: 26794 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 26795 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 26796 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 26797 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 26798 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 26799 + components: + - type: Transform + pos: 60.5,3.5 + parent: 2 + - uid: 26800 + components: + - type: Transform + pos: 59.5,3.5 + parent: 2 + - uid: 26801 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 26802 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 26803 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 26804 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 26805 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 26806 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 + - uid: 26807 + components: + - type: Transform + pos: 55.5,3.5 + parent: 2 + - uid: 26808 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - uid: 26809 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 26810 + components: + - type: Transform + pos: 66.5,10.5 + parent: 2 + - uid: 26811 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 26812 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 26813 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 26814 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 26815 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 26816 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 26817 + components: + - type: Transform + pos: -76.5,-16.5 + parent: 2 + - uid: 26818 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 26819 + components: + - type: Transform + pos: -74.5,-15.5 + parent: 2 + - uid: 26820 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 26821 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 26822 + components: + - type: Transform + pos: -62.5,-14.5 + parent: 2 + - uid: 26823 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 26824 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 26825 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 26826 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 26827 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 26828 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 26829 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 26830 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 26831 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 26832 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 26833 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 26834 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 26835 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 26836 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 26837 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 26838 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 26839 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 26840 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 26841 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 26842 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 26843 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 26844 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 26845 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 26846 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 26847 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - uid: 26848 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 26849 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 26850 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 26851 + components: + - type: Transform + pos: -61.5,-14.5 + parent: 2 + - uid: 26852 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 26853 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 26854 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 26855 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 26856 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 26857 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 26858 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 26859 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 26860 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 26861 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 2 + - uid: 26862 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 26863 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 26864 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 26865 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 26866 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 26867 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 26868 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 26869 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 26870 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 26871 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 26872 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 26873 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 26874 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 26875 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 26876 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 26877 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 26878 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 26879 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 26880 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 26881 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 26882 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 26883 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 26884 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 26885 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 26886 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 26887 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 26888 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 26889 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 26890 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 26891 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 26892 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 26893 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 26894 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 26895 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 26896 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 26897 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - uid: 26898 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 26899 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 26900 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 26901 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 26902 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 26903 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 26904 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 26905 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 26906 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 26907 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 26908 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 26909 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 26910 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 26911 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 26912 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 26913 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 26914 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 26915 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 26916 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 26917 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 26918 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 26919 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 26920 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 26921 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 26922 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 26923 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 26924 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 26925 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 26926 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 26927 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 26928 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 26929 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 26930 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 26931 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 26932 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 26933 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 26934 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 26935 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 26936 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 26937 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 26938 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 26939 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 26940 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 26941 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 26942 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 26943 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 26944 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 26945 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 26946 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 26947 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 26948 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 26949 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 26950 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 26951 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 26952 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 26953 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 26954 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 26955 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 26956 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 26957 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 26958 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 26959 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 26960 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 26961 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 26962 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 26963 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 26964 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 26965 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 26966 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 26967 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 26968 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 26969 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 26970 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 26971 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 26972 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 26973 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 26974 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 26975 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 26976 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 26977 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 26978 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 26979 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 26980 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 26981 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 26982 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 26983 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 26984 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 26985 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 26986 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 26987 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 26988 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 26989 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 26990 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 26991 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 26992 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 26993 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 26994 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 26995 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 26996 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 26997 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 26998 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 26999 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 27000 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 27001 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 27002 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 27003 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 27004 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 27005 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 27006 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 27007 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 27008 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 27009 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 27010 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 27011 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 27012 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 27013 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 27014 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 27015 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 27016 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 27017 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 27018 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 27019 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 27020 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 27021 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 27022 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 27023 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 27024 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 27025 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 27026 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 27027 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - uid: 27028 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 27029 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 27030 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 27031 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 27032 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 27033 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 27034 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 27035 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 2 + - uid: 27036 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 27037 + components: + - type: Transform + pos: -22.5,-37.5 + parent: 2 + - uid: 27038 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 27039 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - uid: 27040 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 27041 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 27042 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 2 + - uid: 27043 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 27044 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 27045 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 27046 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 27047 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 27048 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 27049 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 27050 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 27051 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 27052 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 27053 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 27054 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 27055 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 27056 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 27057 + components: + - type: Transform + pos: 92.5,-30.5 + parent: 2 + - uid: 27058 + components: + - type: Transform + pos: 91.5,-24.5 + parent: 2 + - uid: 27059 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 27060 + components: + - type: Transform + pos: 48.5,-25.5 + parent: 2 + - uid: 27061 + components: + - type: Transform + pos: 47.5,-25.5 + parent: 2 + - uid: 27062 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 27063 + components: + - type: Transform + pos: 80.5,15.5 + parent: 2 + - uid: 27064 + components: + - type: Transform + pos: 78.5,15.5 + parent: 2 + - uid: 27065 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 27066 + components: + - type: Transform + pos: 77.5,15.5 + parent: 2 + - uid: 27067 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 27068 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 27069 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 27070 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 27071 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 27072 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 27073 + components: + - type: Transform + pos: 76.5,15.5 + parent: 2 + - uid: 27074 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 + - uid: 27075 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 27076 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 27077 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 27078 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 27079 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 27080 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 27081 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 27082 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 27083 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 27084 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 27085 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 27086 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 2 + - uid: 27087 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 + - uid: 27088 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 27089 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 27090 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 27091 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 27092 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 27093 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 27094 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 27095 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 27096 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 27097 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 + - uid: 27098 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 27099 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 27100 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 27101 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 27102 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 27103 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 27104 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 27105 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 27106 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 27107 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 27108 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 27109 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 27110 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 27111 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 27112 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 2 + - uid: 27113 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - uid: 27114 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - uid: 27115 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 27116 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 27117 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 27118 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 27119 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 27120 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - uid: 27121 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 2 + - uid: 27122 + components: + - type: Transform + pos: 39.5,-50.5 + parent: 2 + - uid: 27123 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 2 + - uid: 27124 + components: + - type: Transform + pos: 41.5,-50.5 + parent: 2 + - uid: 27125 + components: + - type: Transform + pos: 48.5,-48.5 + parent: 2 + - uid: 27126 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 + - uid: 27127 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 27128 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 27129 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 27130 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 27131 + components: + - type: Transform + pos: 67.5,-58.5 + parent: 2 + - uid: 27132 + components: + - type: Transform + pos: 50.5,-43.5 + parent: 2 + - uid: 27133 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 2 + - uid: 27134 + components: + - type: Transform + pos: 50.5,-45.5 + parent: 2 + - uid: 27135 + components: + - type: Transform + pos: 50.5,-39.5 + parent: 2 + - uid: 27136 + components: + - type: Transform + pos: 50.5,-38.5 + parent: 2 + - uid: 27137 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 27138 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 2 + - uid: 27139 + components: + - type: Transform + pos: 50.5,-41.5 + parent: 2 + - uid: 27140 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 2 + - uid: 27141 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 27142 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 + - uid: 27143 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 2 + - uid: 27144 + components: + - type: Transform + pos: 50.5,-25.5 + parent: 2 + - uid: 27145 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 27146 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 27147 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - uid: 27148 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 27149 + components: + - type: Transform + pos: 53.5,-38.5 + parent: 2 + - uid: 27150 + components: + - type: Transform + pos: 54.5,-50.5 + parent: 2 + - uid: 27151 + components: + - type: Transform + pos: 68.5,-49.5 + parent: 2 + - uid: 27152 + components: + - type: Transform + pos: 68.5,-48.5 + parent: 2 + - uid: 27153 + components: + - type: Transform + pos: 71.5,-54.5 + parent: 2 + - uid: 27154 + components: + - type: Transform + pos: 71.5,-53.5 + parent: 2 + - uid: 27155 + components: + - type: Transform + pos: 67.5,-55.5 + parent: 2 + - uid: 27156 + components: + - type: Transform + pos: 67.5,-57.5 + parent: 2 + - uid: 27157 + components: + - type: Transform + pos: 69.5,-47.5 + parent: 2 + - uid: 27158 + components: + - type: Transform + pos: 69.5,-43.5 + parent: 2 + - uid: 27159 + components: + - type: Transform + pos: 68.5,-31.5 + parent: 2 + - uid: 27160 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 27161 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 27162 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 27163 + components: + - type: Transform + pos: 78.5,-26.5 + parent: 2 + - uid: 27164 + components: + - type: Transform + pos: 81.5,-26.5 + parent: 2 + - uid: 27165 + components: + - type: Transform + pos: 64.5,-36.5 + parent: 2 + - uid: 27166 + components: + - type: Transform + pos: 64.5,-37.5 + parent: 2 + - uid: 27167 + components: + - type: Transform + pos: 64.5,-38.5 + parent: 2 + - uid: 27168 + components: + - type: Transform + pos: 62.5,-38.5 + parent: 2 + - uid: 27169 + components: + - type: Transform + pos: 61.5,-38.5 + parent: 2 + - uid: 27170 + components: + - type: Transform + pos: 60.5,-38.5 + parent: 2 + - uid: 27171 + components: + - type: Transform + pos: 59.5,-38.5 + parent: 2 + - uid: 27172 + components: + - type: Transform + pos: 64.5,-34.5 + parent: 2 + - uid: 27173 + components: + - type: Transform + pos: 64.5,-33.5 + parent: 2 + - uid: 27174 + components: + - type: Transform + pos: 64.5,-32.5 + parent: 2 + - uid: 27175 + components: + - type: Transform + pos: 63.5,-32.5 + parent: 2 + - uid: 27176 + components: + - type: Transform + pos: 62.5,-32.5 + parent: 2 + - uid: 27177 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 2 + - uid: 27178 + components: + - type: Transform + pos: 60.5,-32.5 + parent: 2 + - uid: 27179 + components: + - type: Transform + pos: 59.5,-32.5 + parent: 2 + - uid: 27180 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 2 + - uid: 27181 + components: + - type: Transform + pos: 86.5,-39.5 + parent: 2 + - uid: 27182 + components: + - type: Transform + pos: 85.5,-39.5 + parent: 2 + - uid: 27183 + components: + - type: Transform + pos: 84.5,-39.5 + parent: 2 + - uid: 27184 + components: + - type: Transform + pos: 83.5,-39.5 + parent: 2 + - uid: 27185 + components: + - type: Transform + pos: 83.5,-38.5 + parent: 2 + - uid: 27186 + components: + - type: Transform + pos: 83.5,-37.5 + parent: 2 + - uid: 27187 + components: + - type: Transform + pos: 82.5,-38.5 + parent: 2 + - uid: 27188 + components: + - type: Transform + pos: 83.5,-35.5 + parent: 2 + - uid: 27189 + components: + - type: Transform + pos: 80.5,-38.5 + parent: 2 + - uid: 27190 + components: + - type: Transform + pos: 83.5,-34.5 + parent: 2 + - uid: 27191 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 2 + - uid: 27192 + components: + - type: Transform + pos: 80.5,-34.5 + parent: 2 + - uid: 27193 + components: + - type: Transform + pos: 85.5,-34.5 + parent: 2 + - uid: 27194 + components: + - type: Transform + pos: 84.5,-34.5 + parent: 2 + - uid: 27195 + components: + - type: Transform + pos: 86.5,-33.5 + parent: 2 + - uid: 27196 + components: + - type: Transform + pos: 85.5,-33.5 + parent: 2 + - uid: 27197 + components: + - type: Transform + pos: 87.5,-31.5 + parent: 2 + - uid: 27198 + components: + - type: Transform + pos: 87.5,-30.5 + parent: 2 + - uid: 27199 + components: + - type: Transform + pos: 86.5,-30.5 + parent: 2 + - uid: 27200 + components: + - type: Transform + pos: 84.5,-30.5 + parent: 2 + - uid: 27201 + components: + - type: Transform + pos: 87.5,-27.5 + parent: 2 + - uid: 27202 + components: + - type: Transform + pos: 87.5,-26.5 + parent: 2 + - uid: 27203 + components: + - type: Transform + pos: 87.5,-25.5 + parent: 2 + - uid: 27204 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 27205 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 27206 + components: + - type: Transform + pos: 64.5,-24.5 + parent: 2 + - uid: 27207 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 2 + - uid: 27208 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - uid: 27209 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 27210 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 27211 + components: + - type: Transform + pos: 57.5,-25.5 + parent: 2 + - uid: 27212 + components: + - type: Transform + pos: 56.5,-25.5 + parent: 2 + - uid: 27213 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 2 + - uid: 27214 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 27215 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 2 + - uid: 27216 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 27217 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - uid: 27218 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 2 + - uid: 27219 + components: + - type: Transform + pos: 54.5,-21.5 + parent: 2 + - uid: 27220 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 27221 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 27222 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 2 + - uid: 27223 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 27224 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 27225 + components: + - type: Transform + pos: 50.5,-18.5 + parent: 2 + - uid: 27226 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 27227 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 27228 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 27229 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 + - uid: 27230 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 27231 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 27232 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 27233 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 27234 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 27235 + components: + - type: Transform + pos: 73.5,15.5 + parent: 2 + - uid: 27236 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 27237 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 27238 + components: + - type: Transform + pos: 60.5,-42.5 + parent: 2 + - uid: 27239 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - uid: 27240 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 27241 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 27242 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 27243 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 27244 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 27245 + components: + - type: Transform + pos: 59.5,-42.5 + parent: 2 + - uid: 27246 + components: + - type: Transform + pos: 55.5,-38.5 + parent: 2 + - uid: 27247 + components: + - type: Transform + pos: 58.5,-53.5 + parent: 2 + - uid: 27248 + components: + - type: Transform + pos: 63.5,-53.5 + parent: 2 + - uid: 27249 + components: + - type: Transform + pos: 55.5,-50.5 + parent: 2 + - uid: 27250 + components: + - type: Transform + pos: 81.5,-20.5 + parent: 2 + - uid: 27251 + components: + - type: Transform + pos: 80.5,-20.5 + parent: 2 + - uid: 27252 + components: + - type: Transform + pos: 84.5,-4.5 + parent: 2 + - uid: 27253 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 27254 + components: + - type: Transform + pos: 84.5,-12.5 + parent: 2 + - uid: 27255 + components: + - type: Transform + pos: 83.5,-12.5 + parent: 2 + - uid: 27256 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 2 + - uid: 27257 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 2 + - uid: 27258 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 2 + - uid: 27259 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 2 + - uid: 27260 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 27261 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 27262 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 27263 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 27264 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - uid: 27265 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 27266 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 27267 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 27268 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 27269 + components: + - type: Transform + pos: 62.5,-11.5 + parent: 2 + - uid: 27270 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - uid: 27271 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 2 + - uid: 27272 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 27273 + components: + - type: Transform + pos: 64.5,-10.5 + parent: 2 + - uid: 27274 + components: + - type: Transform + pos: 73.5,-11.5 + parent: 2 + - uid: 27275 + components: + - type: Transform + pos: 74.5,-11.5 + parent: 2 + - uid: 27276 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - uid: 27277 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 + - uid: 27278 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 27280 + components: + - type: Transform + pos: 74.5,-4.5 + parent: 2 + - uid: 27281 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 + - uid: 27282 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 27283 + components: + - type: Transform + pos: 74.5,-0.5 + parent: 2 + - uid: 27284 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 27285 + components: + - type: Transform + pos: 73.5,4.5 + parent: 2 + - uid: 27286 + components: + - type: Transform + pos: 67.5,-0.5 + parent: 2 + - uid: 27287 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - uid: 27288 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 2 + - uid: 27289 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 2 + - uid: 27290 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 2 + - uid: 27291 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 2 + - uid: 27292 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 2 + - uid: 27293 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 2 + - uid: 27294 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 27295 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 27296 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 27297 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 27298 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 27299 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 27300 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 27301 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 2 + - uid: 27302 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 2 + - uid: 27303 + components: + - type: Transform + pos: 64.5,-4.5 + parent: 2 + - uid: 27304 + components: + - type: Transform + pos: 63.5,-4.5 + parent: 2 + - uid: 27305 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - uid: 27306 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 27307 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 27308 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 2 + - uid: 27309 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 2 + - uid: 27310 + components: + - type: Transform + pos: 64.5,-6.5 + parent: 2 + - uid: 27311 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 27312 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 2 + - uid: 27313 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 27314 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 27315 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 27316 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 27317 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 27318 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 27319 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 27320 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 27321 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 27322 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 27323 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 27324 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 27325 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 27326 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 27327 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 27328 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 27329 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 27330 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 27331 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 27332 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 27333 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 27334 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 27335 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 27336 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 27337 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 27338 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 27339 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 27340 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 27341 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 27342 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 27343 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 27344 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 27345 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 27346 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 27347 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 27348 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 27349 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 27350 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 27351 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 27352 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 27353 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 27354 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 27355 + components: + - type: Transform + pos: 83.5,-40.5 + parent: 2 + - uid: 27356 + components: + - type: Transform + pos: 86.5,-54.5 + parent: 2 + - uid: 27357 + components: + - type: Transform + pos: 85.5,-54.5 + parent: 2 + - uid: 27358 + components: + - type: Transform + pos: 84.5,-54.5 + parent: 2 + - uid: 27359 + components: + - type: Transform + pos: 83.5,-54.5 + parent: 2 + - uid: 27360 + components: + - type: Transform + pos: 83.5,-55.5 + parent: 2 + - uid: 27361 + components: + - type: Transform + pos: 83.5,-53.5 + parent: 2 + - uid: 27362 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 27363 + components: + - type: Transform + pos: 81.5,-56.5 + parent: 2 + - uid: 27364 + components: + - type: Transform + pos: 81.5,-57.5 + parent: 2 + - uid: 27365 + components: + - type: Transform + pos: 81.5,-58.5 + parent: 2 + - uid: 27366 + components: + - type: Transform + pos: 81.5,-59.5 + parent: 2 + - uid: 27367 + components: + - type: Transform + pos: 80.5,-59.5 + parent: 2 + - uid: 27368 + components: + - type: Transform + pos: 78.5,-59.5 + parent: 2 + - uid: 27369 + components: + - type: Transform + pos: 77.5,-59.5 + parent: 2 + - uid: 27370 + components: + - type: Transform + pos: 77.5,-58.5 + parent: 2 + - uid: 27371 + components: + - type: Transform + pos: 77.5,-56.5 + parent: 2 + - uid: 27372 + components: + - type: Transform + pos: 76.5,-59.5 + parent: 2 + - uid: 27373 + components: + - type: Transform + pos: 83.5,-59.5 + parent: 2 + - uid: 27374 + components: + - type: Transform + pos: 83.5,-56.5 + parent: 2 + - uid: 27375 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 27376 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 27377 + components: + - type: Transform + pos: 48.5,-67.5 + parent: 2 + - uid: 27378 + components: + - type: Transform + pos: 48.5,-66.5 + parent: 2 + - uid: 27379 + components: + - type: Transform + pos: 37.5,-63.5 + parent: 2 + - uid: 27380 + components: + - type: Transform + pos: 36.5,-63.5 + parent: 2 + - uid: 27381 + components: + - type: Transform + pos: 75.5,-61.5 + parent: 2 + - uid: 27382 + components: + - type: Transform + pos: 75.5,-62.5 + parent: 2 + - uid: 27383 + components: + - type: Transform + pos: 75.5,-63.5 + parent: 2 + - uid: 27384 + components: + - type: Transform + pos: 72.5,-62.5 + parent: 2 + - uid: 27385 + components: + - type: Transform + pos: 72.5,-63.5 + parent: 2 + - uid: 27386 + components: + - type: Transform + pos: 72.5,-59.5 + parent: 2 + - uid: 27387 + components: + - type: Transform + pos: 71.5,-63.5 + parent: 2 + - uid: 27388 + components: + - type: Transform + pos: 70.5,-63.5 + parent: 2 + - uid: 27389 + components: + - type: Transform + pos: 69.5,-63.5 + parent: 2 + - uid: 27390 + components: + - type: Transform + pos: 67.5,-66.5 + parent: 2 + - uid: 27391 + components: + - type: Transform + pos: 70.5,-67.5 + parent: 2 + - uid: 27392 + components: + - type: Transform + pos: 69.5,-67.5 + parent: 2 + - uid: 27393 + components: + - type: Transform + pos: 68.5,-67.5 + parent: 2 + - uid: 27394 + components: + - type: Transform + pos: 67.5,-67.5 + parent: 2 + - uid: 27395 + components: + - type: Transform + pos: 71.5,-67.5 + parent: 2 + - uid: 27396 + components: + - type: Transform + pos: 68.5,-58.5 + parent: 2 + - uid: 27397 + components: + - type: Transform + pos: 66.5,-63.5 + parent: 2 + - uid: 27398 + components: + - type: Transform + pos: 67.5,-63.5 + parent: 2 + - uid: 27399 + components: + - type: Transform + pos: 71.5,-66.5 + parent: 2 + - uid: 27400 + components: + - type: Transform + pos: 71.5,-64.5 + parent: 2 + - uid: 27401 + components: + - type: Transform + pos: 69.5,-58.5 + parent: 2 + - uid: 27402 + components: + - type: Transform + pos: 70.5,-58.5 + parent: 2 + - uid: 27403 + components: + - type: Transform + pos: 66.5,-58.5 + parent: 2 + - uid: 27404 + components: + - type: Transform + pos: 66.5,-59.5 + parent: 2 + - uid: 27405 + components: + - type: Transform + pos: 66.5,-62.5 + parent: 2 + - uid: 27406 + components: + - type: Transform + pos: 66.5,-61.5 + parent: 2 + - uid: 27407 + components: + - type: Transform + pos: 49.5,-63.5 + parent: 2 + - uid: 27408 + components: + - type: Transform + pos: 46.5,-62.5 + parent: 2 + - uid: 27409 + components: + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 27410 + components: + - type: Transform + pos: 45.5,-64.5 + parent: 2 + - uid: 27411 + components: + - type: Transform + pos: 43.5,-64.5 + parent: 2 + - uid: 27412 + components: + - type: Transform + pos: 42.5,-64.5 + parent: 2 + - uid: 27413 + components: + - type: Transform + pos: 42.5,-63.5 + parent: 2 + - uid: 27414 + components: + - type: Transform + pos: 42.5,-62.5 + parent: 2 + - uid: 27415 + components: + - type: Transform + pos: 41.5,-63.5 + parent: 2 + - uid: 27416 + components: + - type: Transform + pos: 39.5,-63.5 + parent: 2 + - uid: 27417 + components: + - type: Transform + pos: 38.5,-63.5 + parent: 2 + - uid: 27418 + components: + - type: Transform + pos: 44.5,-67.5 + parent: 2 + - uid: 27419 + components: + - type: Transform + pos: 44.5,-69.5 + parent: 2 + - uid: 27420 + components: + - type: Transform + pos: 45.5,-69.5 + parent: 2 + - uid: 27421 + components: + - type: Transform + pos: 46.5,-69.5 + parent: 2 + - uid: 27422 + components: + - type: Transform + pos: 47.5,-69.5 + parent: 2 + - uid: 27423 + components: + - type: Transform + pos: 42.5,-67.5 + parent: 2 + - uid: 27424 + components: + - type: Transform + pos: 42.5,-66.5 + parent: 2 + - uid: 27425 + components: + - type: Transform + pos: 42.5,-69.5 + parent: 2 + - uid: 27426 + components: + - type: Transform + pos: 39.5,-69.5 + parent: 2 + - uid: 27427 + components: + - type: Transform + pos: 34.5,-65.5 + parent: 2 + - uid: 27428 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 2 + - uid: 27429 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 + - uid: 27430 + components: + - type: Transform + pos: 34.5,-67.5 + parent: 2 + - uid: 27431 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 + - uid: 27432 + components: + - type: Transform + pos: 41.5,-67.5 + parent: 2 + - uid: 27433 + components: + - type: Transform + pos: 39.5,-67.5 + parent: 2 + - uid: 27434 + components: + - type: Transform + pos: 32.5,-61.5 + parent: 2 + - uid: 27435 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 27436 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 27437 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 2 + - uid: 27438 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 27439 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 27440 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 27441 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 27442 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 27443 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 27444 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 27445 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 27446 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 27447 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 27448 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 27449 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 27450 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 27451 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 27452 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 27453 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 27454 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 27455 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 27456 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 27457 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 27458 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 27459 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 27460 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 27461 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 27462 + components: + - type: Transform + pos: -19.5,-59.5 + parent: 2 + - uid: 27463 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 + - uid: 27464 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 27465 + components: + - type: Transform + pos: -27.5,-59.5 + parent: 2 + - uid: 27466 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 27467 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 27468 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 27469 + components: + - type: Transform + pos: -22.5,-59.5 + parent: 2 + - uid: 27470 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 27471 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 27472 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 27473 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 + - uid: 27474 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 27475 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 27476 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 + - uid: 27477 + components: + - type: Transform + pos: -30.5,-51.5 + parent: 2 + - uid: 27478 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 27479 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 27480 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 27481 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 27482 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 27483 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 27484 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 27485 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 27486 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 27487 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - uid: 27488 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 27489 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 27490 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 27491 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 27492 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 27493 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 27494 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 27495 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 27496 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 27497 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 27498 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 27499 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 27500 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 27501 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 27502 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 27503 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 27504 + components: + - type: Transform + pos: -32.5,-58.5 + parent: 2 + - uid: 27505 + components: + - type: Transform + pos: -30.5,-48.5 + parent: 2 + - uid: 27506 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 27507 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - uid: 27508 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 27509 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - uid: 27510 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 27511 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 27512 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 27513 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 27514 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 27515 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 27516 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 27517 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 27518 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 27519 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 27520 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 27521 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 27522 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 27523 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 27524 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 27525 + components: + - type: Transform + pos: 26.5,-83.5 + parent: 2 + - uid: 27526 + components: + - type: Transform + pos: 31.5,-86.5 + parent: 2 + - uid: 27527 + components: + - type: Transform + pos: 25.5,-94.5 + parent: 2 + - uid: 27528 + components: + - type: Transform + pos: 23.5,-94.5 + parent: 2 + - uid: 27529 + components: + - type: Transform + pos: 33.5,-94.5 + parent: 2 + - uid: 27530 + components: + - type: Transform + pos: 31.5,-94.5 + parent: 2 + - uid: 27531 + components: + - type: Transform + pos: 62.5,-53.5 + parent: 2 + - uid: 27532 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 27533 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 27534 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 27535 + components: + - type: Transform + pos: 60.5,-53.5 + parent: 2 + - uid: 27536 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 27537 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 27538 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 27539 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 27540 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 27541 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 27542 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 27543 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 27544 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 27545 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 27546 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 27547 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 + - uid: 27548 + components: + - type: Transform + pos: -10.5,32.5 + parent: 2 + - uid: 27549 + components: + - type: Transform + pos: -10.5,33.5 + parent: 2 + - uid: 27550 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 27551 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 27552 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 27553 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 27554 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 27555 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 27556 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 27557 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 27558 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 27559 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 27560 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 27561 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 27562 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 27563 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 27564 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 27565 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 27566 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 27567 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 27568 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 27569 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 27570 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 27571 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 27572 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 27573 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 27574 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 27575 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 27576 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 27577 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 27578 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 27579 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 27580 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 27581 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 27582 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 27583 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 27584 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 27585 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 27586 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 27587 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 27588 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 27589 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 27590 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 27591 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 27592 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 27593 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 27594 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 27595 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 27596 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 27597 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 27598 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 27599 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 27600 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 27601 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 27602 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 27603 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 27604 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 27605 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 27606 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 27607 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 27608 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 27609 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 27610 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 27611 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 27612 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 27613 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 27614 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 27615 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 27616 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 27617 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 27618 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 27619 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 27620 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 27621 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 27622 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 27623 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 27624 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 27625 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 27626 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 27627 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 27628 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 27629 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 27630 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 27631 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 27632 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 27633 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 27634 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 27635 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 27636 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 27637 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 27638 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 27639 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 27640 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 27641 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 27642 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 27643 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 27644 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 27645 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 27646 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 27647 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 27648 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 27649 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 27650 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 27651 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 27652 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 27653 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 27654 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 27655 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 27656 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 27657 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 27658 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 27659 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 27660 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 27661 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 27662 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 27663 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 27664 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 27665 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 27666 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 27667 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 27668 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 27669 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 27670 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 27671 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 27672 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 27673 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 27674 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 27675 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 27676 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 27677 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 27678 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 27679 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 27680 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 27681 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 27682 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 27683 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 27684 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 27685 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 27686 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 27687 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 27688 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 27689 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 27690 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 27691 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 27692 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 27693 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 27694 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 27695 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 27696 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 27697 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 27698 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 27699 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 27700 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 27701 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 27702 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 27703 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 27704 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 27705 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 27706 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 27707 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 27708 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 27709 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 27710 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 27711 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 27712 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 27713 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 27714 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 27715 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 27716 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 27717 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 27718 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 27719 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 27720 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 27721 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 27722 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 27723 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 27724 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 27725 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 27726 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 27727 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 27728 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 27729 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 27730 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - uid: 27731 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 27732 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 27733 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 27734 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 27735 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 27736 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 27737 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 27738 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 27739 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 27740 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 27741 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 27742 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 27743 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 27744 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 27745 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 27746 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 27747 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 27748 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 27749 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 27750 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 27751 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 27752 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 27753 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 27754 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 27755 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 27756 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 27757 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 27758 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 27759 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 27760 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 27761 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 27762 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 27763 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 27764 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 27765 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 27766 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 27767 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 27768 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 27769 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 27770 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 27771 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 27772 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 27773 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 27774 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 27775 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 27776 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 27777 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 27778 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 27779 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 27780 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 27781 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 27782 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 27783 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 27784 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 27785 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 27786 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 27787 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 27788 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 27789 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 27790 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 27791 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 27792 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 27793 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 27794 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 27795 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 27796 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 27797 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 27798 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 27799 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 27800 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 27801 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 27802 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 27803 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 27804 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 27805 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 27806 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 27807 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 27808 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 27809 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 27810 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 27811 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 27812 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 27813 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 27814 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 27815 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 27816 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 27817 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 27818 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 27819 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 27820 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 27821 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 27822 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 27823 + components: + - type: Transform + pos: -10.5,52.5 + parent: 2 + - uid: 27824 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 27825 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 27826 + components: + - type: Transform + pos: -10.5,49.5 + parent: 2 + - uid: 27827 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 27828 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 27829 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - uid: 27830 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 27831 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 27832 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 27833 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 27834 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 27835 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 27836 + components: + - type: Transform + pos: -19.5,48.5 + parent: 2 + - uid: 27837 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 27838 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 27839 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 27840 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 27841 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 + - uid: 27842 + components: + - type: Transform + pos: -18.5,49.5 + parent: 2 + - uid: 27843 + components: + - type: Transform + pos: -19.5,49.5 + parent: 2 + - uid: 27844 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 27845 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 27846 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 27847 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 27848 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 27849 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 27850 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 27851 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 27852 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 2 + - uid: 27853 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 27854 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 27855 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 27856 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 27857 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 27858 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 27859 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 27860 + components: + - type: Transform + pos: -76.5,-15.5 + parent: 2 + - uid: 27861 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 27862 + components: + - type: Transform + pos: 56.5,-51.5 + parent: 2 + - uid: 27863 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 27864 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 27865 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 27866 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 27867 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 27868 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 27869 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 27870 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 27871 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 27872 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 27873 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 27874 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 27875 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 27876 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 27877 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 27878 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 27879 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 27880 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 27881 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 27882 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 27883 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 27884 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 27885 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 27886 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 27887 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 27888 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 27889 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 27890 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 27891 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 27892 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 27893 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 27894 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 27895 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 27896 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 27897 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 27898 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 27899 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 27900 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 27901 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 27902 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 27903 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 27904 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 27905 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 2 + - uid: 27906 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 27907 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 + - uid: 27908 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 27909 + components: + - type: Transform + pos: -38.5,-55.5 + parent: 2 + - uid: 27910 + components: + - type: Transform + pos: -37.5,-55.5 + parent: 2 + - uid: 27911 + components: + - type: Transform + pos: -38.5,-57.5 + parent: 2 + - uid: 27912 + components: + - type: Transform + pos: -37.5,-57.5 + parent: 2 + - uid: 27913 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 27914 + components: + - type: Transform + pos: 56.5,-48.5 + parent: 2 + - uid: 27915 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 + - uid: 27916 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 27917 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 2 + - uid: 27918 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 27919 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 27920 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 27921 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 27922 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 27923 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 27924 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 27925 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 27926 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - uid: 27927 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 27928 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 27929 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 27930 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 27931 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 27932 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 27933 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 27934 + components: + - type: Transform + pos: 43.5,-25.5 + parent: 2 + - uid: 27935 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 27936 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 27937 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 2 + - uid: 27938 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 27939 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 27940 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 27941 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 27942 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 2 + - uid: 27943 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 2 + - uid: 27944 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 27945 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 2 + - uid: 27946 + components: + - type: Transform + pos: 50.5,-37.5 + parent: 2 + - uid: 27947 + components: + - type: Transform + pos: 50.5,-36.5 + parent: 2 + - uid: 27948 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 2 + - uid: 27949 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 2 + - uid: 27950 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 27951 + components: + - type: Transform + pos: 47.5,-24.5 + parent: 2 + - uid: 27952 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 2 + - uid: 27953 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 27954 + components: + - type: Transform + pos: 61.5,-44.5 + parent: 2 + - uid: 27955 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 + - uid: 27956 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 27957 + components: + - type: Transform + pos: 56.5,-50.5 + parent: 2 + - uid: 27958 + components: + - type: Transform + pos: 61.5,-43.5 + parent: 2 + - uid: 27959 + components: + - type: Transform + pos: 61.5,-45.5 + parent: 2 + - uid: 27960 + components: + - type: Transform + pos: 61.5,-47.5 + parent: 2 + - uid: 27961 + components: + - type: Transform + pos: 61.5,-46.5 + parent: 2 + - uid: 27962 + components: + - type: Transform + pos: 58.5,-42.5 + parent: 2 + - uid: 27963 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 27964 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 27965 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 27966 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 27967 + components: + - type: Transform + pos: 37.5,-69.5 + parent: 2 + - uid: 27968 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 27969 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 27970 + components: + - type: Transform + pos: 61.5,-49.5 + parent: 2 + - uid: 27971 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 27972 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 2 + - uid: 27973 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 2 + - uid: 27974 + components: + - type: Transform + pos: 50.5,-61.5 + parent: 2 + - uid: 27975 + components: + - type: Transform + pos: 61.5,-48.5 + parent: 2 + - uid: 27976 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 27977 + components: + - type: Transform + pos: 55.5,-42.5 + parent: 2 + - uid: 27978 + components: + - type: Transform + pos: 57.5,-42.5 + parent: 2 + - uid: 27979 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 27980 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 27981 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - uid: 27982 + components: + - type: Transform + pos: 52.5,-42.5 + parent: 2 + - uid: 27983 + components: + - type: Transform + pos: 51.5,-42.5 + parent: 2 + - uid: 27984 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 2 + - uid: 27985 + components: + - type: Transform + pos: 63.5,-49.5 + parent: 2 + - uid: 27986 + components: + - type: Transform + pos: 62.5,-49.5 + parent: 2 + - uid: 27987 + components: + - type: Transform + pos: 60.5,-46.5 + parent: 2 + - uid: 27988 + components: + - type: Transform + pos: 59.5,-46.5 + parent: 2 + - uid: 27989 + components: + - type: Transform + pos: 56.5,-43.5 + parent: 2 + - uid: 27990 + components: + - type: Transform + pos: 56.5,-49.5 + parent: 2 + - uid: 27991 + components: + - type: Transform + pos: 56.5,-47.5 + parent: 2 + - uid: 27992 + components: + - type: Transform + pos: 56.5,-45.5 + parent: 2 + - uid: 27993 + components: + - type: Transform + pos: 56.5,-44.5 + parent: 2 + - uid: 27994 + components: + - type: Transform + pos: 52.5,-47.5 + parent: 2 + - uid: 27995 + components: + - type: Transform + pos: 54.5,-42.5 + parent: 2 + - uid: 27996 + components: + - type: Transform + pos: 56.5,-42.5 + parent: 2 + - uid: 27997 + components: + - type: Transform + pos: 63.5,-42.5 + parent: 2 + - uid: 27998 + components: + - type: Transform + pos: 62.5,-42.5 + parent: 2 + - uid: 27999 + components: + - type: Transform + pos: 52.5,-48.5 + parent: 2 + - uid: 28000 + components: + - type: Transform + pos: 52.5,-50.5 + parent: 2 + - uid: 28001 + components: + - type: Transform + pos: 52.5,-46.5 + parent: 2 + - uid: 28002 + components: + - type: Transform + pos: 61.5,-42.5 + parent: 2 + - uid: 28003 + components: + - type: Transform + pos: 52.5,-49.5 + parent: 2 + - uid: 28004 + components: + - type: Transform + pos: 53.5,-42.5 + parent: 2 + - uid: 28005 + components: + - type: Transform + pos: 50.5,-46.5 + parent: 2 + - uid: 28006 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 28007 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 28008 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - uid: 28009 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 28010 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 28011 + components: + - type: Transform + pos: 47.5,-43.5 + parent: 2 + - uid: 28012 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 2 + - uid: 28013 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - uid: 28014 + components: + - type: Transform + pos: 43.5,-48.5 + parent: 2 + - uid: 28015 + components: + - type: Transform + pos: 45.5,-48.5 + parent: 2 + - uid: 28016 + components: + - type: Transform + pos: 47.5,-48.5 + parent: 2 + - uid: 28017 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 28018 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 28019 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 28020 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 28021 + components: + - type: Transform + pos: -16.5,48.5 + parent: 2 + - uid: 28022 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 28023 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 28024 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 28025 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 28026 + components: + - type: Transform + pos: 47.5,-46.5 + parent: 2 + - uid: 28027 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 28028 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 28029 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 28030 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 28031 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 28032 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 28033 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 28034 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 28035 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 28036 + components: + - type: Transform + pos: 47.5,-47.5 + parent: 2 + - uid: 28037 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 2 + - uid: 28038 + components: + - type: Transform + pos: 42.5,-48.5 + parent: 2 + - uid: 28039 + components: + - type: Transform + pos: 44.5,-48.5 + parent: 2 + - uid: 28040 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 28041 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 28042 + components: + - type: Transform + pos: 46.5,-48.5 + parent: 2 + - uid: 28043 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 2 + - uid: 28044 + components: + - type: Transform + pos: 46.5,-43.5 + parent: 2 + - uid: 28045 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 28046 + components: + - type: Transform + pos: -16.5,42.5 + parent: 2 + - uid: 28047 + components: + - type: Transform + pos: -14.5,46.5 + parent: 2 + - uid: 28048 + components: + - type: Transform + pos: -16.5,46.5 + parent: 2 + - uid: 28049 + components: + - type: Transform + pos: -16.5,47.5 + parent: 2 + - uid: 28050 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 28051 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 28052 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - uid: 28053 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 28054 + components: + - type: Transform + pos: -16.5,40.5 + parent: 2 + - uid: 28055 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 28056 + components: + - type: Transform + pos: -16.5,51.5 + parent: 2 + - uid: 28057 + components: + - type: Transform + pos: -17.5,49.5 + parent: 2 + - uid: 28058 + components: + - type: Transform + pos: -15.5,46.5 + parent: 2 + - uid: 28059 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 28060 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 28061 + components: + - type: Transform + pos: -21.5,49.5 + parent: 2 + - uid: 28062 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 28063 + components: + - type: Transform + pos: -20.5,49.5 + parent: 2 + - uid: 28064 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 28065 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 28066 + components: + - type: Transform + pos: 86.5,-4.5 + parent: 2 + - uid: 28067 + components: + - type: Transform + pos: 86.5,-12.5 + parent: 2 + - uid: 28068 + components: + - type: Transform + pos: 85.5,-12.5 + parent: 2 + - uid: 28069 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 28070 + components: + - type: Transform + pos: 83.5,-51.5 + parent: 2 + - uid: 28071 + components: + - type: Transform + pos: 83.5,-50.5 + parent: 2 + - uid: 28072 + components: + - type: Transform + pos: 83.5,-58.5 + parent: 2 + - uid: 28073 + components: + - type: Transform + pos: 36.5,-66.5 + parent: 2 + - uid: 28074 + components: + - type: Transform + pos: 37.5,-66.5 + parent: 2 + - uid: 28075 + components: + - type: Transform + pos: 37.5,-65.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 28076 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 28077 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 28078 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 28079 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - uid: 28080 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 28081 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 28082 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 28083 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 28084 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 28085 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 28086 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 28087 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 28088 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 + - uid: 28089 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 28090 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 28091 + components: + - type: Transform + pos: 87.5,-29.5 + parent: 2 + - uid: 28092 + components: + - type: Transform + pos: 87.5,-24.5 + parent: 2 + - uid: 28093 + components: + - type: Transform + pos: 75.5,-59.5 + parent: 2 + - uid: 28094 + components: + - type: Transform + pos: 72.5,-61.5 + parent: 2 + - uid: 28095 + components: + - type: Transform + pos: 37.5,-67.5 + parent: 2 + - uid: 28096 + components: + - type: Transform + pos: 41.5,-69.5 + parent: 2 + - uid: 28097 + components: + - type: Transform + pos: 44.5,-66.5 + parent: 2 + - uid: 28098 + components: + - type: Transform + pos: 46.5,-63.5 + parent: 2 + - uid: 28099 + components: + - type: Transform + pos: 33.5,-60.5 + parent: 2 + - uid: 28100 + components: + - type: Transform + pos: 35.5,-58.5 + parent: 2 + - uid: 28101 + components: + - type: Transform + pos: 40.5,-69.5 + parent: 2 + - uid: 28102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-43.5 + parent: 2 + - uid: 28103 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 28104 + components: + - type: Transform + pos: -18.5,-63.5 + parent: 2 + - uid: 28105 + components: + - type: Transform + pos: -17.5,-62.5 + parent: 2 + - uid: 28106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-59.5 + parent: 2 + - uid: 28107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-59.5 + parent: 2 + - uid: 28108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-59.5 + parent: 2 + - uid: 28109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-59.5 + parent: 2 + - uid: 28110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-48.5 + parent: 2 + - uid: 28111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-48.5 + parent: 2 + - uid: 28112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-48.5 + parent: 2 + - uid: 28113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 2 + - uid: 28114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-48.5 + parent: 2 + - uid: 28115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 2 + - uid: 28116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 28117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-55.5 + parent: 2 + - uid: 28118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - uid: 28119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - uid: 28120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - uid: 28121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-47.5 + parent: 2 + - uid: 28122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 + - uid: 28123 + components: + - type: Transform + pos: 67.5,-64.5 + parent: 2 + - uid: 28124 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 +- proto: WardrobeAtmospherics + entities: + - uid: 28125 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeBlackFilled + entities: + - uid: 28126 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeBlueFilled + entities: + - uid: 28127 + components: + - type: Transform + pos: 54.5,-43.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 28128 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 28129 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeGreenFilled + entities: + - uid: 28130 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeGreyFilled + entities: + - uid: 28131 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28132 + components: + - type: Transform + pos: 41.5,-73.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeMixedFilled + entities: + - uid: 28133 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28134 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28135 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobePinkFilled + entities: + - uid: 28136 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobePrisonFilled + entities: + - uid: 28137 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28138 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28139 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 28140 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 28141 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28142 + components: + - type: Transform + pos: -17.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28143 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28144 + components: + - type: Transform + pos: -21.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28145 + components: + - type: Transform + pos: -18.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeSalvageFilled + entities: + - uid: 28146 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeScienceFilled + entities: + - uid: 28147 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 28148 + components: + - type: Transform + pos: 73.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeWhiteFilled + entities: + - uid: 28149 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28150 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28151 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 28152 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WarningAir + entities: + - uid: 28153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-45.5 + parent: 2 +- proto: WarningCO2 + entities: + - uid: 28154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-53.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 28155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-65.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 28156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-61.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 28157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-57.5 + parent: 2 +- proto: WarningTritium + entities: + - uid: 28158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 28159 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 28160 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - type: WarpPoint + location: port bow + - uid: 28161 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - type: WarpPoint + location: starboard bow + - uid: 28162 + components: + - type: Transform + pos: 76.5,-62.5 + parent: 2 + - type: WarpPoint + location: starboard quarter +- proto: WarpPointAI + entities: + - uid: 28163 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 +- proto: WarpPointArrivals + entities: + - uid: 28164 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 2 +- proto: WarpPointBar + entities: + - uid: 28165 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 +- proto: WarpPointBombing + entities: + - uid: 28166 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 28167 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 28168 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 28169 + components: + - type: Transform + pos: 76.5,-53.5 + parent: 2 + - uid: 28170 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 28171 + components: + - type: Transform + pos: 77.5,-21.5 + parent: 2 + - uid: 28172 + components: + - type: Transform + pos: 77.5,-35.5 + parent: 2 + - uid: 28173 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 28174 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 +- proto: WarpPointBotany + entities: + - uid: 28175 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 +- proto: WarpPointBridge + entities: + - uid: 28176 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 +- proto: WarpPointChapel + entities: + - uid: 28177 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 2 +- proto: WarpPointCourt + entities: + - uid: 28178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 +- proto: WarpPointCryo + entities: + - uid: 28179 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 +- proto: WarpPointDetective + entities: + - uid: 28180 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 +- proto: WarpPointDisposals + entities: + - uid: 28181 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 +- proto: WarpPointDorms + entities: + - uid: 28182 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 +- proto: WarpPointEngineering + entities: + - uid: 28183 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 +- proto: WarpPointEpistemics + entities: + - uid: 28184 + components: + - type: Transform + pos: 71.5,-21.5 + parent: 2 +- proto: WarpPointEvac + entities: + - uid: 28185 + components: + - type: Transform + pos: 81.5,-8.5 + parent: 2 +- proto: WarpPointHOP + entities: + - uid: 28186 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 +- proto: WarpPointJanitor + entities: + - uid: 28187 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 +- proto: WarpPointKitchen + entities: + - uid: 28188 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 +- proto: WarpPointLawyer + entities: + - uid: 28189 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 +- proto: WarpPointLibrary + entities: + - uid: 28190 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 2 +- proto: WarpPointLogistics + entities: + - uid: 28191 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 +- proto: WarpPointMedical + entities: + - uid: 28192 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 +- proto: WarpPointMorgue + entities: + - uid: 28193 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 +- proto: WarpPointPerma + entities: + - uid: 28194 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 +- proto: WarpPointReporter + entities: + - uid: 28195 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 +- proto: WarpPointSalvage + entities: + - uid: 28196 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 +- proto: WarpPointVault + entities: + - uid: 28197 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 28198 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 28199 + components: + - type: Transform + pos: 63.5,-50.5 + parent: 2 + - uid: 28200 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 28201 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 28202 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 28203 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 28204 + components: + - type: Transform + pos: 52.5,-37.5 + parent: 2 + - uid: 28205 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 28206 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 28207 + components: + - type: Transform + pos: 23.5,-96.5 + parent: 2 + - uid: 28208 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 28209 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 28210 + components: + - type: Transform + pos: 67.5,6.5 + parent: 2 + - uid: 28211 + components: + - type: Transform + pos: 74.5,10.5 + parent: 2 + - uid: 28212 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 28213 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 28214 + components: + - type: Transform + pos: -60.5,7.5 + parent: 2 + - uid: 28215 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 28216 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 28217 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 28218 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 28219 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 28220 + components: + - type: Transform + pos: 48.5,-47.5 + parent: 2 + - uid: 28221 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 2 + - uid: 28222 + components: + - type: Transform + pos: 74.5,-59.5 + parent: 2 + - uid: 28223 + components: + - type: Transform + pos: 82.5,-39.5 + parent: 2 + - uid: 28224 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 2 + - uid: 28225 + components: + - type: Transform + pos: 9.5,-74.5 + parent: 2 + - uid: 28226 + components: + - type: Transform + pos: -8.5,-94.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 28227 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 28228 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 28229 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 28230 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 28231 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 28232 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 28233 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - type: ContainerContainer + containers: + WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 28234 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - type: ContainerContainer + containers: + WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 28235 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 28236 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 28237 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 28238 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 28239 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 28240 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 28241 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 28242 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 28243 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 28244 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 28245 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 28246 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 +- proto: WeaponDisabler + entities: + - uid: 28247 + components: + - type: Transform + pos: 16.460697,34.505676 + parent: 2 + - uid: 28248 + components: + - type: Transform + pos: 4.4614744,33.066376 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 28249 + components: + - type: Transform + pos: 25.415077,32.67617 + parent: 2 + - uid: 28250 + components: + - type: Transform + pos: 25.540077,32.58242 + parent: 2 +- proto: WeaponEnergyGunMiniSecurity + entities: + - uid: 28251 + components: + - type: Transform + pos: 14.0631695,39.68506 + parent: 2 +- proto: WeaponEnergyShotgun + entities: + - uid: 19364 + components: + - type: Transform + parent: 19363 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponLaserCarbinePractice + entities: + - uid: 28252 + components: + - type: Transform + pos: 21.462696,34.988297 + parent: 2 +- proto: WeaponLauncherRocket + entities: + - uid: 9784 + components: + - type: Transform + parent: 9781 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunKammerer + entities: + - uid: 1198 + components: + - type: Transform + parent: 1194 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunSawn + entities: + - uid: 11154 + components: + - type: Transform + parent: 11147 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 19321 + components: + - type: Transform + parent: 19314 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 28253 + components: + - type: Transform + pos: 12.440808,41.017372 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: WeedSpray + entities: + - uid: 28254 + components: + - type: Transform + pos: 48.492844,1.7853565 + parent: 2 + - uid: 28255 + components: + - type: Transform + pos: 48.25847,1.6759815 + parent: 2 + - uid: 28256 + components: + - type: Transform + pos: 48.35222,1.7228565 + parent: 2 + - uid: 28257 + components: + - type: Transform + pos: 2.5214396,51.592094 + parent: 2 +- proto: Welder + entities: + - uid: 28258 + components: + - type: Transform + pos: -37.277958,2.8924625 + parent: 2 + - uid: 28259 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 28260 + components: + - type: Transform + pos: 10.537883,-49.512733 + parent: 2 + - uid: 28261 + components: + - type: Transform + pos: 63.406197,-21.795422 + parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 28262 + components: + - type: Transform + pos: 63.67182,-20.248547 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 28263 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 28264 + components: + - type: Transform + pos: -22.5,-71.5 + parent: 2 + - uid: 28265 + components: + - type: Transform + pos: 33.5,-96.5 + parent: 2 + - uid: 28266 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 28267 + components: + - type: Transform + pos: 65.5,6.5 + parent: 2 + - uid: 28268 + components: + - type: Transform + pos: 75.5,10.5 + parent: 2 + - uid: 28269 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 28270 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 28271 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 28272 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 28273 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 28274 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 28275 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 28276 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 28277 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 28278 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 28279 + components: + - type: Transform + pos: 48.5,-46.5 + parent: 2 + - uid: 28280 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 2 + - uid: 28281 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 28282 + components: + - type: Transform + pos: 73.5,-59.5 + parent: 2 + - uid: 28283 + components: + - type: Transform + pos: 80.5,-39.5 + parent: 2 + - uid: 28284 + components: + - type: Transform + pos: 84.5,-29.5 + parent: 2 + - uid: 28285 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 28286 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 28287 + components: + - type: Transform + pos: 9.5,-73.5 + parent: 2 + - uid: 28288 + components: + - type: Transform + pos: -9.5,-94.5 + parent: 2 +- proto: Windoor + entities: + - uid: 28289 + components: + - type: Transform + pos: 58.5,-49.5 + parent: 2 + - uid: 28290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 28291 + components: + - type: MetaData + name: Reception Window + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 + - uid: 28292 + components: + - type: MetaData + name: Theatre Stage + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 28293 + components: + - type: MetaData + name: Fitness Ring + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + - uid: 28294 + components: + - type: MetaData + name: Fitness Ring + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 2 + - uid: 28295 + components: + - type: MetaData + name: Theatre Stage + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 2 + - uid: 28296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 28297 + components: + - type: MetaData + name: Reception Desk + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 28298 + components: + - type: MetaData + name: Reception Desk + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 28299 + components: + - type: MetaData + name: Brig Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 2 + - uid: 28300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 28301 + components: + - type: MetaData + name: Reception Desk + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 28302 + components: + - type: MetaData + name: Security Disposals Belt + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 28303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,12.5 + parent: 2 + - uid: 28304 + components: + - type: MetaData + name: Library Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 28305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,16.5 + parent: 2 + - uid: 28306 + components: + - type: MetaData + name: Garden + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 28307 + components: + - type: MetaData + name: Garden + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 28308 + components: + - type: MetaData + name: Reception Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-16.5 + parent: 2 + - uid: 28309 + components: + - type: MetaData + name: Reception Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-16.5 + parent: 2 + - uid: 28310 + components: + - type: MetaData + name: Reception Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-23.5 + parent: 2 + - uid: 28311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,50.5 + parent: 2 +- proto: WindoorAssembly + entities: + - uid: 28312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,23.5 + parent: 2 +- proto: WindoorBarLocked + entities: + - uid: 28313 + components: + - type: MetaData + name: Bar Door + - type: Transform + pos: 30.5,-8.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 28314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 28315 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 28316 + components: + - type: MetaData + name: Cargo Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 28317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 28318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 28319 + components: + - type: MetaData + name: Hydroponics Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-10.5 + parent: 2 + - uid: 28320 + components: + - type: MetaData + name: Hydroponics Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-10.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 28321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 2 + - uid: 28322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 2 + - uid: 28323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 2 + - uid: 28324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 28325 + components: + - type: MetaData + name: Kitchen's Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 28326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 28327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-10.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 28328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 28329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,42.5 + parent: 2 + - uid: 28330 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 28332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,42.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 28333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 + - uid: 28334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 2 + - uid: 28335 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 28336 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 28337 + components: + - type: MetaData + name: Chemistry Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 28338 + components: + - type: MetaData + name: Chemistry Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 28339 + components: + - type: MetaData + name: Chemistry Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 28340 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 28341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-23.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 28342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-110.5 + parent: 2 + - uid: 28343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 28344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 2 + - uid: 28345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 28346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 2 + - uid: 28347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 28348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 28349 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 28350 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 28351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-68.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 28352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 +- proto: WindoorSecureMailLocked + entities: + - uid: 28353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 28354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-19.5 + parent: 2 + - uid: 28355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-19.5 + parent: 2 + - uid: 28356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 28357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-19.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 28358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-29.5 + parent: 2 + - uid: 28359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-55.5 + parent: 2 + - uid: 28360 + components: + - type: MetaData + name: Research Delivery + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-21.5 + parent: 2 + - uid: 28361 + components: + - type: MetaData + name: Robotics Desk + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 28362 + components: + - type: MetaData + name: Robotics Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-23.5 + parent: 2 + - uid: 28363 + components: + - type: MetaData + name: Research And Development Desk + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 28364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-37.5 + parent: 2 + - uid: 28365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-23.5 + parent: 2 + - uid: 28366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 28367 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 28368 + components: + - type: MetaData + name: Courtroom + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 28369 + components: + - type: MetaData + name: Courtroom + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 28370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,26.5 + parent: 2 + - uid: 28371 + components: + - type: MetaData + name: Courtroom + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - uid: 28372 + components: + - type: MetaData + name: Courtroom + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 + - uid: 28373 + components: + - type: MetaData + name: Holding Cell + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 28374 + components: + - type: MetaData + name: Brig Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - uid: 28375 + components: + - type: MetaData + name: Brig Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 2 + - uid: 28376 + components: + - type: MetaData + name: Cell 3 + - type: Transform + pos: -1.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1285 + - uid: 28377 + components: + - type: MetaData + name: Cell 2 + - type: Transform + pos: -5.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1286 + - uid: 28378 + components: + - type: MetaData + name: Cell 1 + - type: Transform + pos: -9.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1287 + - uid: 28379 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 28380 + components: + - type: MetaData + name: Armory Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 + - uid: 28381 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 28382 + components: + - type: MetaData + name: Security Checkpoint Desk + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,2.5 + parent: 2 + - uid: 28383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,40.5 + parent: 2 + - uid: 28384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 + parent: 2 + - uid: 28385 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 +- proto: Window + entities: + - uid: 28386 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 28387 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 28388 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 28389 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 28390 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 28391 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 28392 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 28393 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 28394 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 28395 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 28396 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 28397 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 28398 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 28399 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 28400 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 28401 + components: + - type: Transform + pos: 86.5,-37.5 + parent: 2 + - uid: 28402 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 28403 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 28404 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 28405 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 28406 + components: + - type: Transform + pos: 52.5,-38.5 + parent: 2 + - uid: 28407 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 28408 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 28409 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 28410 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 28411 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 28412 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 28413 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 28414 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 28415 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 2 + - uid: 28416 + components: + - type: Transform + pos: 65.5,-49.5 + parent: 2 + - uid: 28417 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 28418 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 28419 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 28420 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 28421 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 28422 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 28423 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 + - uid: 28424 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 2 + - uid: 28425 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 28426 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 + - uid: 28427 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 28428 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 + - uid: 28429 + components: + - type: Transform + pos: 72.5,-11.5 + parent: 2 + - uid: 28430 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 28431 + components: + - type: Transform + pos: 78.5,-61.5 + parent: 2 + - uid: 28432 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 28433 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 28434 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 28435 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 28436 + components: + - type: Transform + pos: 59.5,-53.5 + parent: 2 + - uid: 28437 + components: + - type: Transform + pos: 61.5,-53.5 + parent: 2 + - uid: 28438 + components: + - type: Transform + pos: 57.5,-53.5 + parent: 2 + - uid: 28439 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 28440 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 28441 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 28442 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 28443 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 28444 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 28445 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 28446 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 28447 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 28448 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 28449 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 28450 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 28451 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 28452 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 28453 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 28454 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 28455 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 28456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 2 + - uid: 28457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 2 + - uid: 28458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-30.5 + parent: 2 + - uid: 28459 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 28460 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 28461 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 28462 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 28463 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 28464 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 28465 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 28466 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 28467 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 28468 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 28469 + components: + - type: Transform + pos: 56.5,-38.5 + parent: 2 + - uid: 28470 + components: + - type: Transform + pos: 57.5,-38.5 + parent: 2 + - uid: 28471 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 2 + - uid: 28472 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 28473 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 28474 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 28475 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 28476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 2 + - uid: 28477 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 28478 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 28479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 28480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - uid: 28481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 28482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - uid: 28483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 28484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 28485 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 28486 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 28487 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 28488 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 28489 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 28490 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 28491 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 28492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - uid: 28493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,52.5 + parent: 2 + - uid: 28494 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 28495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 28496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - uid: 28497 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 28498 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 28499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,19.5 + parent: 2 + - uid: 28500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,16.5 + parent: 2 + - uid: 28501 + components: + - type: Transform + pos: 59.5,-49.5 + parent: 2 + - uid: 28502 + components: + - type: Transform + pos: 57.5,-49.5 + parent: 2 + - uid: 28503 + components: + - type: Transform + pos: 60.5,-49.5 + parent: 2 + - uid: 28504 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 28505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 2 + - uid: 28506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-22.5 + parent: 2 + - uid: 28507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-24.5 + parent: 2 + - uid: 28508 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 28509 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 28510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-17.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 28511 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 28512 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 28513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - uid: 28514 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 28515 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 28516 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 28517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-36.5 + parent: 2 + - uid: 28518 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 28519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 28520 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 28521 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 28522 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 28523 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 28524 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 28525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-30.5 + parent: 2 + - uid: 28526 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 28527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,13.5 + parent: 2 + - uid: 28528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,14.5 + parent: 2 + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,16.5 + parent: 2 + - uid: 28530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 2 + - uid: 28531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,13.5 + parent: 2 + - uid: 28532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,12.5 + parent: 2 + - uid: 28533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - uid: 28534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-110.5 + parent: 2 + - uid: 28535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-110.5 + parent: 2 + - uid: 28536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-110.5 + parent: 2 + - uid: 28537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-110.5 + parent: 2 + - uid: 28538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 2 + - uid: 28539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-55.5 + parent: 2 + - uid: 28540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 + - uid: 28541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-55.5 + parent: 2 + - uid: 28542 + components: + - type: Transform + pos: 35.5,-68.5 + parent: 2 + - uid: 28543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 28544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 28545 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 28546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 28547 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - uid: 28548 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 28549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + - uid: 28550 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 28551 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 28552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 28553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 28554 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 28555 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 28556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 28557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 28558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 28559 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 28560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + - uid: 28561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,13.5 + parent: 2 + - uid: 28562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 2 + - uid: 28563 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 28564 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 28565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 2 + - uid: 28566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 28567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 2 + - uid: 28568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 2 + - uid: 28569 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 28570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - uid: 28571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 + - uid: 28572 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 28573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,11.5 + parent: 2 + - uid: 28574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + - uid: 28575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 + - uid: 28576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 2 + - uid: 28577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,31.5 + parent: 2 + - uid: 28578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 2 + - uid: 28579 + components: + - type: Transform + pos: 22.5,37.5 + parent: 2 + - uid: 28580 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 28581 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 28582 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 28583 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 28584 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 28585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,16.5 + parent: 2 + - uid: 28586 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 28587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,16.5 + parent: 2 + - uid: 28588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,15.5 + parent: 2 + - uid: 28589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 + - uid: 28590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 2 + - uid: 28591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 2 + - uid: 28592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - uid: 28594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 2 + - uid: 28595 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - uid: 28596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 2 + - uid: 28597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 + - uid: 28598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-23.5 + parent: 2 + - uid: 28599 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 28600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - uid: 28601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-17.5 + parent: 2 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-17.5 + parent: 2 + - uid: 28603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 2 + - uid: 28604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 2 + - uid: 28605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 28606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - uid: 28607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 28608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-62.5 + parent: 2 + - uid: 28609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 28610 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 28611 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 28612 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 28613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-33.5 + parent: 2 + - uid: 28614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-34.5 + parent: 2 + - uid: 28615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-35.5 + parent: 2 + - uid: 28616 + components: + - type: Transform + pos: 71.5,-59.5 + parent: 2 + - uid: 28617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - uid: 28618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 28619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 28620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 28621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 28622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - uid: 28623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,42.5 + parent: 2 + - uid: 28624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 2 + - uid: 28625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,42.5 + parent: 2 + - uid: 28626 + components: + - type: Transform + pos: -18.5,46.5 + parent: 2 + - uid: 28627 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 28628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,42.5 + parent: 2 + - uid: 28629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 28630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 2 + - uid: 28631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 2 + - uid: 28632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,39.5 + parent: 2 + - uid: 28633 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 28634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-66.5 + parent: 2 + - uid: 28635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-65.5 + parent: 2 + - uid: 28636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 2 + - uid: 28637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 28638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 28639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - uid: 28640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 28641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - uid: 28642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 28643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,45.5 + parent: 2 + - uid: 28644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 2 + - uid: 28645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,43.5 + parent: 2 + - uid: 28646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 2 + - uid: 28647 + components: + - type: Transform + pos: -11.5,34.5 + parent: 2 + - uid: 28648 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 + - uid: 28649 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 28650 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 28651 + components: + - type: Transform + pos: -42.44495,5.5643377 + parent: 2 + - uid: 28652 + components: + - type: Transform + pos: -8.450888,-33.681717 + parent: 2 +- proto: WoodDoor + entities: + - uid: 28653 + components: + - type: Transform + pos: 73.5,-3.5 + parent: 2 + - uid: 28654 + components: + - type: Transform + pos: 73.5,-1.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 28655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - uid: 28656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 +- proto: Wrench + entities: + - uid: 28657 + components: + - type: Transform + pos: -24.479126,-9.448747 + parent: 2 + - uid: 28658 + components: + - type: Transform + pos: 37.56429,-35.54103 + parent: 2 + - uid: 28659 + components: + - type: Transform + pos: 44.39694,-40.48777 + parent: 2 + - uid: 28660 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 28661 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 28662 + components: + - type: Transform + pos: 27.472874,22.499187 + parent: 2 + - uid: 28663 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 28664 + components: + - type: Transform + pos: -40.403015,5.626782 + parent: 2 + - uid: 28665 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 28666 + components: + - type: Transform + pos: -52.517487,-13.387003 + parent: 2 + - uid: 28667 + components: + - type: Transform + pos: -21.530937,-40.42064 + parent: 2 + - uid: 28668 + components: + - type: Transform + pos: -25.576,-43.60518 + parent: 2 + - uid: 28669 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 28670 + components: + - type: Transform + pos: 84.626945,-48.5344 + parent: 2 + - uid: 28671 + components: + - type: Transform + pos: 65.5,-53.5 + parent: 2 + - uid: 28672 + components: + - type: Transform + pos: 79.5,-47.5 + parent: 2 + - uid: 28673 + components: + - type: Transform + pos: 33.549847,-95.50195 + parent: 2 + - uid: 28674 + components: + - type: Transform + pos: 45.568157,-44.43049 + parent: 2 + - uid: 28675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.447876,-9.495622 + parent: 2 +- proto: Zipties + entities: + - uid: 28676 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 +... diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 9685efd2e1..8284ed3961 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -61680,6 +61680,13 @@ entities: - type: Transform pos: -1.5,-11.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 22546 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 - proto: ComputerRadar entities: - uid: 4074 diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index f19c2065af..4c1274f61d 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -5356,7 +5356,8 @@ entities: -12,7: 0: 65535 -11,7: - 0: 65535 + 0: 57343 + 3: 8192 -11,-8: 0: 53198 -10,-8: @@ -5451,11 +5452,11 @@ entities: 0: 65535 1,-12: 0: 61937 - 3: 14 - 4: 3584 + 4: 14 + 5: 3584 1,-11: 0: 65521 - 5: 14 + 6: 14 1,-10: 0: 65535 2,-12: @@ -5560,15 +5561,15 @@ entities: 0: 63487 0,-14: 0: 65522 - 3: 12 + 4: 12 0,-13: 0: 65535 1,-14: 0: 65521 1,-13: 0: 61937 - 3: 14 - 6: 3584 + 4: 14 + 7: 3584 2,-14: 0: 12848 2,-13: @@ -5937,7 +5938,7 @@ entities: 0: 1908 -16,7: 0: 40704 - 3: 24576 + 4: 24576 -15,7: 0: 65280 -12,10: @@ -5954,7 +5955,7 @@ entities: 0: 65535 -16,9: 0: 65439 - 3: 96 + 4: 96 -16,10: 0: 231 -15,8: @@ -6091,17 +6092,17 @@ entities: 0: 4095 5,-12: 0: 883 - 3: 3212 + 4: 3212 3,-13: 0: 51200 4,-13: 0: 65392 - 3: 128 + 4: 128 5,-13: 0: 4096 - 3: 59184 + 4: 59184 6,-12: - 3: 305 + 4: 305 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6148,6 +6149,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: @@ -39459,6 +39475,14 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 17482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,32.5 + parent: 2 - proto: ComputerRadar entities: - uid: 6157 @@ -40235,6 +40259,24 @@ entities: - type: Transform pos: -42.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: CrateScienceSecure entities: - uid: 6273 diff --git a/Resources/Maps/europa.yml b/Resources/Maps/europa.yml index 0d54891dc6..c642efb66c 100644 --- a/Resources/Maps/europa.yml +++ b/Resources/Maps/europa.yml @@ -34896,12 +34896,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,33.5 parent: 1 - - uid: 299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - uid: 455 components: - type: Transform @@ -37855,6 +37849,14 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-24.5 parent: 1 +- proto: ComputerPsionicsRecords + entities: + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 - proto: ComputerRadar entities: - uid: 3026 @@ -65764,7 +65766,7 @@ entities: pos: -11.5,11.5 parent: 1 - type: Door - secondsUntilStateChange: -26515.367 + secondsUntilStateChange: -27843.273 state: Opening - type: Occluder enabled: True diff --git a/Resources/Maps/gaxstation.yml b/Resources/Maps/gaxstation.yml index f502c4b698..cada7f3a9d 100644 --- a/Resources/Maps/gaxstation.yml +++ b/Resources/Maps/gaxstation.yml @@ -53573,6 +53573,14 @@ entities: - type: Transform pos: -31.5,29.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 20872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,26.5 + parent: 2 - proto: ComputerRadar entities: - uid: 7211 @@ -134450,7 +134458,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -120542.65 + secondsUntilStateChange: -120749.305 state: Opening - uid: 18112 components: diff --git a/Resources/Maps/glacier.yml b/Resources/Maps/glacier.yml index c0fcbe1532..b26763d30b 100644 --- a/Resources/Maps/glacier.yml +++ b/Resources/Maps/glacier.yml @@ -46151,7 +46151,7 @@ entities: occludes: True ents: - 6158 - toggleable-clothing: !type:ContainerSlot + toggleable-clothing: !type:Container showEnts: False occludes: True ent: null @@ -46640,6 +46640,14 @@ entities: - type: Transform pos: 35.5,50.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 17501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 2 - proto: ComputerRadar entities: - uid: 17129 diff --git a/Resources/Maps/hammurabi.yml b/Resources/Maps/hammurabi.yml index 09f874f94b..d360afe201 100644 --- a/Resources/Maps/hammurabi.yml +++ b/Resources/Maps/hammurabi.yml @@ -88000,6 +88000,14 @@ entities: rot: 3.141592653589793 rad pos: -114.5,-89.5 parent: 1 +- proto: ComputerPsionicsRecords + entities: + - uid: 42455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-41.5 + parent: 1 - proto: ComputerRadar entities: - uid: 8226 diff --git a/Resources/Maps/hive.yml b/Resources/Maps/hive.yml index ef0019b345..d24bf87ea5 100644 --- a/Resources/Maps/hive.yml +++ b/Resources/Maps/hive.yml @@ -60757,6 +60757,14 @@ entities: - type: Transform pos: -96.5,5.5 parent: 1 +- proto: ComputerPsionicsRecords + entities: + - uid: 27792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 1 - proto: ComputerRadar entities: - uid: 5888 diff --git a/Resources/Maps/lighthouse.yml b/Resources/Maps/lighthouse.yml index 9921bbb9f6..0ee3064aba 100644 --- a/Resources/Maps/lighthouse.yml +++ b/Resources/Maps/lighthouse.yml @@ -44908,6 +44908,13 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 100 +- proto: ComputerPsionicsRecords + entities: + - uid: 20901 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 100 - proto: ComputerResearchAndDevelopment entities: - uid: 5793 diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 30d6d9beb6..308f9dd3e5 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -257,7 +257,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,2: ind: -3,2 @@ -293,7 +293,7 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 5,0: ind: 5,0 @@ -301,7 +301,7 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -7146,7 +7146,8 @@ entities: 1: 61441 17,0: 1: 223 - 0: 57376 + 0: 49184 + 5: 8192 17,2: 0: 65295 17,3: @@ -7156,7 +7157,8 @@ entities: 1: 53384 0: 11826 17,1: - 0: 61166 + 6: 34 + 0: 61132 17,4: 1: 17487 18,0: @@ -7354,34 +7356,34 @@ entities: 1: 257 16,-4: 1: 8738 - 6: 136 - 7: 32768 + 7: 136 + 8: 32768 16,-3: 1: 8738 - 7: 32904 + 8: 32904 16,-2: 1: 57890 - 7: 136 + 8: 136 16,-5: 1: 8738 - 6: 32768 - 7: 136 + 7: 32768 + 8: 136 17,-4: - 6: 51 - 7: 12288 + 7: 51 + 8: 12288 0: 2176 1: 32768 17,-3: - 7: 12339 + 8: 12339 1: 34952 17,-2: - 7: 51 + 8: 51 1: 55432 0: 8192 17,-5: - 6: 12288 + 7: 12288 0: 34816 - 7: 51 + 8: 51 1: 136 18,-4: 0: 3975 @@ -7418,7 +7420,7 @@ entities: 0: 61166 16,-6: 1: 8928 - 7: 32768 + 8: 32768 17,-8: 0: 32767 1: 32768 @@ -7427,7 +7429,7 @@ entities: 0: 61991 17,-6: 1: 35037 - 7: 12288 + 8: 12288 0: 34 17,-9: 0: 65535 @@ -8495,6 +8497,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10339,7 +10356,7 @@ entities: pos: -53.5,-12.5 parent: 2 - type: Door - secondsUntilStateChange: -12876.496 + secondsUntilStateChange: -16530.613 state: Opening - type: DeviceLinkSource lastSignals: @@ -12362,11 +12379,6 @@ entities: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 474 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 2 - uid: 475 components: - type: Transform @@ -13744,17 +13756,17 @@ entities: parent: 2 - proto: AmeController entities: - - uid: 715 + - uid: 27754 components: - type: Transform - pos: 71.5,8.5 + pos: 74.5,8.5 parent: 2 - proto: AmeJar entities: - uid: 716 components: - type: Transform - pos: 69.74754,6.5310707 + pos: 75.76041,8.575789 parent: 2 - type: Physics angularDamping: 0 @@ -13762,7 +13774,7 @@ entities: - uid: 717 components: - type: Transform - pos: 69.29755,6.512321 + pos: 75.43465,8.510685 parent: 2 - type: Physics angularDamping: 0 @@ -13770,7 +13782,7 @@ entities: - uid: 718 components: - type: Transform - pos: 69.46629,6.4373207 + pos: 75.2229,8.543238 parent: 2 - type: Physics angularDamping: 0 @@ -13787,17 +13799,6 @@ entities: - type: Transform pos: 36.40142,-39.497105 parent: 2 -- proto: AntimovCircuitBoard - entities: - - uid: 27614 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -7.476329,18.621954 - parent: 2 - - type: Physics - angularDamping: 0 - linearDamping: 0 - proto: AntiPoisonMedipen entities: - uid: 721 @@ -14403,6 +14404,14 @@ entities: - type: Transform pos: -32.5,-25.5 parent: 2 + - uid: 27724 + components: + - type: MetaData + name: mystagogue's APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 2 - proto: APCHighCapacity entities: - uid: 807 @@ -14480,6 +14489,60 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 + - uid: 27693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - uid: 27742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-5.5 + parent: 2 + - uid: 27743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,4.5 + parent: 2 + - uid: 27744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,4.5 + parent: 2 + - uid: 27745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-74.5 + parent: 2 + - uid: 27746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-74.5 + parent: 2 + - uid: 27747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-74.5 + parent: 2 + - uid: 27748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-74.5 + parent: 2 + - uid: 27749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 816 @@ -15884,11 +15947,6 @@ entities: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 1035 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 2 - proto: BookshelfFilled entities: - uid: 1036 @@ -16340,8 +16398,11 @@ entities: - uid: 1119 components: - type: Transform - pos: -29.420187,16.629967 + pos: -29.348734,16.937946 parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 - uid: 1120 components: - type: Transform @@ -29875,25 +29936,20 @@ entities: - type: Transform pos: 16.5,-42.5 parent: 2 - - uid: 3810 - components: - - type: Transform - pos: 17.5,-42.5 - parent: 2 - uid: 3811 components: - type: Transform - pos: 18.5,-42.5 + pos: 19.5,-42.5 parent: 2 - uid: 3812 components: - type: Transform - pos: 19.5,-42.5 + pos: 20.5,-42.5 parent: 2 - uid: 3813 components: - type: Transform - pos: 20.5,-42.5 + pos: 18.5,-42.5 parent: 2 - uid: 3814 components: @@ -35285,6 +35341,86 @@ entities: - type: Transform pos: -32.5,-27.5 parent: 2 + - uid: 27711 + components: + - type: Transform + pos: 75.5,-33.5 + parent: 2 + - uid: 27712 + components: + - type: Transform + pos: 75.5,-34.5 + parent: 2 + - uid: 27713 + components: + - type: Transform + pos: 75.5,-35.5 + parent: 2 + - uid: 27714 + components: + - type: Transform + pos: 75.5,-36.5 + parent: 2 + - uid: 27715 + components: + - type: Transform + pos: 75.5,-37.5 + parent: 2 + - uid: 27716 + components: + - type: Transform + pos: 75.5,-38.5 + parent: 2 + - uid: 27717 + components: + - type: Transform + pos: 63.5,-33.5 + parent: 2 + - uid: 27718 + components: + - type: Transform + pos: 63.5,-35.5 + parent: 2 + - uid: 27719 + components: + - type: Transform + pos: 63.5,-34.5 + parent: 2 + - uid: 27720 + components: + - type: Transform + pos: 63.5,-36.5 + parent: 2 + - uid: 27721 + components: + - type: Transform + pos: 63.5,-37.5 + parent: 2 + - uid: 27722 + components: + - type: Transform + pos: 64.5,-37.5 + parent: 2 + - uid: 27723 + components: + - type: Transform + pos: 64.5,-38.5 + parent: 2 + - uid: 27738 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 27739 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 27740 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 - proto: CableApcStack entities: - uid: 4872 @@ -35338,6 +35474,11 @@ entities: - type: InsideEntityStorage - proto: CableHV entities: + - uid: 715 + components: + - type: Transform + pos: 76.5,4.5 + parent: 2 - uid: 4880 components: - type: Transform @@ -40153,15 +40294,10 @@ entities: - type: Transform pos: 69.5,8.5 parent: 2 - - uid: 5843 - components: - - type: Transform - pos: 70.5,8.5 - parent: 2 - uid: 5844 components: - type: Transform - pos: 71.5,8.5 + pos: 69.5,7.5 parent: 2 - uid: 5845 components: @@ -40173,11 +40309,6 @@ entities: - type: Transform pos: -10.5,-44.5 parent: 2 - - uid: 5847 - components: - - type: Transform - pos: 72.5,8.5 - parent: 2 - uid: 5848 components: - type: Transform @@ -40506,7 +40637,7 @@ entities: - uid: 5913 components: - type: Transform - pos: 73.5,8.5 + pos: 69.5,4.5 parent: 2 - uid: 5914 components: @@ -42081,17 +42212,12 @@ entities: - uid: 6228 components: - type: Transform - pos: 73.5,7.5 + pos: 75.5,4.5 parent: 2 - uid: 6229 components: - type: Transform - pos: 73.5,6.5 - parent: 2 - - uid: 6230 - components: - - type: Transform - pos: 73.5,5.5 + pos: 72.5,4.5 parent: 2 - uid: 6231 components: @@ -44298,10 +44424,30 @@ entities: - type: Transform pos: 103.5,13.5 parent: 2 - - uid: 6672 + - uid: 8685 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: 69.5,5.5 + parent: 2 + - uid: 9179 components: - type: Transform - pos: 73.5,3.5 + pos: 69.5,6.5 + parent: 2 + - uid: 27752 + components: + - type: Transform + pos: 70.5,4.5 parent: 2 - proto: CableHVStack entities: @@ -44352,6 +44498,11 @@ entities: - type: Transform pos: -50.5,-8.5 parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 - uid: 6678 components: - type: Transform @@ -51647,6 +51798,71 @@ entities: - type: Transform pos: -32.5,-26.5 parent: 2 + - uid: 27725 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 27726 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 27727 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 2 + - uid: 27728 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 27729 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - uid: 27730 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 27731 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 + - uid: 27732 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - uid: 27733 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 27734 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 27735 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 27736 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 27737 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 - proto: CableMVStack entities: - uid: 8128 @@ -53684,6 +53900,11 @@ entities: - type: Transform pos: -38.5,38.5 parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 - uid: 8507 components: - type: Transform @@ -56562,8 +56783,7 @@ entities: - uid: 9085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,7.5 + pos: 69.5,4.5 parent: 2 - uid: 9086 components: @@ -56915,7 +57135,7 @@ entities: - uid: 9155 components: - type: Transform - pos: 73.5,6.5 + pos: 71.5,4.5 parent: 2 - uid: 9156 components: @@ -57019,15 +57239,10 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,35.5 parent: 2 - - uid: 9173 - components: - - type: Transform - pos: 72.5,8.5 - parent: 2 - uid: 9174 components: - type: Transform - pos: 73.5,5.5 + pos: 74.5,4.5 parent: 2 - uid: 9175 components: @@ -57037,22 +57252,12 @@ entities: - uid: 9176 components: - type: Transform - pos: 73.5,8.5 + pos: 69.5,5.5 parent: 2 - uid: 9177 components: - type: Transform - pos: 73.5,3.5 - parent: 2 - - uid: 9178 - components: - - type: Transform - pos: 71.5,8.5 - parent: 2 - - uid: 9179 - components: - - type: Transform - pos: 70.5,8.5 + pos: 72.5,4.5 parent: 2 - uid: 9180 components: @@ -57069,11 +57274,31 @@ entities: - type: Transform pos: -39.5,39.5 parent: 2 + - uid: 18585 + components: + - type: Transform + pos: 76.5,4.5 + parent: 2 - uid: 19629 components: - type: Transform pos: -38.5,39.5 parent: 2 + - uid: 21158 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 27750 + components: + - type: Transform + pos: 69.5,7.5 + parent: 2 + - uid: 27751 + components: + - type: Transform + pos: 69.5,6.5 + parent: 2 - proto: Chair entities: - uid: 9182 @@ -58957,6 +59182,12 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-52.5 parent: 2 + - uid: 27741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.4016218,-54.420845 + parent: 2 - proto: ChanterelleSeeds entities: - uid: 9508 @@ -62089,13 +62320,6 @@ entities: - type: Transform pos: -12.479112,53.69428 parent: 2 -- proto: ClothingHeadHatChickenhead - entities: - - uid: 9773 - components: - - type: Transform - pos: -5.4823875,-23.406746 - parent: 2 - proto: ClothingHeadHatCone entities: - uid: 9774 @@ -63650,6 +63874,11 @@ entities: parent: 2 - proto: ComputerId entities: + - uid: 3810 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 - uid: 10027 components: - type: Transform @@ -63667,6 +63896,29 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-3.5 parent: 2 + - uid: 16178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,14.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 27764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-38.5 + parent: 2 - proto: ComputerMassMedia entities: - uid: 18656 @@ -63714,6 +63966,11 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: + - uid: 5847 + components: + - type: Transform + pos: 76.5,8.5 + parent: 2 - uid: 10035 components: - type: Transform @@ -63769,6 +64026,26 @@ entities: rot: 3.141592653589793 rad pos: 110.5,-0.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 1035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-52.5 + parent: 2 + - uid: 27708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 2 + - uid: 27763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 - proto: ComputerRadar entities: - uid: 10045 @@ -63850,6 +64127,11 @@ entities: - type: Transform pos: -42.5,42.5 parent: 2 + - uid: 22583 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 10058 @@ -64323,15 +64605,15 @@ entities: parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 27692 + - uid: 6672 components: - type: Transform - pos: 69.5,5.5 + pos: 73.5,8.5 parent: 2 - - uid: 27693 + - uid: 27755 components: - type: Transform - pos: 69.5,4.5 + pos: 72.5,8.5 parent: 2 - proto: CrateEngineeringCableBulk entities: @@ -65007,10 +65289,10 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 10199 + - uid: 11673 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 38.5,19.5 parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin @@ -65547,6 +65829,12 @@ entities: - type: Transform pos: -22.5,-37.5 parent: 2 + - uid: 27692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 - proto: DeployableBarrier entities: - uid: 10277 @@ -72270,13 +72558,6 @@ entities: - type: Transform pos: -12.5,-0.5 parent: 2 - - uid: 11439 - components: - - type: MetaData - name: raccoon bed - - type: Transform - pos: -29.5,14.5 - parent: 2 - uid: 11440 components: - type: Transform @@ -72304,6 +72585,11 @@ entities: - type: Transform pos: 19.5,-37.5 parent: 2 + - uid: 19667 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 - proto: DonkpocketBoxSpawner entities: - uid: 11445 @@ -73679,11 +73965,6 @@ entities: - type: Transform pos: -11.5,-0.5 parent: 2 - - uid: 11673 - components: - - type: Transform - pos: -30.5,17.5 - parent: 2 - uid: 11674 components: - type: Transform @@ -75688,7 +75969,7 @@ entities: pos: -3.5,-52.5 parent: 2 - type: Door - secondsUntilStateChange: -40902.03 + secondsUntilStateChange: -44556.15 state: Closing - uid: 11944 components: @@ -103788,6 +104069,8 @@ entities: rot: 3.141592653589793 rad pos: 41.5,36.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15634 components: - type: Transform @@ -107896,11 +108179,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-30.5 parent: 2 - - uid: 16178 - components: - - type: Transform - pos: 73.5,-30.5 - parent: 2 - uid: 16179 components: - type: Transform @@ -107931,12 +108209,17 @@ entities: rot: 3.141592653589793 rad pos: 77.5,-30.5 parent: 2 - - uid: 16184 + - uid: 18302 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-35.5 parent: 2 + - uid: 18313 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 2 - proto: GasThermoMachineFreezer entities: - uid: 16185 @@ -109705,6 +109988,8 @@ entities: - type: DeviceNetwork deviceLists: - 27684 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16410 components: - type: Transform @@ -111123,6 +111408,8 @@ entities: - type: DeviceNetwork deviceLists: - 27683 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 16592 @@ -118851,8 +119138,11 @@ entities: - uid: 18110 components: - type: Transform - pos: -29.701797,16.777357 + pos: -29.68807,17.548298 parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 - uid: 18111 components: - type: Transform @@ -119844,6 +120134,12 @@ entities: - type: Transform pos: 108.5,10.5 parent: 2 + - uid: 27614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-27.5 + parent: 2 - proto: IntercomScience entities: - uid: 18249 @@ -120166,11 +120462,6 @@ entities: ent: null - type: Physics canCollide: True - - uid: 18302 - components: - - type: Transform - pos: 8.57861,46.945236 - parent: 2 - uid: 18303 components: - type: Transform @@ -120256,23 +120547,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 18313 - components: - - type: Transform - pos: -29.551394,17.78557 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Physics - canCollide: True - uid: 18314 components: - type: Transform @@ -121012,6 +121286,11 @@ entities: parent: 2 - proto: LockerEngineerFilledHardsuit entities: + - uid: 11439 + components: + - type: Transform + pos: 71.5,8.5 + parent: 2 - uid: 18368 components: - type: Transform @@ -121037,11 +121316,6 @@ entities: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 18373 - components: - - type: Transform - pos: 69.5,3.5 - parent: 2 - uid: 26482 components: - type: Transform @@ -121604,29 +121878,11 @@ entities: parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 18399 + - uid: 21636 components: - type: Transform - pos: -31.5,17.5 + pos: -31.5,14.5 parent: 2 - - 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 - proto: LockerResearchDirectorFilled entities: - uid: 18400 @@ -123453,15 +123709,18 @@ entities: parent: 2 - proto: Multitool entities: - - uid: 18584 + - uid: 18399 components: - type: Transform - pos: 1.4946156,-0.61666465 - parent: 2 - - uid: 18585 + parent: 18373 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 18584 components: - type: Transform - pos: -29.27196,17.553543 + pos: 1.4946156,-0.61666465 parent: 2 - uid: 18586 components: @@ -123503,6 +123762,14 @@ entities: - type: Transform pos: -7.4754887,-15.527573 parent: 2 +- proto: N14ChairMetalRed + entities: + - uid: 10199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,7.5 + parent: 2 - proto: N14CrateBreakWood entities: - uid: 27663 @@ -124428,8 +124695,11 @@ entities: - uid: 18739 components: - type: Transform - pos: -29.364641,17.068672 + pos: -29.25372,16.531046 parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 - uid: 18740 components: - type: Transform @@ -126229,6 +126499,20 @@ entities: - type: Transform pos: 22.490398,-38.506836 parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 27709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-39.5 + parent: 2 + - uid: 27710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-39.5 + parent: 2 - proto: Poweredlight entities: - uid: 18929 @@ -130662,11 +130946,6 @@ entities: parent: 2 - proto: Rack entities: - - uid: 8685 - components: - - type: Transform - pos: 69.5,6.5 - parent: 2 - uid: 19630 components: - type: Transform @@ -130852,11 +131131,6 @@ entities: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 19667 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - uid: 19668 components: - type: Transform @@ -131279,6 +131553,11 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-29.5 parent: 2 + - uid: 27753 + components: + - type: Transform + pos: 75.5,8.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 19754 @@ -132494,13 +132773,19 @@ entities: - uid: 19980 components: - type: Transform - pos: 43.381737,8.657005 + pos: 46.619476,9.088318 parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 - uid: 19981 components: - type: Transform - pos: 43.631737,8.657005 + pos: 46.29371,9.034065 parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 - proto: ReagentContainerFlour entities: - uid: 19982 @@ -137371,11 +137656,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 20878 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - proto: ShowcaseRobotMarauder entities: - uid: 20879 @@ -142130,10 +142410,10 @@ entities: parent: 2 - proto: SpawnMobRaccoonMorticia entities: - - uid: 21636 + - uid: 16184 components: - type: Transform - pos: -29.5,14.5 + pos: -31.5,17.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: @@ -142366,6 +142646,33 @@ entities: - type: Transform pos: 38.5,30.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 26510 + components: + - type: Transform + pos: -73.5,-8.5 + parent: 2 + - uid: 27506 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 27759 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 27760 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 27761 + components: + - type: Transform + pos: -75.5,7.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 21678 @@ -142385,6 +142692,13 @@ entities: - type: Transform pos: -25.5,-16.5 parent: 2 +- proto: SpawnPointLocationMidRoundAntag + entities: + - uid: 27762 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 - proto: SpawnPointMagistrate entities: - uid: 27707 @@ -146157,11 +146471,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.519176,-36.51747 parent: 2 - - uid: 27506 - components: - - type: Transform - pos: -11.502878,-23.421644 - parent: 2 - proto: SyringeInaprovaline entities: - uid: 22125 @@ -146192,6 +146501,16 @@ entities: parent: 2 - proto: Table entities: + - uid: 20878 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 - uid: 22130 components: - type: Transform @@ -146469,11 +146788,6 @@ entities: - type: Transform pos: -33.5,23.5 parent: 2 - - uid: 22185 - components: - - type: Transform - pos: -29.5,17.5 - parent: 2 - uid: 22186 components: - type: Transform @@ -147737,6 +148051,12 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-46.5 parent: 2 + - uid: 22682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 2 - uid: 27492 components: - type: Transform @@ -147970,11 +148290,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-49.5 parent: 2 - - uid: 22473 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - uid: 22474 components: - type: Transform @@ -148514,11 +148829,6 @@ entities: - type: Transform pos: 43.5,9.5 parent: 2 - - uid: 22583 - components: - - type: Transform - pos: 43.5,8.5 - parent: 2 - uid: 22584 components: - type: Transform @@ -149006,11 +149316,6 @@ entities: - type: Transform pos: 12.5,45.5 parent: 2 - - uid: 22682 - components: - - type: Transform - pos: 11.5,48.5 - parent: 2 - uid: 22683 components: - type: Transform @@ -150232,6 +150537,23 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: + - uid: 18373 + components: + - type: Transform + pos: -29.443748,17.656805 + parent: 2 + - type: Storage + storedItems: + 18399: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 18399 - uid: 22894 components: - type: Transform @@ -150247,16 +150569,6 @@ entities: - type: Transform pos: -21.440018,15.740278 parent: 2 - - uid: 22897 - components: - - type: Transform - pos: 26.383194,19.631002 - parent: 2 - - uid: 22898 - components: - - type: Transform - pos: 26.555069,19.506002 - parent: 2 - uid: 22900 components: - type: Transform @@ -150287,6 +150599,16 @@ entities: - type: Transform pos: -50.49951,-34.41139 parent: 2 + - uid: 27757 + components: + - type: Transform + pos: 20.41722,16.470388 + parent: 2 + - uid: 27758 + components: + - type: Transform + pos: 19.570234,15.721689 + parent: 2 - proto: TowercapSeeds entities: - uid: 22904 @@ -151001,6 +151323,12 @@ entities: - type: Transform pos: 54.5,16.5 parent: 2 + - uid: 27756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-11.5 + parent: 2 - proto: VendingMachineGames entities: - uid: 22996 @@ -151303,6 +151631,15 @@ entities: parent: 2 - proto: VendingMachineWallMedical entities: + - uid: 474 + components: + - type: MetaData + name: Public NanoMed + - type: Transform + pos: -11.5,-23.5 + parent: 2 + missingComponents: + - AccessReader - uid: 9557 components: - type: Transform @@ -151310,17 +151647,21 @@ entities: parent: 2 missingComponents: - AccessReader - - uid: 21158 + - uid: 9773 components: + - type: MetaData + name: Public NanoMed - type: Transform - pos: -6.5,-22.5 + pos: -5.5,-23.5 parent: 2 missingComponents: - AccessReader - - uid: 21160 + - uid: 22473 components: + - type: MetaData + name: Public NanoMed - type: Transform - pos: -11.5,-22.5 + pos: 26.5,19.5 parent: 2 missingComponents: - AccessReader @@ -169164,6 +169505,11 @@ entities: parent: 2 - proto: WeaponCapacitorRecharger entities: + - uid: 22185 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 - uid: 26501 components: - type: Transform @@ -169209,11 +169555,6 @@ entities: - type: Transform pos: 16.5,41.5 parent: 2 - - uid: 26510 - components: - - type: Transform - pos: 11.5,48.5 - parent: 2 - uid: 26511 components: - type: Transform diff --git a/Resources/Maps/pebble.yml b/Resources/Maps/pebble.yml index 9b7c428b51..1d468237f2 100644 --- a/Resources/Maps/pebble.yml +++ b/Resources/Maps/pebble.yml @@ -29532,6 +29532,14 @@ entities: rot: 3.141592653589793 rad pos: 37.5,14.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 10854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,28.5 + parent: 2 - proto: ComputerRadar entities: - uid: 4588 diff --git a/Resources/Maps/radstation.yml b/Resources/Maps/radstation.yml index f350c67478..ed00efa981 100644 --- a/Resources/Maps/radstation.yml +++ b/Resources/Maps/radstation.yml @@ -15129,7 +15129,7 @@ entities: pos: 34.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -55586.55 + secondsUntilStateChange: -55771.664 state: Opening - uid: 383 components: @@ -62312,6 +62312,14 @@ entities: - type: Transform pos: -12.5,-55.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 22318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-28.5 + parent: 2 - proto: ComputerRadar entities: - uid: 9048 @@ -157782,7 +157790,7 @@ entities: links: - 19976 - type: Door - secondsUntilStateChange: -191878.86 + secondsUntilStateChange: -192063.97 state: Opening - uid: 23356 components: diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index e2f8a80853..b681e6923d 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -4332,7 +4332,7 @@ entities: pos: 3.5,22.5 parent: 31 - type: Door - secondsUntilStateChange: -32634.607 + secondsUntilStateChange: -32743.814 state: Opening - type: DeviceLinkSource lastSignals: @@ -29782,6 +29782,14 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,3.5 parent: 31 +- proto: ComputerPsionicsRecords + entities: + - uid: 11412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 31 - proto: ComputerRadar entities: - uid: 579 diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml index 4cbe47174a..d75e9c6c75 100644 --- a/Resources/Maps/shoukou.yml +++ b/Resources/Maps/shoukou.yml @@ -30445,6 +30445,14 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-35.5 parent: 34 +- proto: ComputerPsionicsRecords + entities: + - uid: 13763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 34 - proto: ComputerRadar entities: - uid: 5579 @@ -36708,7 +36716,7 @@ entities: pos: -36.5,-22.5 parent: 34 - type: Door - secondsUntilStateChange: -67401.266 + secondsUntilStateChange: -68431.75 state: Closing - uid: 1274 components: diff --git a/Resources/Maps/submarine.yml b/Resources/Maps/submarine.yml index 0890fe73aa..123cc527dc 100644 --- a/Resources/Maps/submarine.yml +++ b/Resources/Maps/submarine.yml @@ -100515,6 +100515,14 @@ entities: - type: Transform pos: 87.5,-19.5 parent: 2 +- proto: ComputerPsionicsRecords + entities: + - uid: 39308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 - proto: ComputerRadar entities: - uid: 6359 diff --git a/Resources/Maps/tortuga.yml b/Resources/Maps/tortuga.yml index f9f702c820..df56bcd11f 100644 --- a/Resources/Maps/tortuga.yml +++ b/Resources/Maps/tortuga.yml @@ -63598,6 +63598,14 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,28.5 parent: 33 +- proto: ComputerPsionicsRecords + entities: + - uid: 28381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 33 - proto: ComputerRadar entities: - uid: 3325 diff --git a/Resources/Prototypes/Actions/psionics.yml b/Resources/Prototypes/Actions/psionics.yml index 97d19aae5f..5580ad136f 100644 --- a/Resources/Prototypes/Actions/psionics.yml +++ b/Resources/Prototypes/Actions/psionics.yml @@ -302,7 +302,6 @@ useDelay: 10 checkCanInteract: false event: !type:DarkSwapActionEvent - manaCost: 30 - type: entity id: ActionPyrokineticFlare diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 0a57157f1b..5014263a81 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -444,3 +444,19 @@ - type: InstantAction useDelay: 4 +- type: entity + id: ActionSelfExtinguish + name: Self-Extinguish + description: Extinguishes you if you are on fire and insulated against self-ignition. + categories: [ HideSpawnMenu ] + components: + - type: InstantAction + itemIconStyle: BigItem + icon: + sprite: Objects/Misc/fire_extinguisher.rsi + state: fire_extinguisher_open + iconCooldown: + sprite: Objects/Misc/fire_extinguisher.rsi + state: fire_extinguisher_closed + iconDisabled: Interface/Default/blocked.png + event: !type:SelfExtinguishEvent diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index 449f40a212..759fe70423 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -7,8 +7,8 @@ - category: Health - category: Mood - category: Stamina - - alertType: Mana - alertType: SuitPower + - alertType: ModsuitPower # Goobstation - Modsuits - category: Internals - alertType: Fire - alertType: Handcuffed @@ -55,6 +55,24 @@ name: alerts-low-nitrogen-name description: alerts-low-nitrogen-desc +- type: alert + id: LowPlasma + category: Breathing + icons: + - sprite: /Textures/Interface/Alerts/breathing.rsi + state: not_enough_tox + name: alerts-low-plasma-name + description: alerts-low-plasma-desc + +- type: alert + id: HighOxygen + category: Breathing + icons: + - sprite: /Textures/Interface/Alerts/breathing.rsi + state: too_much_oxy + name: alerts-high-oxygen-name + description: alerts-high-oxygen-desc + - type: alert id: Toxins category: Toxins @@ -619,28 +637,3 @@ state: deflecting0 name: alerts-deflecting-name description: alerts-deflecting-desc - -- type: alert - id: Mana - onClick: !type:CheckMana { } - icons: - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power0 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power1 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power2 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power3 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power4 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power5 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power6 - - sprite: /Textures/Interface/Alerts/mana.rsi - state: power7 - name: alerts-mana-name - description: alerts-mana-desc - minSeverity: 0 - maxSeverity: 7 diff --git a/Resources/Prototypes/Atmospherics/thresholds.yml b/Resources/Prototypes/Atmospherics/thresholds.yml index 81f7bda4d2..3dc1ed7582 100644 --- a/Resources/Prototypes/Atmospherics/thresholds.yml +++ b/Resources/Prototypes/Atmospherics/thresholds.yml @@ -36,14 +36,21 @@ - type: alarmThreshold id: stationCO2 upperBound: !type:AlarmThresholdSetting - threshold: 0.0025 + threshold: 0.006 upperWarnAround: !type:AlarmThresholdSetting - threshold: 0.5 + threshold: 0.5 # minor gasping and airloss at 0.3% - type: alarmThreshold id: stationPlasma upperBound: !type:AlarmThresholdSetting - threshold: 0.00125 + threshold: 0.005 # lightable beyond this concentration + upperWarnAround: !type:AlarmThresholdSetting + threshold: 0.5 + +- type: alarmThreshold + id: stationTritium + upperBound: !type:AlarmThresholdSetting + threshold: 0.004 # lightable beyond this concentration upperWarnAround: !type:AlarmThresholdSetting threshold: 0.5 @@ -76,3 +83,17 @@ id: danger # just any gas you don't want at all upperBound: !type:AlarmThresholdSetting threshold: 0.0001 + +- type: alarmThreshold + id: voxOxygen + upperBound: !type:AlarmThresholdSetting + threshold: 0.02 # 2% + upperWarnAround: !type:AlarmThresholdSetting + threshold: 0.5 # 1% + +- type: alarmThreshold + id: voxNitrogen + lowerBound: !type:AlarmThresholdSetting + threshold: 0.8 # danger below 80% nitrogen + lowerWarnAround: !type:AlarmThresholdSetting + threshold: 1.125 # warning below 90% diff --git a/Resources/Prototypes/Body/Organs/plasmaman.yml b/Resources/Prototypes/Body/Organs/plasmaman.yml new file mode 100644 index 0000000000..fa69a490ea --- /dev/null +++ b/Resources/Prototypes/Body/Organs/plasmaman.yml @@ -0,0 +1,150 @@ +- type: entity + id: BasePlasmamanOrgan + abstract: true + components: + - type: Sprite + sprite: Mobs/Species/Plasmaman/organs.rsi + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 5 # Not very nutritious + - ReagentId: Plasma + Quantity: 2.5 + food: + maxVol: 5 + reagents: + - ReagentId: Plasma + Quantity: 5 + - type: Extractable + grindableSolutionName: food + juiceSolution: + reagents: + - ReagentId: Plasma + Quantity: 5 + - type: FlavorProfile + flavors: + - plasma + +- type: entity + id: OrganPlasmamanLungs + parent: [ BasePlasmamanOrgan, OrganHumanLungs ] + name: plasmaman lungs + description: The lungs yearn for the plasma. Only plasma gas can satiate these lungs, and oxygen is lethally toxic. + components: + - type: Sprite + layers: + - state: lungs + - type: Metabolizer + metabolizerTypes: [ Plasmaman ] + - type: Lung + alert: LowPlasma + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Plasma + Quantity: 2.5 + Lung: + maxVol: 100.0 + canReact: false + food: + maxVol: 5 + reagents: + - ReagentId: Plasma + Quantity: 5 + +- type: entity + id: OrganPlasmamanStomach + parent: [ BasePlasmamanOrgan, OrganHumanStomach ] + name: plasmaman stomach + description: Why do plasmamen have stomachs if they don't need to eat? + components: + - type: Metabolizer + metabolizerTypes: [ Plasmaman ] + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 8 + - ReagentId: Plasma + Quantity: 4 + stomach: + maxVol: 50 + food: + maxVol: 8 + reagents: + - ReagentId: Plasma + Quantity: 8 + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Plasma + Quantity: 8 + +- type: entity + id: OrganPlasmamanEyes + parent: [ BasePlasmamanOrgan, OrganHumanEyes ] + name: plasmaman eyes + components: + - type: Sprite + layers: + - state: eyes + +- type: entity + id: OrganPlasmamanLiver + parent: [ BasePlasmamanOrgan, OrganHumanLiver ] + name: plasmaman liver + components: + - type: Metabolizer + metabolizerTypes: [ Plasmaman ] + +- type: entity + id: OrganPlasmamanTongue + parent: [ BasePlasmamanOrgan, OrganHumanTongue ] + name: plasmaman tongue + +- type: entity + id: OrganPlasmamanKidneys + parent: [ BasePlasmamanOrgan, OrganHumanKidneys ] + name: plasmaman kidneys + components: + - type: Sprite + layers: + - state: kidneys + - type: Metabolizer + metabolizerTypes: [ Plasmaman ] + +- type: entity + id: OrganPlasmamanHeart + parent: [ BasePlasmamanOrgan, OrganHumanHeart ] + name: plasmaman heart + description: It pulses with plasma even outside the body. + components: + - type: Metabolizer + metabolizerTypes: [ Plasmaman ] + +- type: entity + id: OrganPlasmamanBrain + parent: [ BasePlasmamanOrgan, OrganHumanBrain ] + name: plasmaman brain + components: + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Plasma + Quantity: 2.5 + food: + maxVol: 10 + reagents: + - ReagentId: GreyMatter + Quantity: 5 + - ReagentId: Plasma + Quantity: 5 diff --git a/Resources/Prototypes/Body/Organs/shadowkin.yml b/Resources/Prototypes/Body/Organs/shadowkin.yml index 695ddec1ab..8ee3fe1ef2 100644 --- a/Resources/Prototypes/Body/Organs/shadowkin.yml +++ b/Resources/Prototypes/Body/Organs/shadowkin.yml @@ -1,6 +1,7 @@ - type: entity id: OrganShadowkinBrain parent: OrganHumanBrain + description: "Oops, I should put this back where I found it." components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi @@ -9,7 +10,7 @@ - type: entity id: OrganShadowkinEyes parent: OrganHumanEyes - description: I see beyond anything you ever will! + description: "I see beyond anything you ever will!" components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi @@ -19,15 +20,27 @@ - type: entity id: OrganShadowkinEars parent: OrganHumanEars - description: Hey, listen! + description: "Hey, listen!" components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi state: ears +- type: entity + id: OrganShadowkinCore + parent: OrganHumanLungs + description: "What is this thing?" + components: + - type: Sprite + sprite: Mobs/Species/Shadowkin/organs.rsi + layers: + - state: core + + - type: entity id: OrganShadowkinTongue parent: OrganHumanTongue + description: "What does this do again?" components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi @@ -37,6 +50,7 @@ - type: entity id: OrganShadowkinAppendix parent: OrganHumanAppendix + description: "I think it does nothing..." components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi @@ -47,6 +61,7 @@ - type: entity id: OrganShadowkinHeart parent: OrganHumanHeart + description: "Oops, I think this belongs to someone!" components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi @@ -101,7 +116,7 @@ - type: entity id: OrganShadowkinKidneys parent: OrganHumanKidneys - description: Give the kid their knees back, please, this is the third time this week. + description: "Give the kid their knees back, please, this is the third time this week." components: - type: Sprite sprite: Mobs/Species/Shadowkin/organs.rsi @@ -110,4 +125,4 @@ - type: Metabolizer maxReagents: 5 metabolizerTypes: [Shadowkin] - removeEmpty: true \ No newline at end of file + removeEmpty: true diff --git a/Resources/Prototypes/Body/Parts/plasmaman.yml b/Resources/Prototypes/Body/Parts/plasmaman.yml new file mode 100644 index 0000000000..2fdec53085 --- /dev/null +++ b/Resources/Prototypes/Body/Parts/plasmaman.yml @@ -0,0 +1,133 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartPlasmaman + parent: [BaseItem, BasePart] + name: plasmaman body part + abstract: true + components: + - type: Sprite + sprite: Mobs/Species/Plasmaman/parts.rsi + - type: Butcherable + butcheringType: Knife + butcherDelay: 4.0 + spawned: + - id: SheetPlasma1 + amount: 1 + - type: IgniteFromGasPart + gas: Oxygen + +- type: entity + id: TorsoPlasmaman + name: plasmaman torso + parent: [PartPlasmaman, BaseTorso] + components: + - type: Sprite + state: torso_m + - type: Butcherable + butcherDelay: 6.0 + spawned: + - id: SheetPlasma1 + amount: 3 + - type: IgniteFromGasPart + fireStacks: 0.06 + +- type: entity + id: HeadPlasmaman + name: plasmaman head + parent: [PartPlasmaman, BaseHead] + components: + - type: Sprite + state: head_m + - type: Butcherable + butcherDelay: 5.0 + - type: IgniteFromGasPart + fireStacks: 0.02 + +- type: entity + id: LeftArmPlasmaman + name: left plasmaman arm + parent: [PartPlasmaman, BaseLeftArm] + components: + - type: Sprite + state: l_arm + - type: IgniteFromGasPart + fireStacks: 0.02 + +- type: entity + id: RightArmPlasmaman + name: right plasmaman arm + parent: [PartPlasmaman, BaseRightArm] + components: + - type: Sprite + state: r_arm + - type: IgniteFromGasPart + fireStacks: 0.02 + +- type: entity + id: LeftHandPlasmaman + name: left plasmaman hand + parent: [PartPlasmaman, BaseLeftHand] + components: + - type: Sprite + state: l_hand + - type: Butcherable + butcherDelay: 3.0 + - type: IgniteFromGasPart + fireStacks: 0.01 + +- type: entity + id: RightHandPlasmaman + name: right plasmaman hand + parent: [PartPlasmaman, BaseRightHand] + components: + - type: Sprite + state: r_hand + - type: Butcherable + butcherDelay: 3.0 + - type: IgniteFromGasPart + fireStacks: 0.01 + +- type: entity + id: LeftLegPlasmaman + name: left plasmaman leg + parent: [PartPlasmaman, BaseLeftLeg] + components: + - type: Sprite + state: l_leg + - type: IgniteFromGasPart + fireStacks: 0.02 + +- type: entity + id: RightLegPlasmaman + name: right plasmaman leg + parent: [PartPlasmaman, BaseRightLeg] + components: + - type: Sprite + state: r_leg + - type: IgniteFromGasPart + fireStacks: 0.02 + +- type: entity + id: LeftFootPlasmaman + name: left plasmaman foot + parent: [PartPlasmaman, BaseLeftFoot] + components: + - type: Sprite + state: l_foot + - type: Butcherable + butcherDelay: 3.0 + - type: IgniteFromGasPart + fireStacks: 0.01 + +- type: entity + id: RightFootPlasmaman + name: right plasmaman foot + parent: [PartPlasmaman, BaseRightFoot] + components: + - type: Sprite + state: r_foot + - type: Butcherable + butcherDelay: 3.0 + - type: IgniteFromGasPart + fireStacks: 0.01 diff --git a/Resources/Prototypes/Body/Prototypes/plasmaman.yml b/Resources/Prototypes/Body/Prototypes/plasmaman.yml new file mode 100644 index 0000000000..a41ad0802a --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/plasmaman.yml @@ -0,0 +1,50 @@ +- type: body + id: Plasmaman + name: "plasmaman" + root: torso + slots: + head: + part: HeadPlasmaman + connections: + - torso + organs: + brain: OrganPlasmamanBrain + eyes: OrganPlasmamanEyes + torso: + part: TorsoPlasmaman + connections: + - right arm + - left arm + - right leg + - left leg + - head + organs: + heart: OrganPlasmamanHeart + lungs: OrganPlasmamanLungs + stomach: OrganPlasmamanStomach + liver: OrganPlasmamanLiver + kidneys: OrganPlasmamanKidneys + right arm: + part: RightArmPlasmaman + connections: + - right hand + left arm: + part: LeftArmPlasmaman + connections: + - left hand + right hand: + part: RightHandPlasmaman + left hand: + part: LeftHandPlasmaman + right leg: + part: RightLegPlasmaman + connections: + - right foot + left leg: + part: LeftLegPlasmaman + connections: + - left foot + right foot: + part: RightFootPlasmaman + left foot: + part: LeftFootPlasmaman diff --git a/Resources/Prototypes/Body/Prototypes/shadowkin.yml b/Resources/Prototypes/Body/Prototypes/shadowkin.yml index 742e079f23..3164c70bd0 100644 --- a/Resources/Prototypes/Body/Prototypes/shadowkin.yml +++ b/Resources/Prototypes/Body/Prototypes/shadowkin.yml @@ -23,6 +23,7 @@ stomach: OrganShadowkinStomach liver: OrganShadowkinLiver kidneys: OrganShadowkinKidneys + lungs: OrganShadowkinCore right arm: part: RightArmShadowkin connections: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml b/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml index c04e49f413..55645819c2 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml @@ -68,6 +68,26 @@ category: cargoproduct-category-name-emergency group: market +- type: cargoProduct + id: EmergencyPlasmaInternals + icon: + sprite: Objects/Tanks/plasmaman.rsi + state: icon + product: CratePlasmaInternals + cost: 750 # Plasma is expensive! + category: cargoproduct-category-name-emergency + group: market + +- type: cargoProduct + id: EmergencyPlasmamanEnvirosuit + icon: + sprite: Clothing/Uniforms/Envirosuits/plain.rsi + state: icon + product: CratePlasmamanEnvirosuit + cost: 600 + category: cargoproduct-category-name-emergency + group: market + - type: cargoProduct id: EmergencyBiosuit icon: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml b/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml index ebd73438ab..780826c680 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml @@ -12,7 +12,7 @@ - type: cargoProduct id: EngineeringLampsiHardsuit icon: - sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi + sprite: Clothing/OuterClothing/Hardsuits/engineering-base.rsi state: icon product: CrateEngineeringLampsiHardsuit cost: 2250 @@ -45,13 +45,23 @@ - type: cargoProduct id: SecurityShanlinTacsuit icon: - sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/syndicate.rsi + sprite: Clothing/OuterClothing/Hardsuits/syndicate-base.rsi state: icon product: CrateSecurityShanlinTacsuit cost: 75000 category: cargoproduct-category-name-hardsuits group: market +- type: cargoProduct + id: SecurityShiweiTacsuit + icon: + sprite: Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi + state: icon + product: CrateSecurityShiweiTacsuit + cost: 90000 + category: cargoproduct-category-name-hardsuits + group: market + - type: cargoProduct id: SecurityGuanYuTacsuit icon: diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 52f231d1a6..7380198183 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -265,6 +265,7 @@ - id: ClothingHandsGlovesColorYellowBudget - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled + - id: DoubleEmergencyPlasmaTankFilled - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -279,6 +280,7 @@ - id: ClothingHandsGlovesCombat - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled + - id: DoubleEmergencyPlasmaTankFilled - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -293,6 +295,7 @@ - id: ClothingHandsGlovesCombat - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled + - id: DoubleEmergencyPlasmaTankFilled - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -306,6 +309,7 @@ - id: ClothingHandsGlovesCombat - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled + - id: DoubleEmergencyPlasmaTankFilled - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -363,13 +367,19 @@ components: - type: StorageFill contents: + - id: DefibrillatorSyndicate - id: MedkitCombatFilled - - id: Defibrillator + amount: 4 + - id: Tourniquet + amount: 4 - id: CombatMedipen - amount: 3 - - id: ClothingHandsGlovesNitrile - - id: SyringeTranexamicAcid - - id: SyringeHyronalin + amount: 4 + - id: PunctAutoInjector + amount: 4 + - id: PyraAutoInjector + amount: 4 + - id: AirlossAutoInjector + amount: 4 - type: entity parent: ClothingBackpackDuffelSyndicateBundle diff --git a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml index b36eab6ba9..5b6a602de2 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml @@ -163,6 +163,9 @@ - id: WeaponTurretXeno prob: 0.01 orGroup: Weapons + - id: WeaponRifleFoam + prob: 0.03 + orGroup: Weapons #clothing - id: ClothingUniformJumpsuitFamilyGuy prob: 0.05 @@ -307,6 +310,9 @@ - id: PlushieArachind prob: 0.01 orGroup: Plushies + - id: PlushieThrongler + prob: 0.0005 + orGroup: Plushies #useful - id: AmeJar prob: 0.01 @@ -390,3 +396,12 @@ - id: WeakKudzu prob: 0.01 orGroup: NotUseful + - id: MagazineFoamBox + prob: 0.001 + orGroup: NotUseful + - id: BoxDonkSoftBox + prob: 0.008 + orGroup: NotUseful + - id: GrenadeFoamDart + prob: 0.001 + orGroup: NotUseful diff --git a/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml b/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml index 9532fbf74e..1d9d92da01 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml @@ -87,6 +87,40 @@ - id: NitrogenTankFilled amount: 4 +- type: entity + id: CratePlasmaInternals + parent: CrateInternals + name: internals crate (plasma) + description: Contains four breath masks and four plasma internals tanks. Intended for Plasmamen. + components: + - type: StorageFill + contents: + - id: ClothingMaskGas + amount: 2 + - id: ClothingMaskBreath + amount: 2 + - id: DoubleEmergencyPlasmaTankFilled + amount: 4 + +- type: entity + id: CratePlasmamanEnvirosuit + parent: CrateInternals + name: plasma envirosuit crate + description: Contains two full sets of envirosuits, two breath masks, and two plasma internals tanks. Intended for Plasmamen. + components: + - type: StorageFill + contents: + - id: ClothingUniformEnvirosuit + amount: 2 + - id: ClothingHeadEnvirohelmEmpty + amount: 2 + - id: ClothingHandsGlovesEnvirogloves + amount: 2 + - id: ClothingMaskBreath + amount: 2 + - id: DoubleEmergencyPlasmaTankFilled + amount: 2 + - type: entity id: CrateEmergencyRadiation parent: CrateRadiation diff --git a/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml b/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml index 9d6f46c499..7e0f02c58e 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml @@ -13,11 +13,11 @@ id: CrateEngineeringLampsiHardsuit parent: CrateEngineering name: lampsi hardsuit crate - description: Contains a single HpI-19r "Lampsi" hardsuit. Requires Engineering access to open. + description: Contains a single HpI-19r "Lampsi" hardsuit. The suit comes unpainted. Requires Engineering access to open. components: - type: StorageFill contents: - - id: ClothingOuterHardsuitAtmos + - id: ClothingOuterHardsuitEngineeringUnpainted # Logistics - type: entity @@ -49,7 +49,17 @@ components: - type: StorageFill contents: - - id: ClothingOuterHardsuitSyndieReverseEngineered + - id: ClothingOuterHardsuitShanlinUnpainted + +- type: entity + id: CrateSecurityShiweiTacsuit + parent: CrateSecgear + name: shiwei tacsuit crate + description: Contains a single CSA-54UA "Shiwei" tacsuit. Requires Security access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitShiweiUnpainted - type: entity id: CrateSecurityGuanYuTacsuit diff --git a/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml b/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml index ba97af3925..82f5bd6aa6 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml @@ -21,6 +21,7 @@ - id: ClothingHandsGlovesCombat - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled + - id: DoubleEmergencyPlasmaTankFilled - type: entity id: CrateSyndicateSuperSurplusBundle diff --git a/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml b/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml index 58a49aa6e9..5b96ba96d8 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml @@ -47,6 +47,33 @@ - id: ClothingMaskNeckGaiter - id: SyndieHandyFlag +- type: entity + id: BriefcaseSyndieLobbyingBundlePlasmamanFilled + parent: BriefcaseSyndie + suffix: Syndicate, Spesos, Plasmaman + components: + - type: StorageFill + contents: + - id: ClothingEyesGlassesSunglasses + - id: SpaceCash30000 + amount: 1 + - id: EncryptionKeySyndie + - id: RubberStampTrader + - id: PhoneInstrumentSyndicate + - id: ClothingUniformEnvirosuitTacticool + - id: ClothingHeadEnvirohelmTacticool + - id: ClothingOuterCoatJensenFilled + - id: ClothingHandsGlovesCombat + +- type: entity # No more space in briefcase due to envirohelm so put the syndicate flag in the jensen coat + id: ClothingOuterCoatJensenFilled + parent: ClothingOuterCoatJensen + suffix: Syndicate Flag Inside + components: + - type: StorageFill + contents: + - id: SyndieHandyFlag + - type: entity id: BriefcaseThiefBribingBundleFilled parent: BriefcaseSyndie @@ -62,3 +89,19 @@ - id: ClothingHandsGlovesCombat - id: ClothingMaskNeckGaiter - id: ToyFigurineThief + +- type: entity + id: BriefcaseThiefBribingBundlePlasmamanFilled + parent: BriefcaseSyndie + suffix: Thief, Spesos, Plasmaman + components: + - type: StorageFill + contents: + - id: ClothingEyesGlassesSunglasses + - id: SpaceCash20000 + amount: 1 + - id: ClothingUniformEnvirosuitTacticool + - id: ClothingHeadEnvirohelmTacticool + - id: ClothingOuterCoatJensen + - id: ClothingHandsGlovesCombat + - id: ToyFigurineThief diff --git a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml index 2cf1354c14..66d2ceb37c 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml @@ -63,6 +63,22 @@ - 0.270782035 # nitrogen temperature: 293.15 +- type: entity + id: EmergencyPlasmaTankFilled + parent: EmergencyPlasmaTank + suffix: Filled + components: + - type: GasTank + outputPressure: 5.325 + air: + # 16 minutes with Plasmaman lungs + volume: 0.66 + moles: + - 0 # oxygen + - 0 # nitrogen + - 0 # CO2 + - 0.270782035 # nitrogen + temperature: 293.15 - type: entity id: ExtendedEmergencyOxygenTankFilled @@ -93,6 +109,22 @@ - 0.615413715 # nitrogen temperature: 293.15 +- type: entity + id: ExtendedEmergencyPlasmaTankFilled + parent: ExtendedEmergencyPlasmaTank + suffix: Filled + components: + - type: GasTank + outputPressure: 5.325 + air: + # 37 minutes with Plasmaman lungs + volume: 1.5 + moles: + - 0 # oxygen + - 0 # nitrogen + - 0 # CO2 + - 0.615413715 # plasma + temperature: 293.15 - type: entity id: DoubleEmergencyOxygenTankFilled @@ -123,6 +155,23 @@ - 1.025689525 # nitrogen temperature: 293.15 +- type: entity + id: DoubleEmergencyPlasmaTankFilled + parent: DoubleEmergencyPlasmaTank + suffix: Filled + components: + - type: GasTank + outputPressure: 5.325 + air: + # 62 minutes with Plasmaman lungs + volume: 1.5 + moles: + - 0 # oxygen + - 0 # nitrogen + - 0 # CO2 + - 1.025689525 # plasma + temperature: 293.15 + - type: entity id: EmergencyFunnyOxygenTankFilled parent: EmergencyFunnyOxygenTank @@ -142,7 +191,7 @@ - 0 # water vapor - 0 # ammonia - 0.014251686 # 5% N2O - # 0.285033721 total + # 0.285033721 total temperature: 293.15 - type: entity @@ -211,9 +260,9 @@ suffix: Filled components: - type: GasTank - outputPressure: 101.3 + outputPressure: 5.325 air: - # 6 minutes of agony + # 125.2 minutes with Plasmaman lungs volume: 5 moles: - 0 # oxygen diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 9f27ee5700..437a12aed0 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -242,6 +242,7 @@ - id: Intellicard - id: LunchboxCommandFilledRandom # Delta-V Lunchboxes! prob: 0.3 + - id: PsiWatchCartridge - type: entity id: LockerResearchDirectorFilled @@ -264,6 +265,7 @@ - id: EncryptionKeyBinary - id: LunchboxCommandFilledRandom # Delta-V Lunchboxes! prob: 0.3 + - id: PsiWatchCartridge - type: entity id: LockerHeadOfSecurityFilledHardsuit diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml index f022b4b9a5..239fa324b5 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml @@ -16,3 +16,4 @@ PaperCNCSheet: 6 MysteryFigureBox: 2 BooksBag: 3 + CardBoxBlack: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml index fce18024a7..7dbcce131b 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml @@ -3,6 +3,7 @@ startingInventory: OxygenTankFilled: 10 NitrogenTankFilled: 10 + PlasmaTankFilled: 10 - type: vendingMachineInventory id: TankDispenserEngineeringInventory diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml index e70e93732f..b0b7810e19 100644 --- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml +++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml @@ -2,7 +2,7 @@ id: ChameleonSet name: thief-backpack-category-chameleon-name description: thief-backpack-category-chameleon-description - sprite: + sprite: sprite: /Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi state: icon content: @@ -20,7 +20,7 @@ id: ToolsSet name: thief-backpack-category-tools-name description: thief-backpack-category-tools-description - sprite: + sprite: sprite: Objects/Tools/jaws_of_life.rsi state: jaws_pry content: @@ -67,7 +67,7 @@ id: SleeperSet name: thief-backpack-category-sleeper-name description: thief-backpack-category-sleeper-description - sprite: + sprite: sprite: Objects/Tanks/anesthetic.rsi state: icon content: @@ -84,9 +84,14 @@ id: CommunicatorSet name: thief-backpack-category-communicator-name description: thief-backpack-category-communicator-description - sprite: + sprite: sprite: Objects/Tools/spy_device.rsi state: icon + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman content: - EncryptionKeyStationMaster - CyberPen @@ -94,12 +99,30 @@ - BriefcaseThiefBribingBundleFilled - ClothingMaskGasVoiceChameleon #- todo Chameleon Stamp - + +- type: thiefBackpackSet + id: CommunicatorSetPlasmaman + name: thief-backpack-category-communicator-plasmaman-name + description: thief-backpack-category-communicator-plasmaman-description + sprite: + sprite: Objects/Tools/spy_device.rsi + state: icon + requirements: + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + content: + - EncryptionKeyStationMaster + - CyberPen + - SpyCrewMonitor + - BriefcaseThiefBribingBundlePlasmamanFilled + - ClothingMaskGasVoiceChameleon + - type: thiefBackpackSet id: SmugglerSet name: thief-backpack-category-smuggler-name description: thief-backpack-category-smuggler-description - sprite: + sprite: sprite: Clothing/Neck/Cloaks/void.rsi state: icon content: diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index cc0e0bb0f3..64e3eba5aa 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -700,9 +700,9 @@ productEntity: ClothingBackpackDuffelSyndicateMedicalBundleFilled discountCategory: rareDiscounts discountDownTo: - Telecrystal: 12 + Telecrystal: 16 cost: - Telecrystal: 20 + Telecrystal: 24 categories: - UplinkChemicals conditions: @@ -815,6 +815,27 @@ Telecrystal: 4 categories: - UplinkDeception + conditions: + - !type:BuyerSpeciesCondition + blacklist: + - Plasmaman + +- type: listing + id: UplinkBribePlasmaman + name: uplink-bribe-plasmaman-name + description: uplink-bribe-plasmaman-desc + productEntity: BriefcaseSyndieLobbyingBundlePlasmamanFilled + discountCategory: usualDiscounts + discountDownTo: + Telecrystal: 2 + cost: + Telecrystal: 4 + categories: + - UplinkDeception + conditions: + - !type:BuyerSpeciesCondition + whitelist: + - Plasmaman # - type: listing # id: UplinkGigacancerScanner @@ -833,8 +854,6 @@ icon: { sprite: /Textures/Objects/Tools/Decoys/operative_decoy.rsi, state: folded } productEntity: ClothingBackpackDuffelSyndicateDecoyKitFilled discountCategory: usualDiscounts - discountDownTo: - Telecrystal: 3 cost: Telecrystal: 1 categories: @@ -1612,8 +1631,6 @@ description: uplink-syndicate-stamp-desc productEntity: RubberStampSyndicate discountCategory: rareDiscounts - discountDownTo: - Telecrystal: 1 cost: Telecrystal: 1 categories: diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml b/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml index 134d460540..802590accd 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/gloveGroup.yml @@ -15,3 +15,7 @@ id: LoadoutHandsGlovesFingerlessWhite - type: loadout id: LoadoutHandsGlovesEvening + - type: loadout + id: LoadoutHandsGlovesEnviroglovesColor + - type: loadout + id: LoadoutHandsGlovesEnviroglovesEvening diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml index 16d145a041..caf1880711 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/itemGroups.yml @@ -305,3 +305,67 @@ id: LoadoutUniformJumpsuitFlannelKhakis - type: loadout id: LoadoutUniformJumpsuitFlannelBlackKhakis + - type: loadout + id: LoadoutUniformEnvirosuit + - type: loadout + id: LoadoutUniformEnvirosuitBlackPink + - type: loadout + id: LoadoutUniformEnvirosuitBlackPinkAlt + - type: loadout + id: LoadoutUniformEnvirosuitMartialGi + - type: loadout + id: LoadoutUniformEnvirosuitSafari + - type: loadout + id: LoadoutUniformEnvirosuitTrans + - type: loadout + id: LoadoutUniformEnvirosuitAncientVoid + - type: loadout + id: LoadoutUniformEnvirosuitColorWhite + - type: loadout + id: LoadoutUniformEnvirosuitColorGrey + - type: loadout + id: LoadoutUniformEnvirosuitColorBlack + - type: loadout + id: LoadoutUniformEnvirosuitColorRed + - type: loadout + id: LoadoutUniformEnvirosuitColorGreen + - type: loadout + id: LoadoutUniformEnvirosuitColorDarkGreen + - type: loadout + id: LoadoutUniformEnvirosuitColorBlue + - type: loadout + id: LoadoutUniformEnvirosuitColorDarkBlue + - type: loadout + id: LoadoutUniformEnvirosuitColorTeal + - type: loadout + id: LoadoutUniformEnvirosuitColorMaroon + - type: loadout + id: LoadoutUniformEnvirosuitColorPink + - type: loadout + id: LoadoutUniformEnvirosuitColorYellow + - type: loadout + id: LoadoutUniformEnvirosuitColorPurple + - type: loadout + id: LoadoutUniformEnvirosuitColorOrange + - type: loadout + id: LoadoutUniformEnvirosuitColorLightBrown + - type: loadout + id: LoadoutUniformEnvirosuitColorBrown + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacks + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksNegative + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorRed + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorOrange + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorGreen + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorBlue + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorBrown + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksMNK + - type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksMNKAlt diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml index a884992a23..cf729ef7a4 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml @@ -16,6 +16,16 @@ id: ValyrianStandard - type: trait id: Azaziba + - type: trait + id: SiikMaas + - type: trait + id: NalRasan + - type: trait + id: SiikTajr + - type: trait + id: YaSsa + - type: trait + id: Delvahii - type: characterItemGroup id: TraitsAccents @@ -32,4 +42,6 @@ - type: trait id: Southern - type: trait - id: ScottishAccent \ No newline at end of file + id: ScottishAccent + - type: trait + id: SkeletonAccent diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/mindormachine.yml b/Resources/Prototypes/CharacterItemGroups/Generic/mindormachine.yml new file mode 100644 index 0000000000..90ed595bac --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/Generic/mindormachine.yml @@ -0,0 +1,59 @@ +- type: characterItemGroup + id: TraitsMind + maxItems: 2 + items: + - type: trait + id: HighPotential + - type: trait + id: LowPotential + - type: trait + id: LowAmplification + - type: trait + id: HighAmplification + - type: trait + id: PowerOverwhelming + - type: trait + id: LowDampening + - type: trait + id: HighDampening + - type: trait + id: DispelPower + - type: trait + id: MetapsionicPower + - type: trait + id: XenoglossyPower + - type: trait + id: PsychognomyPower + - type: trait + id: LatentPsychic + +- type: characterItemGroup + id: TraitsMachine + maxItems: 2 + items: + - type: trait + id: StrikingCalluses + - type: trait + id: Spinarette + - type: trait + id: BionicArm + - type: trait + id: PlateletFactories + - type: trait + id: DermalArmor + - type: trait + id: CyberEyes + - type: trait + id: FlareShielding + - type: trait + id: CyberEyesSecurity + - type: trait + id: CyberEyesMedical + - type: trait + id: CyberEyesDiagnostic + - type: trait + id: CyberEyesOmni + - type: trait + id: LightAmplification + - type: trait + id: ThermographicVision diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/miscItemGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/miscItemGroups.yml index cc1e82ceb6..b08afa9252 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/miscItemGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/miscItemGroups.yml @@ -134,3 +134,12 @@ id: LoadoutItemPetMothroach - type: loadout id: LoadoutItemPetCockroach + +- type: characterItemGroup + id: LoadoutCards + maxItems: 1 + items: + - type: loadout + id: LoadoutItemBlackDeck + - type: loadout + id: LoadoutItemNTDeck diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml index 764f463878..f900bfe3b5 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml @@ -4,6 +4,10 @@ items: - type: loadout id: LoadoutClothingBackpackBlueshield + - type: loadout + id: LoadoutClothingSatchelBlueshield + - type: loadout + id: LoadoutClothingDuffelBlueshield - type: characterItemGroup id: LoadoutBlueshieldOfficerVests @@ -13,6 +17,16 @@ id: LoadoutClothingBlueshieldArmoredJacket - type: loadout id: LoadoutClothingBlueshieldArmoredCowboyJacket + - type: loadout + id: LoadoutClothingBlueshieldArmorVest + - type: loadout + id: LoadoutClothingBlueshieldArmoredMarine + - type: loadout + id: LoadoutClothingBlueshieldArmoredVest + - type: loadout + id: LoadoutClothingBlueshieldArmoredKimono + - type: loadout + id: LoadoutClothingBlueshieldArmoredCoat - type: characterItemGroup id: LoadoutBlueshieldOfficerUniforms @@ -22,4 +36,14 @@ id: LoadoutClothingUniformJumpskirtBlueshieldOfficer - type: loadout id: LoadoutClothingUniformJumpsuitBlueshieldOfficer - \ No newline at end of file + +- type: characterItemGroup + id: LoadoutBlueshieldOfficerHats + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingBlueshieldBeretNavy + - type: loadout + id: LoadoutClothingBlueshieldBeretOfficer + - type: loadout + id: LoadoutClothingBlueshieldCowboyHat diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/cataloger.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/cataloger.yml index 2e53ad71da..d94c971e83 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/cataloger.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/cataloger.yml @@ -25,11 +25,15 @@ - type: loadout id: LoadoutCatalogerPillCanisterSpaceDrugs -#- type: characterItemGroup -# id: LoadoutCatalogerEyes -# maxItems: 1 -# items: -# +- type: characterItemGroup + id: LoadoutCatalogerEyes + maxItems: 1 + items: + - type: loadout + id: LoadoutCatalogerEyesEpiHUD + - type: loadout + id: LoadoutCatalogerEyesEpiGlasses + #- type: characterItemGroup # id: LoadoutCatalogerGloves # maxItems: 1 diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/chaplain.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/chaplain.yml index ff3d75be33..3d44c7211d 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/chaplain.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/chaplain.yml @@ -29,11 +29,15 @@ - type: loadout id: LoadoutChaplainPillCanisterSpaceDrugs -#- type: characterItemGroup -# id: LoadoutChaplainEyes -# maxItems: 1 -# items: -# +- type: characterItemGroup + id: LoadoutChaplainEyes + maxItems: 1 + items: + - type: loadout + id: LoadoutChaplainEyesEpiHUD + - type: loadout + id: LoadoutChaplainEyesEpiGlasses + #- type: characterItemGroup # id: LoadoutChaplainGloves # maxItems: 1 diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/mystagogue.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/mystagogue.yml index 7e2fbbe4b6..7bf929a885 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/mystagogue.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/mystagogue.yml @@ -31,11 +31,15 @@ - type: loadout id: LoadoutMystagoguePillCanisterSpaceDrugs -#- type: characterItemGroup -# id: LoadoutMystagogueEyes -# maxItems: 1 -# items: -# +- type: characterItemGroup + id: LoadoutMystagogueEyes + maxItems: 1 + items: + - type: loadout + id: LoadoutMystagogueEyesEpiHUD + - type: loadout + id: LoadoutMystagogueEyesEpiGlasses + #- type: characterItemGroup # id: LoadoutMystagogueGloves # maxItems: 1 diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/psionicMantis.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/psionicMantis.yml index 32660c5f0b..38bdd91206 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/psionicMantis.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/psionicMantis.yml @@ -27,11 +27,15 @@ - type: loadout id: LoadoutPsionicMantisPillCanisterCryptobiolin -#- type: characterItemGroup -# id: LoadoutPsionicMantisEyes -# maxItems: 1 -# items: -# +- type: characterItemGroup + id: LoadoutPsionicMantisEyes + maxItems: 1 + items: + - type: loadout + id: LoadoutPsionicMantisEyesEpiHUD + - type: loadout + id: LoadoutPsionicMantisEyesEpiGlasses + #- type: characterItemGroup # id: LoadoutPsionicMantisGloves # maxItems: 1 diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/courier.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/courier.yml index 3bd4172dd2..aca3f2e5fc 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/courier.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/courier.yml @@ -75,3 +75,5 @@ id: LoadoutCourierUniformMailSuit - type: loadout id: LoadoutCourierUniformMailSkirt + - type: loadout + id: LoadoutCourierUniformEnvirosuitMailCarrier diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml index c3445f675f..ef718f2093 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml @@ -97,6 +97,8 @@ id: LoadoutSecurityPistolViperWood - type: loadout id: LoadoutSecurityEquipmentTruncheon + - type: loadout + id: LoadoutSecurityEquipmentEnergySword - type: loadout id: LoadoutSecurityPistolSvalin - type: loadout @@ -127,6 +129,8 @@ id: LoadoutSecurityArgenti - type: loadout id: LoadoutSecurityArgentiNonLethal + - type: loadout + id: LoadoutSecurityPistolEnergyRevolver - type: characterItemGroup id: LoadoutSecurityEyes @@ -222,3 +226,7 @@ id: LoadoutUniformJumpsuitSecFormal - type: loadout id: LoadoutUniformJumpsuitSecSummer + - type: loadout + id: LoadoutSecurityUniformEnvirosuitBlue + - type: loadout + id: LoadoutSecurityUniformEnvirosuitGrey diff --git a/Resources/Prototypes/Chemistry/metabolizer_types.yml b/Resources/Prototypes/Chemistry/metabolizer_types.yml index 80f69893c6..3812613584 100644 --- a/Resources/Prototypes/Chemistry/metabolizer_types.yml +++ b/Resources/Prototypes/Chemistry/metabolizer_types.yml @@ -56,3 +56,7 @@ - type: metabolizerType id: Shadowkin name: metabolizer-type-shadowkin + +- type: metabolizerType + id: Plasmaman + name: metabolizer-type-plasmaman diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 3cc2bb4fd7..cea34d04ea 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -361,16 +361,23 @@ - type: damageModifierSet id: Shadowkin coefficients: - Blunt: 0.95 Slash: 1.2 Piercing: 1.1 - Asphyxiation: 0 - Cold: 0.75 + Asphyxiation: 0.5 + Cold: 0.8 Heat: 1.2 - Cellular: 0.25 - Bloodloss: 1.35 - Shock: 1.25 - Radiation: 1.3 + +- type: damageModifierSet + id: Plasmaman + coefficients: + Blunt: 1.5 + Slash: 0.85 + Piercing: 0.75 + Cold: 0 + Heat: 1.5 + Poison: 0.8 + Radiation: 0 + Bloodloss: 0.0 # Immune to weapons that directly deal bloodloss damage - type: damageModifierSet id: DermalArmor diff --git a/Resources/Prototypes/Datasets/Names/plasmaman.yml b/Resources/Prototypes/Datasets/Names/plasmaman.yml new file mode 100644 index 0000000000..3e12b9e379 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/plasmaman.yml @@ -0,0 +1,326 @@ +- type: dataset + id: names_plasmaman + values: + # Periodic table elements + - Actinium + - Aluminium + - Americium + - Antimony + - Argon + - Arsenic + - Astatine + - Barium + - Berkelium + - Beryllium + - Bismuth + - Bohrium + - Boron + - Bromine + - Cadmium + - Caesium + - Calcium + - Californium + - Carbon + - Cerium + - Chlorine + - Chromium + - Cobalt + - Copernicium + - Copper + - Curium + - Darmstadtium + - Dubnium + - Dysprosium + - Einsteinium + - Erbium + - Europium + - Fermium + - Flerovium + - Fluorine + - Francium + - Gadolinium + - Gallium + - Germanium + - Gold + - Hafnium + - Hassium + - Helium + - Holmium + - Hydrogen + - Indium + - Iodine + - Iridium + - Iron + - Krypton + - Lanthanum + - Lawrencium + - Lead + - Lithium + - Livermorium + - Lutetium + - Magnesium + - Manganese + - Meitnerium + - Mendelevium + - Mercury + - Molybdenum + - Moscovium + - Neodymium + - Neon + - Neptunium + - Nickel + - Nihonium + - Niobium + - Nitrogen + - Nobelium + - Oganesson + - Osmium + - Oxygen + - Palladium + - Phosphorus + - Platinum + - Plutonium + - Polonium + - Potassium + - Praseodymium + - Promethium + - Protactinium + - Radium + - Radon + - Rhenium + - Rhodium + - Roentgenium + - Rubidium + - Ruthenium + - Rutherfordium + - Samarium + - Scandium + - Seaborgium + - Selenium + - Silicon + - Silver + - Sodium + - Strontium + - Sulfur + - Tantalum + - Technetium + - Tellurium + - Tennessine + - Terbium + - Thallium + - Thorium + - Thulium + - Tin + - Titanium + - Tungsten + - Uranium + - Vanadium + - Xenon + - Ytterbium + - Yttrium + - Zinc + - Zirconium + # Periodic table groups + - Metalloid + - Alkali + - Alkaline + - Triel + - Tetrel + - Chalcogen + - Pnictogen + - Halogen + - Noble + # Periodic table series + - Lanthanide + - Actinide + # Polyatomic cations + - Ammonium + - Hydronium + - Nitronium + - Pyrylium + # Anions + - Hydride + - Oxide + - Fluoride + - Sulfide + - Selenide + - Telluride + - Chloride + - Nitride + - Phospide + - Arsenide + - Bromide + - Iodide + - Azide + - Bisulfide + - Hydroxide + - Acetylide + - Ethoxide + - Cyanide + - Amide + - Phenoxide + - Peroxide + - Superoxide + - Acetylide + # Oxoanions + - Sulfate + - Sulfite + - Phosphate + - Phospite + - Arsenate + - Arsenite + - Nitrate + - Nitrite + - Thiosulfate + - Perchlorate + - Iodate + - Chlorate + - Bromate + - Perbromate + - Chlorite + - Hypochlorite + - Hypobromite + - Carbonate + - Chromate + - Bicarbonate + - Dichromate + - Persulfate + - Pyrosulfite + - Pyrosulfate + - Pyrophosphite + - Pyrophosphate + - Pyroarsenate + - Dicarbonate + - Pyrocarbonate + - Pyroselenite + - Ethanolate + - Benzoate + - Citrate + - Manganate + - Zincate + - Aluminate + - Tungstate + - Orthosilicate + - Metasilicate + - Silicate + - Cyanate + - Thiocyanate + - Permanganate + - Sulfonate + - Isocyanate + - Carbamate + # Anions from organic acids + - Acetate + - Formate + - Oxalate + - Propionate + - Butyrate + - Malate + # Isotopes + - Protium + - Deuterium + - Tritium + - Uranium-235 + - Uranium-238 + - Radon-222 + - Thorium-232 + # Compounds + - Ammonia + - Methane + - Glucose + - Ethanol + - Formaldehyde + - Acetylene + - Toluene + # SS14 chemicals + - Bananium + - Fresium + - Carpetium + - Razorium + - Artifexium + - Barozine + - Frezon + - Phlogiston + - Licoxide + - Lipolicide + - Tazinide + - Lotophagoi + - Vestine + - Thermite + - Saxoite + - Sigynate + - Nocturine + - Impedrezene + - Ephedrine + # Skeleton names from skeleton_first.yml - double weight + - Sternum + - Sternum + - Ribs + - Ribs + - Vertebrae + - Vertebrae + - Sacrum + - Sacrum + - Mandible + - Mandible + - Clavicle + - Clavicle + - Scapula + - Scapula + - Humerus + - Humerus + - Radius + - Radius + - Ulna + - Ulna + - Carpals + - Carpals + - Phalanges + - Phalanges + - Pelvis + - Pelvis + - Femur + - Femur + - Tibia + - Tibia + - Fibula + - Fibula + - Marrow + - Marrow + - Tarsals + - Tarsals + - Patella + - Patella + - Tailbone + - Tailbone + - Rib + - Rib + - Hyoid + - Hyoid + - Coccyx + - Coccyx + - Tarsus + - Tarsus + - Lacrimal + - Lacrimal + - Bone + - Bone + # Bonus Skeleton names + - Skull + - Skull + - Maxilla + - Maxilla + - Zygomatic + - Zygomatic + - Malleus + - Malleus + - Incus + - Incus + - Stapes + - Stapes + - Metacarpals + - Metacarpals + - Metatarsals + - Metatarsals + - Ribs + - Ribs diff --git a/Resources/Prototypes/Datasets/Names/shadowkin.yml b/Resources/Prototypes/Datasets/Names/shadowkin.yml index 4dbf4c5dc5..b6cf96db43 100644 --- a/Resources/Prototypes/Datasets/Names/shadowkin.yml +++ b/Resources/Prototypes/Datasets/Names/shadowkin.yml @@ -1,70 +1,101 @@ # Names for the shadowkin, # Shadowkin names are descriptive of -# Their Primary Emotion, -# A State of Being, -# Or past Memories. +# The two schools of thought, +# A job designated for them, +# Or something symbolic. - type: dataset id: names_shadowkin values: - # Mar - # - Mar + # Marish + - Maaar + - Lwmar + - Lmwarmrrraw + - WlurrlmrrrAw + - UurlmmrwlAmur + - Mwrrrmlar + - Mwaarlwurm + - Aralwurm + - Arrmaurm + - Mwalwamar + - Mwalwarr + - Malamur + - Marur + - Wurmar + - Mmarr + - Mwalwarr + - Maarl + - Mmaraar + - Maamwaarr + - Maalmwar + - Mlarrul + - Maalamur + - Aarmwaarr + - Aalmwar + - Aarwalwar + - Amwalwar + - Aarmur + - Arlmur + - Mmarwaarr + - Mmalmwar + - Mmarwalwar + - Lmwamwar + - Mwalwarwar + - Mlalmwar + - Lmwaramur + - Maarlwurlmar - # Sad - - Fragile - - Heartbreak - - Inferior - - Lone - - Lonesome - - Loss - - Solitary - - Solitude - - Sorrow - - Shade + # Civil Service + - Peacekeeper + - Fireman + - Courier + - Teacher + - Accountant + - Hairdresser + - Barkeep + - Janitor + - Librarian - # Angry - - Fear - - Fearful - - Fury - - Pain - - Rage - - Rush - - Wrath + # Trades + - Welder + - Technician + - Carpenter + - Mason + - Blacksmith + - Plumber + - Locksmith + - Mechanic + - Framer - # Happy - - Calm - - Content - - Contented - - Happy - - Hope - - Joyous - - Lovely - - Peace - - Peaceful - - Quiet - - Serene - - Serenity - - Tranquil - - Tranquility + # Medical + - Doctor + - Nurse + - Shaman + - Paramedic + - Apothecary + - Alchemist + - Druid + - Herbalist + - Medicus - # Memory - - Dillusioned - - Forgotten - - Focusless - - Lost - - Memory - - Recollection - - Remembrance - - Reminisce - - Reminiscence + # Military + - Fighter + - Fixer + - Healer + - Supplier + - Scouter + - Veteran + - Sailor + - Rider + - Archer - # Other - - Apathy - - Collected - - Curiosity - - Free - - Interest - - Jax # White eye (jack of all trades) :) - - Still - - Unbound - - Shadows \ No newline at end of file + # Special + - Ash + - Ember + - Dreamer + - Leaf + - River + - Dirt + - Bark + - Stone + - Flame diff --git a/Resources/Prototypes/Datasets/psionic-records.yml b/Resources/Prototypes/Datasets/psionic-records.yml new file mode 100644 index 0000000000..9333b09831 --- /dev/null +++ b/Resources/Prototypes/Datasets/psionic-records.yml @@ -0,0 +1,15 @@ +# "funny" placeholders of extremely minor/non-crimes for wanted reason dialog +- type: dataset + id: PsionicsRecordsRecordsPlaceholders + values: + - Mindswapped with a rat 2 billion times + - Ascended into the telepathic realm with mind control + - Forced a clown to punch himself + - Forced a mime to speak in owo accent + - Mindcontrolled Captain to say bad words + - Pissed off the Oracle + - Became a Psionic + - Usurped the throne + - Mindswapped the Mantis with a shoe + - Drew stick figures in the Chaplain's bible + - Revived a cockroach diff --git a/Resources/Prototypes/Decals/Overlays/grayscale.yml b/Resources/Prototypes/Decals/Overlays/grayscale.yml index dfebeee3f9..91526ff594 100644 --- a/Resources/Prototypes/Decals/Overlays/grayscale.yml +++ b/Resources/Prototypes/Decals/Overlays/grayscale.yml @@ -1,13 +1,26 @@ - type: decal + id: Overlays + abstract: true + +- type: decal id: FullTileOverlayGreyscale + parent: Overlays tags: ["station", "overlay"] defaultCustomColor: true sprite: sprite: Decals/Overlays/greyscale.rsi state: fulltile_overlay + +# Brick +- type: decal + id: Brick + parent: Overlays + abstract: true + - type: decal id: BrickBoxOverlay + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -16,6 +29,7 @@ - type: decal id: BrickCornerOverlayNE + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -24,6 +38,7 @@ - type: decal id: BrickCornerOverlayNW + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -32,6 +47,7 @@ - type: decal id: BrickCornerOverlaySE + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -40,6 +56,7 @@ - type: decal id: BrickCornerOverlaySW + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -48,6 +65,7 @@ - type: decal id: BrickEndOverlayE + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -56,6 +74,7 @@ - type: decal id: BrickEndOverlayN + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -64,6 +83,7 @@ - type: decal id: BrickEndOverlayS + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -72,6 +92,7 @@ - type: decal id: BrickEndOverlayW + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -80,6 +101,7 @@ - type: decal id: BrickLineOverlayE + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -88,6 +110,7 @@ - type: decal id: BrickLineOverlayN + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -96,6 +119,7 @@ - type: decal id: BrickLineOverlayS + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: @@ -104,16 +128,25 @@ - type: decal id: BrickLineOverlayW + parent: Brick tags: ["station", "overlay"] defaultCustomColor: true sprite: sprite: Decals/Overlays/greyscale.rsi state: brick_line_w + +# HalfTile +- type: decal + id: HalfTile + parent: Overlays + abstract: true + - type: decal id: HalfTileOverlayGreyscale tags: ["station", "overlay"] defaultCustomColor: true + parent: HalfTile sprite: sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay @@ -122,6 +155,7 @@ id: HalfTileOverlayGreyscale90 tags: ["station", "overlay"] defaultCustomColor: true + parent: HalfTile sprite: sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay_90 @@ -130,6 +164,7 @@ id: HalfTileOverlayGreyscale180 tags: ["station", "overlay"] defaultCustomColor: true + parent: HalfTile sprite: sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay_180 @@ -138,14 +173,22 @@ id: HalfTileOverlayGreyscale270 tags: ["station", "overlay"] defaultCustomColor: true + parent: HalfTile sprite: sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay_270 +# QuarterTile +- type: decal + id: QuarterTile + parent: Overlays + abstract: true + - type: decal id: QuarterTileOverlayGreyscale tags: ["station", "overlay"] defaultCustomColor: true + parent: QuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay @@ -154,6 +197,7 @@ id: QuarterTileOverlayGreyscale90 tags: ["station", "overlay"] defaultCustomColor: true + parent: QuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay_90 @@ -162,6 +206,7 @@ id: QuarterTileOverlayGreyscale180 tags: ["station", "overlay"] defaultCustomColor: true + parent: QuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay_180 @@ -170,14 +215,22 @@ id: QuarterTileOverlayGreyscale270 tags: ["station", "overlay"] defaultCustomColor: true + parent: QuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay_270 +# QuarterTile +- type: decal + id: ThreeQuarterTile + parent: Overlays + abstract: true + - type: decal id: ThreeQuarterTileOverlayGreyscale tags: ["station", "overlay"] defaultCustomColor: true + parent: ThreeQuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay @@ -186,6 +239,7 @@ id: ThreeQuarterTileOverlayGreyscale90 tags: ["station", "overlay"] defaultCustomColor: true + parent: ThreeQuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay_90 @@ -194,6 +248,7 @@ id: ThreeQuarterTileOverlayGreyscale180 tags: ["station", "overlay"] defaultCustomColor: true + parent: ThreeQuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay_180 @@ -202,22 +257,31 @@ id: ThreeQuarterTileOverlayGreyscale270 tags: ["station", "overlay"] defaultCustomColor: true + parent: ThreeQuarterTile sprite: sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay_270 - type: decal id: MonoOverlay + parent: Overlays tags: ["station", "overlay"] defaultCustomColor: true sprite: sprite: Decals/Overlays/greyscale.rsi state: mono +# Checker +- type: decal + id: Checker + parent: Overlays + abstract: true + - type: decal id: CheckerNESW tags: ["station", "overlay"] defaultCustomColor: true + parent: Checker sprite: sprite: Decals/Overlays/greyscale.rsi state: checkerNESW @@ -226,6 +290,7 @@ id: CheckerNWSE tags: ["station", "overlay"] defaultCustomColor: true + parent: Checker sprite: sprite: Decals/Overlays/greyscale.rsi state: checkerNWSE @@ -234,6 +299,7 @@ id: DiagonalOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Checker sprite: sprite: Decals/Overlays/greyscale.rsi state: diagonal @@ -242,6 +308,7 @@ id: DiagonalCheckerAOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Checker sprite: sprite: Decals/Overlays/greyscale.rsi state: diagonal_checker_a @@ -250,22 +317,31 @@ id: DiagonalCheckerBOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Checker sprite: sprite: Decals/Overlays/greyscale.rsi state: diagonal_checker_b - type: decal id: HerringboneOverlay + parent: Overlays tags: ["station", "overlay"] defaultCustomColor: true sprite: sprite: Decals/Overlays/greyscale.rsi state: herringbone +# MiniTile +- type: decal + id: MiniTile + parent: Overlays + abstract: true + - type: decal id: MiniTileOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile @@ -274,6 +350,7 @@ id: MiniTileCheckerAOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_checker_a @@ -282,6 +359,7 @@ id: MiniTileCheckerBOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_checker_b @@ -290,6 +368,7 @@ id: MiniTileDiagonalOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_diagonal @@ -298,6 +377,7 @@ id: MiniTileDiagonalCheckerAOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_diagonal_a @@ -306,6 +386,7 @@ id: MiniTileDiagonalCheckerBOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_diagonal_b @@ -314,6 +395,7 @@ id: MiniTileBoxOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_box @@ -322,6 +404,7 @@ id: MiniTileCornerOverlayNE tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_ne @@ -330,6 +413,7 @@ id: MiniTileCornerOverlayNW tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_nw @@ -338,6 +422,7 @@ id: MiniTileCornerOverlaySE tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_se @@ -346,6 +431,7 @@ id: MiniTileCornerOverlaySW tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_sw @@ -354,6 +440,7 @@ id: MiniTileEndOverlayE tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_end_e @@ -362,6 +449,7 @@ id: MiniTileEndOverlayN tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_end_n @@ -370,6 +458,7 @@ id: MiniTileEndOverlayS tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_end_s @@ -378,6 +467,7 @@ id: MiniTileEndOverlayW tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_end_w @@ -386,6 +476,7 @@ id: MiniTileInnerOverlayNE tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_ne @@ -394,6 +485,7 @@ id: MiniTileInnerOverlayNW tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_nw @@ -402,6 +494,7 @@ id: MiniTileInnerOverlaySE tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_se @@ -410,6 +503,7 @@ id: MiniTileInnerOverlaySW tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_sw @@ -418,6 +512,7 @@ id: MiniTileLineOverlayE tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_line_e @@ -426,6 +521,7 @@ id: MiniTileLineOverlayN tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_line_n @@ -434,6 +530,7 @@ id: MiniTileLineOverlayS tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_line_s @@ -442,14 +539,22 @@ id: MiniTileLineOverlayW tags: ["station", "overlay"] defaultCustomColor: true + parent: MiniTile sprite: sprite: Decals/Overlays/greyscale.rsi state: minitile_line_w +# Offset +- type: decal + id: Offset + parent: Overlays + abstract: true + - type: decal id: OffsetOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Offset sprite: sprite: Decals/Overlays/greyscale.rsi state: offset @@ -458,6 +563,7 @@ id: OffsetCheckerAOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Offset sprite: sprite: Decals/Overlays/greyscale.rsi state: offset_checker_a @@ -466,14 +572,22 @@ id: OffsetCheckerBOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Offset sprite: sprite: Decals/Overlays/greyscale.rsi state: offset_checker_b +# Pavement +- type: decal + id: Pavement + parent: Overlays + abstract: true + - type: decal id: PavementOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Pavement sprite: sprite: Decals/Overlays/greyscale.rsi state: pavement @@ -482,6 +596,7 @@ id: PavementCheckerAOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Pavement sprite: sprite: Decals/Overlays/greyscale.rsi state: pavement_checker_a @@ -490,6 +605,7 @@ id: PavementCheckerBOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Pavement sprite: sprite: Decals/Overlays/greyscale.rsi state: pavement_checker_b @@ -498,6 +614,7 @@ id: PavementVerticalOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Pavement sprite: sprite: Decals/Overlays/greyscale.rsi state: pavement_vertical @@ -506,6 +623,7 @@ id: PavementVerticalCheckerAOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Pavement sprite: sprite: Decals/Overlays/greyscale.rsi state: pavement_vertical_checker_a @@ -514,6 +632,8 @@ id: PavementVerticalCheckerBOverlay tags: ["station", "overlay"] defaultCustomColor: true + parent: Pavement sprite: sprite: Decals/Overlays/greyscale.rsi state: pavement_vertical_checker_b + diff --git a/Resources/Prototypes/Decals/Overlays/markups.yml b/Resources/Prototypes/Decals/Overlays/markups.yml new file mode 100644 index 0000000000..409c36d322 --- /dev/null +++ b/Resources/Prototypes/Decals/Overlays/markups.yml @@ -0,0 +1,49 @@ +- type: decal + id: Markup + parent: Overlays + abstract: true + +- type: decal + id: MarkupSquare + parent: Markup + tags: ["overlay"] + defaultCustomColor: true + sprite: + sprite: Decals/Overlays/markups.rsi + state: square + +- type: decal + id: MarkupRectangle1x2 + parent: Markup + tags: ["overlay"] + defaultCustomColor: true + sprite: + sprite: Decals/Overlays/markups.rsi + state: rectangle1x2 + +- type: decal + id: MarkupRectangle1x2Center + parent: Markup + tags: ["overlay"] + defaultCustomColor: true + sprite: + sprite: Decals/Overlays/markups.rsi + state: rectangle1x2center + +- type: decal + id: MarkupSquareQuater + parent: Markup + tags: ["overlay"] + defaultCustomColor: true + sprite: + sprite: Decals/Overlays/markups.rsi + state: squareQuater + +- type: decal + id: MarkupSquareQuaterCenter + parent: Markup + tags: ["overlay"] + defaultCustomColor: true + sprite: + sprite: Decals/Overlays/markups.rsi + state: squareQuaterCenter diff --git a/Resources/Prototypes/Decals/bricktile_dark.yml b/Resources/Prototypes/Decals/bricktile_dark.yml index 87dbc5d785..db0de88c17 100644 --- a/Resources/Prototypes/Decals/bricktile_dark.yml +++ b/Resources/Prototypes/Decals/bricktile_dark.yml @@ -1,5 +1,15 @@ - type: decal + id: BrickTile + abstract: true + +- type: decal + id: BrickTileDark + parent: BrickTile + abstract: true + +- type: decal id: BrickTileDarkBox + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -7,6 +17,7 @@ - type: decal id: BrickTileDarkCornerNe + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -14,6 +25,7 @@ - type: decal id: BrickTileDarkCornerSe + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -21,6 +33,7 @@ - type: decal id: BrickTileDarkCornerNw + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -28,6 +41,7 @@ - type: decal id: BrickTileDarkCornerSw + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -35,6 +49,7 @@ - type: decal id: BrickTileDarkInnerNe + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -42,6 +57,7 @@ - type: decal id: BrickTileDarkInnerSe + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -49,6 +65,7 @@ - type: decal id: BrickTileDarkInnerNw + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -56,6 +73,7 @@ - type: decal id: BrickTileDarkInnerSw + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -63,6 +81,7 @@ - type: decal id: BrickTileDarkEndN + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -70,6 +89,7 @@ - type: decal id: BrickTileDarkEndE + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -77,6 +97,7 @@ - type: decal id: BrickTileDarkEndS + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -84,6 +105,7 @@ - type: decal id: BrickTileDarkEndW + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -91,6 +113,7 @@ - type: decal id: BrickTileDarkLineN + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -98,6 +121,7 @@ - type: decal id: BrickTileDarkLineE + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -105,6 +129,7 @@ - type: decal id: BrickTileDarkLineS + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -112,7 +137,9 @@ - type: decal id: BrickTileDarkLineW + parent: BrickTileDark tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi state: dark_line_w + diff --git a/Resources/Prototypes/Decals/bricktile_steel.yml b/Resources/Prototypes/Decals/bricktile_steel.yml index b45a05c19d..fd0586438d 100644 --- a/Resources/Prototypes/Decals/bricktile_steel.yml +++ b/Resources/Prototypes/Decals/bricktile_steel.yml @@ -1,5 +1,11 @@ - type: decal + id: BrickTileSteel + parent: BrickTile + abstract: true + +- type: decal id: BrickTileSteelBox + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -7,6 +13,7 @@ - type: decal id: BrickTileSteelCornerNe + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -14,6 +21,7 @@ - type: decal id: BrickTileSteelCornerSe + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -21,6 +29,7 @@ - type: decal id: BrickTileSteelCornerNw + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -28,6 +37,7 @@ - type: decal id: BrickTileSteelCornerSw + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -35,6 +45,7 @@ - type: decal id: BrickTileSteelInnerNe + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -42,6 +53,7 @@ - type: decal id: BrickTileSteelInnerSe + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -49,6 +61,7 @@ - type: decal id: BrickTileSteelInnerNw + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -56,6 +69,7 @@ - type: decal id: BrickTileSteelInnerSw + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -63,6 +77,7 @@ - type: decal id: BrickTileSteelEndN + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -70,6 +85,7 @@ - type: decal id: BrickTileSteelEndE + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -77,6 +93,7 @@ - type: decal id: BrickTileSteelEndS + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -84,6 +101,7 @@ - type: decal id: BrickTileSteelEndW + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -91,6 +109,7 @@ - type: decal id: BrickTileSteelLineN + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -98,6 +117,7 @@ - type: decal id: BrickTileSteelLineE + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -105,6 +125,7 @@ - type: decal id: BrickTileSteelLineS + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -112,7 +133,9 @@ - type: decal id: BrickTileSteelLineW + parent: BrickTileSteel tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi state: steel_line_w + diff --git a/Resources/Prototypes/Decals/bricktile_white.yml b/Resources/Prototypes/Decals/bricktile_white.yml index 7ec78b5653..59729fc0b2 100644 --- a/Resources/Prototypes/Decals/bricktile_white.yml +++ b/Resources/Prototypes/Decals/bricktile_white.yml @@ -1,5 +1,11 @@ - type: decal + id: BrickTileWhite + parent: BrickTile + abstract: true + +- type: decal id: BrickTileWhiteBox + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -7,6 +13,7 @@ - type: decal id: BrickTileWhiteCornerNe + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -14,6 +21,7 @@ - type: decal id: BrickTileWhiteCornerSe + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -21,6 +29,7 @@ - type: decal id: BrickTileWhiteCornerNw + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -28,6 +37,7 @@ - type: decal id: BrickTileWhiteCornerSw + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -35,6 +45,7 @@ - type: decal id: BrickTileWhiteInnerNe + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -42,6 +53,7 @@ - type: decal id: BrickTileWhiteInnerSe + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -49,6 +61,7 @@ - type: decal id: BrickTileWhiteInnerNw + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -56,6 +69,7 @@ - type: decal id: BrickTileWhiteInnerSw + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -63,6 +77,7 @@ - type: decal id: BrickTileWhiteEndN + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -70,6 +85,7 @@ - type: decal id: BrickTileWhiteEndE + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -77,6 +93,7 @@ - type: decal id: BrickTileWhiteEndS + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -84,6 +101,7 @@ - type: decal id: BrickTileWhiteEndW + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -91,6 +109,7 @@ - type: decal id: BrickTileWhiteLineN + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -98,6 +117,7 @@ - type: decal id: BrickTileWhiteLineE + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -105,6 +125,7 @@ - type: decal id: BrickTileWhiteLineS + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi @@ -112,7 +133,9 @@ - type: decal id: BrickTileWhiteLineW + parent: BrickTileWhite tags: ["station", "markings"] sprite: sprite: Decals/bricktile.rsi state: white_line_w + diff --git a/Resources/Prototypes/Decals/burnt.yml b/Resources/Prototypes/Decals/burnt.yml new file mode 100644 index 0000000000..da2088437c --- /dev/null +++ b/Resources/Prototypes/Decals/burnt.yml @@ -0,0 +1,39 @@ +- type: decal + id: burnt + abstract: true + +- type: decal + id: burnt1 + parent: burnt + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt1 + +- type: decal + id: burnt2 + parent: burnt + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt2 + +- type: decal + id: burnt3 + parent: burnt + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt3 + +- type: decal + id: burnt4 + parent: burnt + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt4 diff --git a/Resources/Prototypes/Decals/concrete_trim.yml b/Resources/Prototypes/Decals/concrete_trim.yml index 43d53c8f82..075a16e2c6 100644 --- a/Resources/Prototypes/Decals/concrete_trim.yml +++ b/Resources/Prototypes/Decals/concrete_trim.yml @@ -1,5 +1,20 @@ - type: decal + id: ConcreteTrim + abstract: true + +- type: decal + id: GrayConcreteTrim + parent: ConcreteTrim + abstract: true + +- type: decal + id: OldConcreteTrim + parent: ConcreteTrim + abstract: true + +- type: decal id: ConcreteTrimBox + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -7,6 +22,7 @@ - type: decal id: ConcreteTrimCornerNe + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -14,6 +30,7 @@ - type: decal id: ConcreteTrimCornerSe + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -21,6 +38,7 @@ - type: decal id: ConcreteTrimCornerNw + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -28,6 +46,7 @@ - type: decal id: ConcreteTrimCornerSw + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -35,6 +54,7 @@ - type: decal id: ConcreteTrimInnerNe + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -42,6 +62,7 @@ - type: decal id: ConcreteTrimInnerSe + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -49,6 +70,7 @@ - type: decal id: ConcreteTrimInnerNw + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -56,6 +78,7 @@ - type: decal id: ConcreteTrimInnerSw + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -63,6 +86,7 @@ - type: decal id: ConcreteTrimEndN + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -70,6 +94,7 @@ - type: decal id: ConcreteTrimEndE + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -77,6 +102,7 @@ - type: decal id: ConcreteTrimEndS + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -84,6 +110,7 @@ - type: decal id: ConcreteTrimEndW + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -91,6 +118,7 @@ - type: decal id: ConcreteTrimLineN + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -98,6 +126,7 @@ - type: decal id: ConcreteTrimLineE + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -105,6 +134,7 @@ - type: decal id: ConcreteTrimLineS + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -112,6 +142,7 @@ - type: decal id: ConcreteTrimLineW + parent: ConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -119,6 +150,7 @@ - type: decal id: GrayConcreteTrimBox + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -126,6 +158,7 @@ - type: decal id: GrayConcreteTrimCornerNe + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -133,6 +166,7 @@ - type: decal id: GrayConcreteTrimCornerSe + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -140,6 +174,7 @@ - type: decal id: GrayConcreteTrimCornerNw + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -147,6 +182,7 @@ - type: decal id: GrayConcreteTrimCornerSw + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -154,6 +190,7 @@ - type: decal id: GrayConcreteTrimInnerNe + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -161,6 +198,7 @@ - type: decal id: GrayConcreteTrimInnerSe + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -168,6 +206,7 @@ - type: decal id: GrayConcreteTrimInnerNw + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -175,6 +214,7 @@ - type: decal id: GrayConcreteTrimInnerSw + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -182,6 +222,7 @@ - type: decal id: GrayConcreteTrimEndN + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -189,6 +230,7 @@ - type: decal id: GrayConcreteTrimEndE + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -196,6 +238,7 @@ - type: decal id: GrayConcreteTrimEndS + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -203,6 +246,7 @@ - type: decal id: GrayConcreteTrimEndW + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -210,6 +254,7 @@ - type: decal id: GrayConcreteTrimLineN + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -217,6 +262,7 @@ - type: decal id: GrayConcreteTrimLineE + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -224,6 +270,7 @@ - type: decal id: GrayConcreteTrimLineS + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -231,6 +278,7 @@ - type: decal id: GrayConcreteTrimLineW + parent: GrayConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -238,6 +286,7 @@ - type: decal id: OldConcreteTrimBox + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -245,6 +294,7 @@ - type: decal id: OldConcreteTrimCornerNe + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -252,6 +302,7 @@ - type: decal id: OldConcreteTrimCornerSe + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -259,6 +310,7 @@ - type: decal id: OldConcreteTrimCornerNw + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -266,6 +318,7 @@ - type: decal id: OldConcreteTrimCornerSw + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -273,6 +326,7 @@ - type: decal id: OldConcreteTrimInnerNe + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -280,6 +334,7 @@ - type: decal id: OldConcreteTrimInnerSe + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -287,6 +342,7 @@ - type: decal id: OldConcreteTrimInnerNw + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -294,6 +350,7 @@ - type: decal id: OldConcreteTrimInnerSw + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -301,6 +358,7 @@ - type: decal id: OldConcreteTrimEndN + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -308,6 +366,7 @@ - type: decal id: OldConcreteTrimEndE + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -315,6 +374,7 @@ - type: decal id: OldConcreteTrimEndS + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -322,6 +382,7 @@ - type: decal id: OldConcreteTrimEndW + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -329,6 +390,7 @@ - type: decal id: OldConcreteTrimLineN + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -336,6 +398,7 @@ - type: decal id: OldConcreteTrimLineE + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -343,6 +406,7 @@ - type: decal id: OldConcreteTrimLineS + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi @@ -350,7 +414,9 @@ - type: decal id: OldConcreteTrimLineW + parent: OldConcreteTrim tags: ["planet", "markings"] sprite: sprite: Decals/concretetrim.rsi state: oldconcrete_line_w + diff --git a/Resources/Prototypes/Decals/crayons.yml b/Resources/Prototypes/Decals/crayons.yml index 91f942e680..10837bb18a 100644 --- a/Resources/Prototypes/Decals/crayons.yml +++ b/Resources/Prototypes/Decals/crayons.yml @@ -1,5 +1,40 @@ - type: decal - id: alphanumeric_0 + id: Crayons + abstract: true + +- type: decal + id: Numbers + parent: Crayons + abstract: true + +- type: decal + id: Alphabet + parent: Crayons + abstract: true + +- type: decal + id: Graffiti + parent: Crayons + abstract: true + +- type: decal + id: Symbols + parent: Crayons + abstract: true + +- type: decal + id: Info + parent: Crayons + abstract: true + +- type: decal + id: Brushes + parent: Crayons + abstract: true + +- type: decal + id: 0 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -9,7 +44,8 @@ state: 0 - type: decal - id: alphanumeric_1 + id: 1 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -19,7 +55,8 @@ state: 1 - type: decal - id: alphanumeric_2 + id: 2 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -29,7 +66,8 @@ state: 2 - type: decal - id: alphanumeric_3 + id: 3 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -39,7 +77,8 @@ state: 3 - type: decal - id: alphanumeric_4 + id: 4 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -49,7 +88,8 @@ state: 4 - type: decal - id: alphanumeric_5 + id: 5 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -59,7 +99,8 @@ state: 5 - type: decal - id: alphanumeric_6 + id: 6 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -69,7 +110,8 @@ state: 6 - type: decal - id: alphanumeric_7 + id: 7 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -79,7 +121,8 @@ state: 7 - type: decal - id: alphanumeric_8 + id: 8 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -89,7 +132,8 @@ state: 8 - type: decal - id: alphanumeric_9 + id: 9 + parent: Numbers tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -100,6 +144,7 @@ - type: decal id: Blasto + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -110,6 +155,7 @@ - type: decal id: Clandestine + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -120,6 +166,7 @@ - type: decal id: Cyber + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -130,6 +177,7 @@ - type: decal id: Diablo + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -140,6 +188,7 @@ - type: decal id: Donk + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -150,6 +199,7 @@ - type: decal id: Gene + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -160,6 +210,7 @@ - type: decal id: Gib + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -170,6 +221,7 @@ - type: decal id: Max + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -180,6 +232,7 @@ - type: decal id: Newton + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -190,6 +243,7 @@ - type: decal id: North + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -200,6 +254,7 @@ - type: decal id: Omni + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -210,6 +265,7 @@ - type: decal id: Osiron + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -220,6 +276,7 @@ - type: decal id: Prima + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -230,6 +287,7 @@ - type: decal id: Psyke + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -240,6 +298,7 @@ - type: decal id: Sirius + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -250,6 +309,7 @@ - type: decal id: Tunnel + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -260,6 +320,7 @@ - type: decal id: Waffle + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -270,6 +331,7 @@ - type: decal id: ampersand + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -280,6 +342,7 @@ - type: decal id: amyjon + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -290,6 +353,7 @@ - type: decal id: arrow + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -300,6 +364,7 @@ - type: decal id: beepsky + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -310,6 +375,7 @@ - type: decal id: biohazard + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -320,6 +386,7 @@ - type: decal id: blueprint + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -330,6 +397,7 @@ - type: decal id: body + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -340,6 +408,7 @@ - type: decal id: bottle + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -350,6 +419,7 @@ - type: decal id: brush + parent: Brushes tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true @@ -360,6 +430,7 @@ - type: decal id: carp + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -370,6 +441,7 @@ - type: decal id: cat + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -380,6 +452,7 @@ - type: decal id: chevron + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -390,6 +463,7 @@ - type: decal id: clawprint + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -400,6 +474,7 @@ - type: decal id: clown + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -410,6 +485,7 @@ - type: decal id: comma + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -420,6 +496,7 @@ - type: decal id: corgi + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -430,6 +507,7 @@ - type: decal id: credit + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -440,6 +518,7 @@ - type: decal id: cyka + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -450,6 +529,7 @@ - type: decal id: danger + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -460,6 +540,7 @@ - type: decal id: disk + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -470,6 +551,7 @@ - type: decal id: dot + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -480,6 +562,7 @@ - type: decal id: dwarf + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -490,6 +573,7 @@ - type: decal id: electricdanger + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -500,6 +584,7 @@ - type: decal id: end + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -510,6 +595,7 @@ - type: decal id: engie + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -520,6 +606,7 @@ - type: decal id: equals + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -530,6 +617,7 @@ - type: decal id: evac + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -540,6 +628,7 @@ - type: decal id: exclamationmark + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -550,6 +639,7 @@ - type: decal id: face + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -560,6 +650,7 @@ - type: decal id: fireaxe + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -570,6 +661,7 @@ - type: decal id: firedanger + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -580,6 +672,7 @@ - type: decal id: food + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -590,6 +683,7 @@ - type: decal id: footprint + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -600,6 +694,7 @@ - type: decal id: ghost + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -610,6 +705,7 @@ - type: decal id: guy + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -620,6 +716,7 @@ - type: decal id: heart + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -630,6 +727,7 @@ - type: decal id: largebrush + parent: Brushes tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true @@ -640,6 +738,7 @@ - type: decal id: like + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -650,6 +749,7 @@ - type: decal id: line + parent: Brushes tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true @@ -660,6 +760,7 @@ - type: decal id: matt + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -670,6 +771,7 @@ - type: decal id: med + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -680,6 +782,7 @@ - type: decal id: minus + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -690,6 +793,7 @@ - type: decal id: nay + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -700,6 +804,7 @@ - type: decal id: pawprint + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -710,6 +815,7 @@ - type: decal id: peace + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -720,6 +826,7 @@ - type: decal id: percent + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -730,6 +837,7 @@ - type: decal id: plus + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -740,6 +848,7 @@ - type: decal id: pound + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -750,6 +859,7 @@ - type: decal id: prolizard + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -760,6 +870,7 @@ - type: decal id: questionmark + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -770,6 +881,7 @@ - type: decal id: radiation + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -780,6 +892,7 @@ - type: decal id: revolution + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -790,6 +903,7 @@ - type: decal id: rune1 + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -800,6 +914,7 @@ - type: decal id: rune2 + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -810,6 +925,7 @@ - type: decal id: rune3 + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -820,6 +936,7 @@ - type: decal id: rune4 + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -830,6 +947,7 @@ - type: decal id: rune5 + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -840,6 +958,7 @@ - type: decal id: rune6 + parent: Graffiti tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true @@ -850,6 +969,7 @@ - type: decal id: safe + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -860,6 +980,7 @@ - type: decal id: scroll + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -870,6 +991,7 @@ - type: decal id: shop + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -880,6 +1002,7 @@ - type: decal id: shortline + parent: Brushes tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true @@ -890,6 +1013,7 @@ - type: decal id: shotgun + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -900,6 +1024,7 @@ - type: decal id: skull + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -910,6 +1035,7 @@ - type: decal id: slash + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -920,6 +1046,7 @@ - type: decal id: smallbrush + parent: Brushes tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true @@ -930,6 +1057,7 @@ - type: decal id: snake + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -940,6 +1068,7 @@ - type: decal id: space + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -950,6 +1079,7 @@ - type: decal id: splatter + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -960,6 +1090,7 @@ - type: decal id: star + parent: Symbols tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true @@ -970,6 +1101,7 @@ - type: decal id: stickman + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -980,6 +1112,7 @@ - type: decal id: taser + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -990,6 +1123,7 @@ - type: decal id: thinline + parent: Brushes tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true @@ -1000,6 +1134,7 @@ - type: decal id: toilet + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -1010,6 +1145,7 @@ - type: decal id: toolbox + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -1020,6 +1156,7 @@ - type: decal id: trade + parent: Info tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true @@ -1030,6 +1167,7 @@ - type: decal id: uboa + parent: Crayons tags: ["crayon"] defaultCleanable: true defaultCustomColor: true @@ -1039,7 +1177,8 @@ state: uboa - type: decal - id: alphanumeric_a + id: a + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1049,7 +1188,8 @@ state: a - type: decal - id: alphanumeric_b + id: b + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1059,7 +1199,8 @@ state: b - type: decal - id: alphanumeric_c + id: c + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1069,7 +1210,8 @@ state: c - type: decal - id: alphanumeric_d + id: d + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1079,7 +1221,8 @@ state: d - type: decal - id: alphanumeric_e + id: e + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1089,7 +1232,8 @@ state: e - type: decal - id: alphanumeric_f + id: f + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1099,7 +1243,8 @@ state: f - type: decal - id: alphanumeric_g + id: g + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1109,7 +1254,8 @@ state: g - type: decal - id: alphanumeric_h + id: h + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1119,7 +1265,8 @@ state: h - type: decal - id: alphanumeric_i + id: i + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1129,7 +1276,8 @@ state: i - type: decal - id: alphanumeric_j + id: j + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1139,7 +1287,8 @@ state: j - type: decal - id: alphanumeric_k + id: k + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1149,7 +1298,8 @@ state: k - type: decal - id: alphanumeric_l + id: l + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1159,7 +1309,8 @@ state: l - type: decal - id: alphanumeric_m + id: m + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1169,7 +1320,8 @@ state: m - type: decal - id: alphanumeric_n + id: n + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1179,7 +1331,8 @@ state: n - type: decal - id: alphanumeric_o + id: o + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1189,7 +1342,8 @@ state: o - type: decal - id: alphanumeric_p + id: p + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1199,7 +1353,8 @@ state: p - type: decal - id: alphanumeric_q + id: q + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1209,7 +1364,8 @@ state: q - type: decal - id: alphanumeric_r + id: r + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1219,7 +1375,8 @@ state: r - type: decal - id: alphanumeric_s + id: s + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1229,7 +1386,8 @@ state: s - type: decal - id: alphanumeric_t + id: t + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1239,7 +1397,8 @@ state: t - type: decal - id: alphanumeric_u + id: u + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1249,7 +1408,8 @@ state: u - type: decal - id: alphanumeric_v + id: v + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1259,7 +1419,8 @@ state: v - type: decal - id: alphanumeric_w + id: w + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1269,7 +1430,8 @@ state: w - type: decal - id: alphanumeric_x + id: x + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1279,7 +1441,8 @@ state: x - type: decal - id: alphanumeric_y + id: y + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1289,7 +1452,8 @@ state: y - type: decal - id: alphanumeric_z + id: z + parent: Alphabet tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true @@ -1297,3 +1461,4 @@ sprite: sprite: Effects/crayondecals.rsi state: z + diff --git a/Resources/Prototypes/Decals/derelictsign.yml b/Resources/Prototypes/Decals/derelictsign.yml index 968255e7e3..77506879f5 100644 --- a/Resources/Prototypes/Decals/derelictsign.yml +++ b/Resources/Prototypes/Decals/derelictsign.yml @@ -1,8 +1,13 @@ #This has to be split up like this because tiles remove the decal under them, and the derelict sign is bigger then 32x32 when combined. +- type: decal + id: DerelictSign + abstract: true + #Bottom - type: decal id: DerelictSignBottom1 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -10,6 +15,7 @@ - type: decal id: DerelictSignBottom2 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -17,6 +23,7 @@ - type: decal id: DerelictSignBottom3 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -24,6 +31,7 @@ - type: decal id: DerelictSignBottom4 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -31,6 +39,7 @@ - type: decal id: DerelictSignBottom5 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -38,6 +47,7 @@ - type: decal id: DerelictSignBottom6 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -45,6 +55,7 @@ - type: decal id: DerelictSignBottom7 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -52,6 +63,7 @@ - type: decal id: DerelictSignBottom8 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -60,6 +72,7 @@ #Top - type: decal id: DerelictSignTop1 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -67,6 +80,7 @@ - type: decal id: DerelictSignTop2 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -74,6 +88,7 @@ - type: decal id: DerelictSignTop3 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -81,6 +96,7 @@ - type: decal id: DerelictSignTop4 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -88,6 +104,7 @@ - type: decal id: DerelictSignTop5 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -95,6 +112,7 @@ - type: decal id: DerelictSignTop6 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -102,6 +120,7 @@ - type: decal id: DerelictSignTop7 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi @@ -109,7 +128,9 @@ - type: decal id: DerelictSignTop8 + parent: DerelictSign tags: ["station"] sprite: sprite: Decals/derelictsign.rsi state: derelict16 + diff --git a/Resources/Prototypes/Decals/dirty.yml b/Resources/Prototypes/Decals/dirty.yml index 034d1e2d64..3b9091a226 100644 --- a/Resources/Prototypes/Decals/dirty.yml +++ b/Resources/Prototypes/Decals/dirty.yml @@ -1,7 +1,12 @@ # If you spawn any of these, they should probably be made cleanable as well. +- type: decal + id: Dirty + abstract: true + - type: decal id: Dirt + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -10,6 +15,7 @@ - type: decal id: DirtLight + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -18,6 +24,7 @@ - type: decal id: DirtMedium + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -26,6 +33,7 @@ - type: decal id: DirtHeavy + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -34,6 +42,7 @@ - type: decal id: DirtHeavyMonotile + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -42,6 +51,7 @@ - type: decal id: Damaged + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -50,6 +60,7 @@ - type: decal id: Remains + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: @@ -58,10 +69,10 @@ - type: decal id: Rust + parent: Dirty tags: ["station", "dirty"] defaultCleanable: true sprite: sprite: Decals/dirty.rsi state: rust - diff --git a/Resources/Prototypes/Decals/flora.yml b/Resources/Prototypes/Decals/flora.yml index 05739e9ca9..918f538f3e 100644 --- a/Resources/Prototypes/Decals/flora.yml +++ b/Resources/Prototypes/Decals/flora.yml @@ -1,5 +1,15 @@ +- type: decal + id: Flora + abstract: true + +- type: decal + id: Grass + parent: Flora + abstract: true + - type: decal id: Grassa1 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -9,6 +19,7 @@ - type: decal id: Grassa2 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -18,6 +29,7 @@ - type: decal id: Grassa3 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -27,6 +39,7 @@ - type: decal id: Grassa4 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -36,6 +49,7 @@ - type: decal id: Grassa5 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -45,6 +59,7 @@ - type: decal id: Grassb1 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -54,6 +69,7 @@ - type: decal id: Grassb2 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -63,6 +79,7 @@ - type: decal id: Grassb3 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -72,6 +89,7 @@ - type: decal id: Grassb4 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -81,6 +99,7 @@ - type: decal id: Grassb5 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -90,6 +109,7 @@ - type: decal id: Grassc1 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -99,6 +119,7 @@ - type: decal id: Grassc2 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -108,6 +129,7 @@ - type: decal id: Grassc3 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -117,6 +139,7 @@ - type: decal id: Grassc4 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -126,6 +149,7 @@ - type: decal id: Grassd1 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -135,6 +159,7 @@ - type: decal id: Grassd2 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -144,6 +169,7 @@ - type: decal id: Grassd3 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -153,6 +179,7 @@ - type: decal id: Grasse1 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -162,6 +189,7 @@ - type: decal id: Grasse2 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -171,6 +199,7 @@ - type: decal id: Grasse3 + parent: Grass tags: ["flora"] snapCardinals: true defaultSnap: false @@ -178,8 +207,14 @@ sprite: Decals/Flora/flora_grass.rsi state: grasse3 +- type: decal + id: GrassSnow + parent: Flora + abstract: true + - type: decal id: grasssnow + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -189,6 +224,7 @@ - type: decal id: grasssnow01 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -198,6 +234,7 @@ - type: decal id: grasssnow02 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -207,6 +244,7 @@ - type: decal id: grasssnow03 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -216,6 +254,7 @@ - type: decal id: grasssnow04 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -225,6 +264,7 @@ - type: decal id: grasssnow05 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -234,6 +274,7 @@ - type: decal id: grasssnow06 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -243,6 +284,7 @@ - type: decal id: grasssnow07 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -252,6 +294,7 @@ - type: decal id: grasssnow08 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -261,6 +304,7 @@ - type: decal id: grasssnow09 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -270,6 +314,7 @@ - type: decal id: grasssnow10 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -279,6 +324,7 @@ - type: decal id: grasssnow11 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -288,6 +334,7 @@ - type: decal id: grasssnow12 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -297,6 +344,7 @@ - type: decal id: grasssnow13 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -306,6 +354,7 @@ - type: decal id: grasssnowa1 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -315,6 +364,7 @@ - type: decal id: grasssnowa2 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -324,6 +374,7 @@ - type: decal id: grasssnowa3 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -333,6 +384,7 @@ - type: decal id: grasssnowb1 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -342,6 +394,7 @@ - type: decal id: grasssnowb2 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -351,6 +404,7 @@ - type: decal id: grasssnowb3 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -360,6 +414,7 @@ - type: decal id: grasssnowc1 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -369,6 +424,7 @@ - type: decal id: grasssnowc2 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -378,6 +434,7 @@ - type: decal id: grasssnowc3 + parent: GrassSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -385,8 +442,14 @@ sprite: Decals/Flora/flora_grasssnow.rsi state: grasssnowc3 +- type: decal + id: Bush + parent: Flora + abstract: true + - type: decal id: Busha1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -396,6 +459,7 @@ - type: decal id: Busha2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -405,6 +469,7 @@ - type: decal id: Busha3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -414,6 +479,7 @@ - type: decal id: Bushb1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -423,6 +489,7 @@ - type: decal id: Bushb2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -432,6 +499,7 @@ - type: decal id: Bushb3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -441,6 +509,7 @@ - type: decal id: Bushc1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -450,6 +519,7 @@ - type: decal id: Bushc2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -459,6 +529,7 @@ - type: decal id: Bushc3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -468,6 +539,7 @@ - type: decal id: Bushd1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -477,6 +549,7 @@ - type: decal id: Bushd2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -486,6 +559,7 @@ - type: decal id: Bushd3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -495,6 +569,7 @@ - type: decal id: Bushd4 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -504,6 +579,7 @@ - type: decal id: Bushe1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -513,6 +589,7 @@ - type: decal id: Bushe2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -522,6 +599,7 @@ - type: decal id: Bushe3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -531,6 +609,7 @@ - type: decal id: Bushe4 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -540,6 +619,7 @@ - type: decal id: Bushf1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -549,6 +629,7 @@ - type: decal id: Bushf2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -558,6 +639,7 @@ - type: decal id: Bushf3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -567,6 +649,7 @@ - type: decal id: Bushg1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -576,6 +659,7 @@ - type: decal id: Bushg2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -585,6 +669,7 @@ - type: decal id: Bushg3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -594,6 +679,7 @@ - type: decal id: Bushg4 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -603,6 +689,7 @@ - type: decal id: Bushh1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -612,6 +699,7 @@ - type: decal id: Bushh2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -621,6 +709,7 @@ - type: decal id: Bushh3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -630,6 +719,7 @@ - type: decal id: Bushi1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -639,6 +729,7 @@ - type: decal id: Bushi2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -648,6 +739,7 @@ - type: decal id: Bushi3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -657,6 +749,7 @@ - type: decal id: Bushi4 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -666,6 +759,7 @@ - type: decal id: Bushj1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -675,6 +769,7 @@ - type: decal id: Bushj2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -684,6 +779,7 @@ - type: decal id: Bushj3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -693,6 +789,7 @@ - type: decal id: Bushk1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -702,6 +799,7 @@ - type: decal id: Bushk2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -711,6 +809,7 @@ - type: decal id: Bushk3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -720,6 +819,7 @@ - type: decal id: Bushl1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -729,6 +829,7 @@ - type: decal id: Bushl2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -738,6 +839,7 @@ - type: decal id: Bushl3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -747,6 +849,7 @@ - type: decal id: Bushl4 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -756,6 +859,7 @@ - type: decal id: Bushm1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -765,6 +869,7 @@ - type: decal id: Bushm2 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -774,6 +879,7 @@ - type: decal id: Bushm3 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -783,6 +889,7 @@ - type: decal id: Bushm4 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -792,6 +899,7 @@ - type: decal id: Bushn1 + parent: Bush tags: ["flora"] snapCardinals: true defaultSnap: false @@ -799,8 +907,14 @@ sprite: Decals/Flora/flora_bushes.rsi state: bushn1 +- type: decal + id: BushSnow + parent: Flora + abstract: true + - type: decal id: bushsnowa1 + parent: BushSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -810,6 +924,7 @@ - type: decal id: bushsnowa2 + parent: BushSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -819,6 +934,7 @@ - type: decal id: bushsnowa3 + parent: BushSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -828,6 +944,7 @@ - type: decal id: bushsnowb1 + parent: BushSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -837,6 +954,7 @@ - type: decal id: bushsnowb2 + parent: BushSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -846,6 +964,7 @@ - type: decal id: bushsnowb3 + parent: BushSnow tags: ["flora"] snapCardinals: true defaultSnap: false @@ -853,8 +972,14 @@ sprite: Decals/Flora/flora_bushessnow.rsi state: bushsnowb3 +- type: decal + id: Rock + parent: Flora + abstract: true + - type: decal id: Rock01 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -864,6 +989,7 @@ - type: decal id: Rock02 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -873,6 +999,7 @@ - type: decal id: Rock03 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -882,6 +1009,7 @@ - type: decal id: Rock04 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -891,6 +1019,7 @@ - type: decal id: Rock05 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -900,6 +1029,7 @@ - type: decal id: Rock06 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -909,6 +1039,7 @@ - type: decal id: Rock07 + parent: Rock tags: ["flora"] snapCardinals: true defaultSnap: false @@ -916,8 +1047,14 @@ sprite: Decals/Flora/flora_rocks.rsi state: rock07 +- type: decal + id: Flower + parent: Flora + abstract: true + - type: decal id: Flowersbr1 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -927,6 +1064,7 @@ - type: decal id: Flowersbr2 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -936,6 +1074,7 @@ - type: decal id: Flowersbr3 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -945,6 +1084,7 @@ - type: decal id: Flowerspv1 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -954,6 +1094,7 @@ - type: decal id: Flowerspv2 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -963,6 +1104,7 @@ - type: decal id: Flowerspv3 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -972,6 +1114,7 @@ - type: decal id: Flowersy1 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -981,6 +1124,7 @@ - type: decal id: Flowersy2 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -990,6 +1134,7 @@ - type: decal id: Flowersy3 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false @@ -999,6 +1144,7 @@ - type: decal id: Flowersy4 + parent: Flower tags: ["flora"] snapCardinals: true defaultSnap: false diff --git a/Resources/Prototypes/Decals/markings.yml b/Resources/Prototypes/Decals/markings.yml index 12fb7204b7..1d4a031d05 100644 --- a/Resources/Prototypes/Decals/markings.yml +++ b/Resources/Prototypes/Decals/markings.yml @@ -1,5 +1,10 @@ - type: decal + id: Markings + abstract: true + +- type: decal id: Arrows + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -7,14 +12,21 @@ - type: decal id: ArrowsGreyscale + parent: Markings tags: ["station", "markings"] defaultCustomColor: true sprite: sprite: Decals/markings.rsi state: arrows_greyscale +- type: decal + id: Bots + parent: Markings + abstract: true + - type: decal id: Bot + parent: Bots tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -22,6 +34,7 @@ - type: decal id: BotGreyscale + parent: Bots tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -30,6 +43,7 @@ - type: decal id: BotLeft + parent: Bots tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -37,6 +51,7 @@ - type: decal id: BotLeftGreyscale + parent: Bots tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -45,6 +60,7 @@ - type: decal id: BotRight + parent: Bots tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -52,6 +68,7 @@ - type: decal id: BotRightGreyscale + parent: Bots tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -60,6 +77,7 @@ - type: decal id: Box + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -67,6 +85,7 @@ - type: decal id: BoxGreyscale + parent: Markings tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -75,6 +94,7 @@ - type: decal id: Caution + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -82,6 +102,7 @@ - type: decal id: CautionGreyscale + parent: Markings tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -90,6 +111,7 @@ - type: decal id: Delivery + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -97,6 +119,7 @@ - type: decal id: DeliveryGreyscale + parent: Markings tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -105,6 +128,7 @@ - type: decal id: LoadingArea + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -112,6 +136,7 @@ - type: decal id: LoadingAreaGreyscale + parent: Markings tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -120,6 +145,7 @@ - type: decal id: StandClear + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -127,14 +153,21 @@ - type: decal id: StandClearGreyscale + parent: Markings tags: ["station", "markings"] defaultCustomColor: true sprite: sprite: Decals/markings.rsi state: standclear_greyscale +- type: decal + id: Warn + parent: Markings + abstract: true + - type: decal id: WarnBox + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -142,6 +175,7 @@ - type: decal id: WarnBoxGreyscale + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -170,6 +204,7 @@ - type: decal id: WarnFull + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -177,6 +212,7 @@ - type: decal id: WarnFullGreyscale + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -269,6 +305,7 @@ - type: decal id: WarnCornerGreyscaleNE + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -277,6 +314,7 @@ - type: decal id: WarnCornerGreyscaleNW + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -285,6 +323,7 @@ - type: decal id: WarnCornerGreyscaleSE + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -293,6 +332,7 @@ - type: decal id: WarnCornerGreyscaleSW + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -301,6 +341,7 @@ - type: decal id: WarnCornerNE + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -308,6 +349,7 @@ - type: decal id: WarnCornerNW + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -315,6 +357,7 @@ - type: decal id: WarnCornerSE + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -322,6 +365,7 @@ - type: decal id: WarnCornerSW + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -329,6 +373,7 @@ - type: decal id: WarnCornerSmallGreyscaleNE + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -337,6 +382,7 @@ - type: decal id: WarnCornerSmallGreyscaleNW + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -345,6 +391,7 @@ - type: decal id: WarnCornerSmallGreyscaleSE + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -353,6 +400,7 @@ - type: decal id: WarnCornerSmallGreyscaleSW + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -361,6 +409,7 @@ - type: decal id: WarnCornerSmallNE + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -368,6 +417,7 @@ - type: decal id: WarnCornerSmallNW + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -375,6 +425,7 @@ - type: decal id: WarnCornerSmallSE + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -382,6 +433,7 @@ - type: decal id: WarnCornerSmallSW + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -389,6 +441,7 @@ - type: decal id: WarnEndE + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -396,6 +449,7 @@ - type: decal id: WarnEndN + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -403,6 +457,7 @@ - type: decal id: WarnEndS + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -410,6 +465,7 @@ - type: decal id: WarnEndW + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -417,6 +473,7 @@ - type: decal id: WarnEndGreyscaleE + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -425,6 +482,7 @@ - type: decal id: WarnEndGreyscaleN + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -433,6 +491,7 @@ - type: decal id: WarnEndGreyscaleS + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -441,6 +500,7 @@ - type: decal id: WarnEndGreyscaleW + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -449,6 +509,7 @@ - type: decal id: WarnLineE + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -456,6 +517,7 @@ - type: decal id: WarnLineW + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -463,6 +525,7 @@ - type: decal id: WarnLineN + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -470,6 +533,7 @@ - type: decal id: WarnLineS + parent: Warn tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -477,6 +541,7 @@ - type: decal id: WarnLineGreyscaleE + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -485,6 +550,7 @@ - type: decal id: WarnLineGreyscaleN + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -493,6 +559,7 @@ - type: decal id: WarnLineGreyscaleS + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -501,6 +568,7 @@ - type: decal id: WarnLineGreyscaleW + parent: Warn tags: ["station", "markings"] defaultCustomColor: true sprite: @@ -509,6 +577,7 @@ - type: decal id: HatchSmall + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi @@ -516,7 +585,9 @@ - type: decal id: VentSmall + parent: Markings tags: ["station", "markings"] sprite: sprite: Decals/markings.rsi state: vent_small + diff --git a/Resources/Prototypes/Decals/minitile_dark.yml b/Resources/Prototypes/Decals/minitile_dark.yml index ea54205446..ca8f58ae00 100644 --- a/Resources/Prototypes/Decals/minitile_dark.yml +++ b/Resources/Prototypes/Decals/minitile_dark.yml @@ -1,5 +1,11 @@ - type: decal + id: MiniTileDark + parent: MiniTile + abstract: true + +- type: decal id: MiniTileDarkBox + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -7,6 +13,7 @@ - type: decal id: MiniTileDarkCornerNe + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -14,6 +21,7 @@ - type: decal id: MiniTileDarkCornerSe + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -21,6 +29,7 @@ - type: decal id: MiniTileDarkCornerNw + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -28,6 +37,7 @@ - type: decal id: MiniTileDarkCornerSw + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -35,6 +45,7 @@ - type: decal id: MiniTileDarkInnerNe + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -42,6 +53,7 @@ - type: decal id: MiniTileDarkInnerSe + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -49,6 +61,7 @@ - type: decal id: MiniTileDarkInnerNw + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -56,6 +69,7 @@ - type: decal id: MiniTileDarkInnerSw + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -63,6 +77,7 @@ - type: decal id: MiniTileDarkEndN + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -70,6 +85,7 @@ - type: decal id: MiniTileDarkEndE + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -77,6 +93,7 @@ - type: decal id: MiniTileDarkEndS + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -84,6 +101,7 @@ - type: decal id: MiniTileDarkEndW + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -91,6 +109,7 @@ - type: decal id: MiniTileDarkLineN + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -98,6 +117,7 @@ - type: decal id: MiniTileDarkLineE + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -105,6 +125,7 @@ - type: decal id: MiniTileDarkLineS + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -112,7 +133,9 @@ - type: decal id: MiniTileDarkLineW + parent: MiniTileDark tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi state: dark_line_w + diff --git a/Resources/Prototypes/Decals/minitile_steel.yml b/Resources/Prototypes/Decals/minitile_steel.yml index c6bd059ee8..3f6f0e25a9 100644 --- a/Resources/Prototypes/Decals/minitile_steel.yml +++ b/Resources/Prototypes/Decals/minitile_steel.yml @@ -1,5 +1,11 @@ - type: decal + id: MiniTileSteel + parent: MiniTile + abstract: true + +- type: decal id: MiniTileSteelBox + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -7,6 +13,7 @@ - type: decal id: MiniTileSteelCornerNe + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -14,6 +21,7 @@ - type: decal id: MiniTileSteelCornerSe + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -21,6 +29,7 @@ - type: decal id: MiniTileSteelCornerNw + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -28,6 +37,7 @@ - type: decal id: MiniTileSteelCornerSw + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -35,6 +45,7 @@ - type: decal id: MiniTileSteelInnerNe + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -42,6 +53,7 @@ - type: decal id: MiniTileSteelInnerSe + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -49,6 +61,7 @@ - type: decal id: MiniTileSteelInnerNw + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -56,6 +69,7 @@ - type: decal id: MiniTileSteelInnerSw + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -63,6 +77,7 @@ - type: decal id: MiniTileSteelEndN + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -70,6 +85,7 @@ - type: decal id: MiniTileSteelEndE + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -77,6 +93,7 @@ - type: decal id: MiniTileSteelEndS + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -84,6 +101,7 @@ - type: decal id: MiniTileSteelEndW + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -91,6 +109,7 @@ - type: decal id: MiniTileSteelLineN + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -98,6 +117,7 @@ - type: decal id: MiniTileSteelLineE + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -105,6 +125,7 @@ - type: decal id: MiniTileSteelLineS + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -112,7 +133,9 @@ - type: decal id: MiniTileSteelLineW + parent: MiniTileSteel tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi state: steel_line_w + diff --git a/Resources/Prototypes/Decals/minitile_white.yml b/Resources/Prototypes/Decals/minitile_white.yml index 163ac37d53..6443fed99e 100644 --- a/Resources/Prototypes/Decals/minitile_white.yml +++ b/Resources/Prototypes/Decals/minitile_white.yml @@ -1,5 +1,11 @@ - type: decal + id: MiniTileWhite + parent: MiniTile + abstract: true + +- type: decal id: MiniTileWhiteBox + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -7,6 +13,7 @@ - type: decal id: MiniTileWhiteCornerNe + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -14,6 +21,7 @@ - type: decal id: MiniTileWhiteCornerSe + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -21,6 +29,7 @@ - type: decal id: MiniTileWhiteCornerNw + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -28,6 +37,7 @@ - type: decal id: MiniTileWhiteCornerSw + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -35,6 +45,7 @@ - type: decal id: MiniTileWhiteInnerNe + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -42,6 +53,7 @@ - type: decal id: MiniTileWhiteInnerSe + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -49,6 +61,7 @@ - type: decal id: MiniTileWhiteInnerNw + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -56,6 +69,7 @@ - type: decal id: MiniTileWhiteInnerSw + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -63,6 +77,7 @@ - type: decal id: MiniTileWhiteEndN + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -70,6 +85,7 @@ - type: decal id: MiniTileWhiteEndE + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -77,6 +93,7 @@ - type: decal id: MiniTileWhiteEndS + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -84,6 +101,7 @@ - type: decal id: MiniTileWhiteEndW + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -91,6 +109,7 @@ - type: decal id: MiniTileWhiteLineN + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -98,6 +117,7 @@ - type: decal id: MiniTileWhiteLineE + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -105,6 +125,7 @@ - type: decal id: MiniTileWhiteLineS + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi @@ -112,7 +133,9 @@ - type: decal id: MiniTileWhiteLineW + parent: MiniTileWhite tags: ["station", "markings"] sprite: sprite: Decals/minitile.rsi state: white_line_w + diff --git a/Resources/Prototypes/Decals/originsign.yml b/Resources/Prototypes/Decals/originsign.yml index a57eaaff6b..57fd206732 100644 --- a/Resources/Prototypes/Decals/originsign.yml +++ b/Resources/Prototypes/Decals/originsign.yml @@ -1,5 +1,10 @@ - type: decal + id: OriginStationSign + abstract: true + +- type: decal id: OriginStationSign1 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -7,6 +12,7 @@ - type: decal id: OriginStationSign2 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -14,6 +20,7 @@ - type: decal id: OriginStationSign3 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -21,6 +28,7 @@ - type: decal id: OriginStationSign4 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -28,6 +36,7 @@ - type: decal id: OriginStationSign5 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -35,6 +44,7 @@ - type: decal id: OriginStationSign6 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -42,6 +52,7 @@ - type: decal id: OriginStationSign7 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -50,6 +61,7 @@ - type: decal id: OriginStationSign8 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -57,6 +69,7 @@ - type: decal id: OriginStationSign9 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -64,6 +77,7 @@ - type: decal id: OriginStationSign10 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -71,6 +85,7 @@ - type: decal id: OriginStationSign11 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -78,6 +93,7 @@ - type: decal id: OriginStationSign12 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi @@ -85,6 +101,7 @@ - type: decal id: OriginStationSign13 + parent: OriginStationSign tags: ["station"] sprite: sprite: Decals/originsign.rsi diff --git a/Resources/Prototypes/Decals/planet.yml b/Resources/Prototypes/Decals/planet.yml index e027d60857..f3fa0716c8 100644 --- a/Resources/Prototypes/Decals/planet.yml +++ b/Resources/Prototypes/Decals/planet.yml @@ -1,6 +1,7 @@ # Flowers - type: decal id: FlowersBROne + parent: Flower snapCardinals: true defaultSnap: false sprite: @@ -9,6 +10,7 @@ - type: decal id: FlowersBRTwo + parent: Flower snapCardinals: true defaultSnap: false sprite: @@ -17,6 +19,7 @@ - type: decal id: FlowersBRThree + parent: Flower snapCardinals: true defaultSnap: false sprite: @@ -26,6 +29,7 @@ # Grass - type: decal id: BushAOne + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -34,6 +38,7 @@ - type: decal id: BushATwo + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -42,6 +47,7 @@ - type: decal id: BushAThree + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -50,6 +56,7 @@ - type: decal id: BushCOne + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -58,6 +65,7 @@ - type: decal id: BushCTwo + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -66,6 +74,7 @@ - type: decal id: BushCThree + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -74,6 +83,7 @@ - type: decal id: BushDOne + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -82,6 +92,7 @@ - type: decal id: BushDTwo + parent: Bush snapCardinals: true defaultSnap: false sprite: @@ -90,8 +101,10 @@ - type: decal id: BushDThree + parent: Bush snapCardinals: true defaultSnap: false sprite: sprite: /Textures/Decals/Flora/flora_bushes.rsi state: bushd3 + diff --git a/Resources/Prototypes/Decals/rock.yml b/Resources/Prototypes/Decals/rock.yml index 8dd534a307..30b98c4536 100644 --- a/Resources/Prototypes/Decals/rock.yml +++ b/Resources/Prototypes/Decals/rock.yml @@ -1,5 +1,6 @@ - type: decal id: Basalt1 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -9,6 +10,7 @@ - type: decal id: Basalt2 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -18,6 +20,7 @@ - type: decal id: Basalt3 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -27,6 +30,7 @@ - type: decal id: Basalt4 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -36,6 +40,7 @@ - type: decal id: Basalt5 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -45,6 +50,7 @@ - type: decal id: Basalt6 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -54,6 +60,7 @@ - type: decal id: Basalt7 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -63,6 +70,7 @@ - type: decal id: Basalt8 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false @@ -72,9 +80,11 @@ - type: decal id: Basalt9 + parent: Rock tags: ["rock"] snapCardinals: true defaultSnap: false sprite: sprite: Decals/basalt.rsi state: basalt9 + diff --git a/Resources/Prototypes/Decals/ss14sign.yml b/Resources/Prototypes/Decals/ss14sign.yml index c78b180c69..8fb542d510 100644 --- a/Resources/Prototypes/Decals/ss14sign.yml +++ b/Resources/Prototypes/Decals/ss14sign.yml @@ -1,5 +1,10 @@ - type: decal + id: SpaceStationSign + abstract: true + +- type: decal id: SpaceStationSign1 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi @@ -7,6 +12,7 @@ - type: decal id: SpaceStationSign2 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi @@ -14,6 +20,7 @@ - type: decal id: SpaceStationSign3 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi @@ -21,6 +28,7 @@ - type: decal id: SpaceStationSign4 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi @@ -28,6 +36,7 @@ - type: decal id: SpaceStationSign5 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi @@ -35,6 +44,7 @@ - type: decal id: SpaceStationSign6 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi @@ -42,9 +52,9 @@ - type: decal id: SpaceStationSign7 + parent: SpaceStationSign tags: ["station"] sprite: sprite: Decals/ss14sign.rsi state: ss14sign7 - diff --git a/Resources/Prototypes/Decals/stairs.yml b/Resources/Prototypes/Decals/stairs.yml index a4c1ac7ae8..faf4108df1 100644 --- a/Resources/Prototypes/Decals/stairs.yml +++ b/Resources/Prototypes/Decals/stairs.yml @@ -1,170 +1,203 @@ #TODO: Remove all of these when possible, apparently decals aren't possible to just remove right now without causing mapper issues. #Please do not make any of these into the new entity stairs unless you want to make new sprites for them. +- type: decal + id: Deprecated + abstract: true + - type: decal id: StairsMaterialE + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsMaterialN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsMaterialS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsMaterialW + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsE + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsW + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsLE + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsLN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsLS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsLW + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsME + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsMN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsMS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsMW + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsRE + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsRN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsRS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsRW + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsStoneE + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsStoneN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsStoneS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsStoneW + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsWoodE + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsWoodN + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsWoodS + parent: Deprecated sprite: sprite: deprecated.rsi state: deprecated - type: decal id: StairsWoodW + parent: Deprecated sprite: sprite: deprecated.rsi - state: deprecated \ No newline at end of file + state: deprecated + diff --git a/Resources/Prototypes/Decals/syndlogo.yml b/Resources/Prototypes/Decals/syndlogo.yml index f9cda95c70..1ef62684e7 100644 --- a/Resources/Prototypes/Decals/syndlogo.yml +++ b/Resources/Prototypes/Decals/syndlogo.yml @@ -1,5 +1,10 @@ +- type: decal + id: SyndicateLogo + abstract: true + - type: decal id: syndlogo1 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -7,6 +12,7 @@ - type: decal id: syndlogo2 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -14,6 +20,7 @@ - type: decal id: syndlogo3 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -21,6 +28,7 @@ - type: decal id: syndlogo4 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -28,6 +36,7 @@ - type: decal id: syndlogo5 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -35,6 +44,7 @@ - type: decal id: syndlogo6 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -42,6 +52,7 @@ - type: decal id: syndlogo7 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -49,6 +60,7 @@ - type: decal id: syndlogo8 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -56,6 +68,7 @@ - type: decal id: syndlogo9 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -63,6 +76,7 @@ - type: decal id: syndlogo10 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -70,6 +84,7 @@ - type: decal id: syndlogo11 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -77,6 +92,7 @@ - type: decal id: syndlogo12 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -84,6 +100,7 @@ - type: decal id: syndlogo13 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -91,6 +108,7 @@ - type: decal id: syndlogo14 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -98,6 +116,7 @@ - type: decal id: syndlogo15 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -105,6 +124,7 @@ - type: decal id: syndlogo16 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -112,6 +132,7 @@ - type: decal id: syndlogo17 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -119,6 +140,7 @@ - type: decal id: syndlogo18 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi @@ -126,7 +148,9 @@ - type: decal id: syndlogo19 + parent: SyndicateLogo tags: ["syndicate"] sprite: sprite: Decals/syndlogo.rsi - state: syndlogo19 \ No newline at end of file + state: syndlogo19 + diff --git a/Resources/Prototypes/Decals/wood_trim_thin.yml b/Resources/Prototypes/Decals/wood_trim_thin.yml index 9e3084f38d..9ddc601fd5 100644 --- a/Resources/Prototypes/Decals/wood_trim_thin.yml +++ b/Resources/Prototypes/Decals/wood_trim_thin.yml @@ -1,5 +1,10 @@ - type: decal + id: WoodTrimThin + abstract: true + +- type: decal id: WoodTrimThinBox + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -7,6 +12,7 @@ - type: decal id: WoodTrimThinCornerNe + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -14,6 +20,7 @@ - type: decal id: WoodTrimThinCornerSe + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -21,6 +28,7 @@ - type: decal id: WoodTrimThinCornerNw + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -28,6 +36,7 @@ - type: decal id: WoodTrimThinCornerSw + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -35,6 +44,7 @@ - type: decal id: WoodTrimThinInnerNe + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -42,6 +52,7 @@ - type: decal id: WoodTrimThinInnerSe + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -49,6 +60,7 @@ - type: decal id: WoodTrimThinInnerNw + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -56,6 +68,7 @@ - type: decal id: WoodTrimThinInnerSw + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -63,6 +76,7 @@ - type: decal id: WoodTrimThinEndN + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -70,6 +84,7 @@ - type: decal id: WoodTrimThinEndE + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -77,6 +92,7 @@ - type: decal id: WoodTrimThinEndS + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -84,6 +100,7 @@ - type: decal id: WoodTrimThinEndW + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -91,6 +108,7 @@ - type: decal id: WoodTrimThinLineN + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -98,6 +116,7 @@ - type: decal id: WoodTrimThinLineE + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -105,6 +124,7 @@ - type: decal id: WoodTrimThinLineS + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi @@ -112,7 +132,9 @@ - type: decal id: WoodTrimThinLineW + parent: WoodTrimThin tags: ["station", "markings"] sprite: sprite: Decals/wood_trim.rsi state: thin_line_w + diff --git a/Resources/Prototypes/DeltaV/Actions/types.yml b/Resources/Prototypes/DeltaV/Actions/types.yml new file mode 100644 index 0000000000..831763df51 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Actions/types.yml @@ -0,0 +1,12 @@ +- type: entity + id: ActionChitzite + name: Cough Up Chitzite + description: Purge the excess radiation build-up from your body by expelling it as a mass of toxic material. + components: + - type: InstantAction + charges: 0 + enabled: false + maxCharges: 1 + icon: { sprite: DeltaV/Objects/Specific/Species/chitinid.rsi, state: chitzite } + useDelay: 300 + event: !type:ChitziteActionEvent \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Body/Organs/chitinid.yml b/Resources/Prototypes/DeltaV/Body/Organs/chitinid.yml new file mode 100644 index 0000000000..5c3f08f1e8 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Organs/chitinid.yml @@ -0,0 +1,65 @@ +- type: entity + id: OrganChitinidStomach + parent: OrganHumanStomach + name: stomach + description: "Gross. This is hard to stomach." + components: + - type: Organ # Shitmed Change + slotId: stomach # Shitmed Change + - type: Sprite + state: stomach + - type: Item + size: Small + heldPrefix: stomach + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 50 + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 + - type: Stomach + # The stomach metabolizes stuff like foods and drinks. + # TODO: Have it work off of the ent's solution container, and move this + # to intestines instead. + - type: Metabolizer + # mm yummy + maxReagents: 3 + metabolizerTypes: [Human] + groups: + - id: Food + - id: Drink + +- type: entity + id: OrganChitinidLiver + parent: BaseAnimalOrgan + name: liver + categories: [ HideSpawnMenu ] + components: + - type: Organ + slotId: liver # Shitmed + onAdd: + - type: UnpoweredFlashlight + - type: PointLight + enabled: false + radius: 3 + softness: 5 + color: "#2CFA1F" + autoRot: true + - type: Sprite + state: liver + - type: Metabolizer + maxReagents: 1 + metabolizerTypes: [ Animal ] + groups: + - id: Alcohol + rateModifier: 0.1 + - type: Liver # Shitmed + - type: Tag # goob edit + tags: + - Meat + - type: Item + size: Small + heldPrefix: liver diff --git a/Resources/Prototypes/DeltaV/Body/Parts/chitinid.yml b/Resources/Prototypes/DeltaV/Body/Parts/chitinid.yml new file mode 100644 index 0000000000..507ba70f48 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Parts/chitinid.yml @@ -0,0 +1,112 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartChitinidBase + parent: [BaseItem, BasePart] + name: "Chitinid body part" + abstract: true + components: + - type: Sprite + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: TorsoChitinid + name: "chitinid torso" + parent: [PartChitinidBase, BaseTorso] + components: + - type: Sprite + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: Blood + Quantity: 20 + + +- type: entity + id: HeadChitinid + name: "chitinid head" + parent: [PartChitinidBase, BaseHead] + components: + - type: Sprite + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: LeftArmChitinid + name: "left chitinid arm" + parent: [PartChitinidBase, BaseLeftArm] + components: + - type: Sprite + state: "l_arm" + +- type: entity + id: RightArmChitinid + name: "right chitinid arm" + parent: [PartChitinidBase, BaseRightArm] + components: + - type: Sprite + state: "r_arm" + +- type: entity + id: LeftHandChitinid + name: "left chitinid hand" + parent: [PartChitinidBase, BaseLeftHand] + components: + - type: Sprite + state: "l_hand" + +- type: entity + id: RightHandChitinid + name: "right chitinid hand" + parent: [PartChitinidBase, BaseRightHand] + components: + - type: Sprite + state: "r_hand" + +- type: entity + id: LeftLegChitinid + name: "left chitinid leg" + parent: [PartChitinidBase, BaseLeftLeg] + components: + - type: Sprite + state: "l_leg" + +- type: entity + id: RightLegChitinid + name: "right chitinid leg" + parent: [PartChitinidBase, BaseRightLeg] + components: + - type: Sprite + state: "r_leg" + +- type: entity + id: LeftFootChitinid + name: "left chitinid foot" + parent: [PartChitinidBase, BaseLeftFoot] + components: + - type: Sprite + state: "l_foot" + +- type: entity + id: RightFootChitinid + name: "right chitinid foot" + parent: [PartChitinidBase, BaseRightFoot] + components: + - type: Sprite + state: "r_foot" diff --git a/Resources/Prototypes/DeltaV/Body/Prototypes/chitinid.yml b/Resources/Prototypes/DeltaV/Body/Prototypes/chitinid.yml new file mode 100644 index 0000000000..9175aeed00 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Prototypes/chitinid.yml @@ -0,0 +1,49 @@ +- type: body + id: Chitinid + name: "chitinid" + root: torso + slots: + head: + part: HeadChitinid + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoChitinid + organs: + heart: OrganAnimalHeart + lungs: OrganHumanLungs + stomach: OrganChitinidStomach + liver: OrganChitinidLiver + kidneys: OrganHumanKidneys + connections: + - right arm + - left arm + - right leg + - left leg + right arm: + part: RightArmChitinid + connections: + - right hand + left arm: + part: LeftArmChitinid + connections: + - left hand + right hand: + part: RightHandChitinid + left hand: + part: LeftHandChitinid + right leg: + part: RightLegChitinid + connections: + - right foot + left leg: + part: LeftLegChitinid + connections: + - left foot + right foot: + part: RightFootChitinid + left foot: + part: LeftFootChitinid diff --git a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml index b389378eb0..0d913dcf11 100644 --- a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml +++ b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml @@ -10,3 +10,13 @@ Blunt: 1.15 Slash: 1.15 Piercing: 1.15 + +- type: damageModifierSet + id: Chitinid + coefficients: + Blunt: 0.9 + Piercing: 0.9 + Slash: 0.9 + Cold: 1.1 + Shock: 1.15 + Radiation: 0.2 \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Datasets/Names/chitinid_first_female.yml b/Resources/Prototypes/DeltaV/Datasets/Names/chitinid_first_female.yml new file mode 100644 index 0000000000..be91ea3150 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Datasets/Names/chitinid_first_female.yml @@ -0,0 +1,34 @@ +- type: dataset + id: NamesChitinidFirstFemale + values: + - Amer'ix + - An'bela + - An'ora + - Aza'ran + - Be'riah + - Bel'os + - Da'lrah + - Di'azo + - E'nzo + - Em'era + - Fi'n'rah + - He'teka + - Ir'iska + - Ish'kar + - Isha'ba + - Jes'sri'ka + - Kalz'za + - Kaz'zek + - Lot'tikz + - Ral'zol + - Ri'isano + - Talzz'ark + - Tess'ara + - Tez'mal'zar + - Thri'kis + - Vani'si'kar + - Ve'rai + - Vish'ra + - Zan'ova + - Zen'ofi + - Zzer'ak diff --git a/Resources/Prototypes/DeltaV/Datasets/Names/chitinid_first_male.yml b/Resources/Prototypes/DeltaV/Datasets/Names/chitinid_first_male.yml new file mode 100644 index 0000000000..355f5cffb9 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Datasets/Names/chitinid_first_male.yml @@ -0,0 +1,36 @@ +- type: dataset + id: NamesChitinidFirstMale + values: + - Al'vos + - Amue'val + - Barma'tos + - Ben'idar + - Bil'verrok + - Crik'xis + - Daru'nta + - Dee'aldas + - Drx'var + - Hen'sra + - Hux'von + - Ilv'imon + - Is'irax + - Ish'nax + - Jax'zaril'va + - L'ofa + - Lo'zok + - Lu'vurx + - Luc'irax + - Mer'tex + - Od'dalis + - Si'ley + - Sim'sker + - Tal'vos + - Ti'ril + - Vir'lker + - Vir'muel + - Vix'vol + - Von'draz + - Vu'lta'voss + - Xixa'ba + - Yarr'wat + - Zay'zz diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml index 041a1482b8..36a132e88b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml @@ -1,6 +1,6 @@ # Standard Combat Hardsuits - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitCombatStandard name: combat hardsuit description: A purpose-built combat suit designed to protect its user against all manner of enemy combatants in low pressure environments. @@ -44,7 +44,7 @@ # Medical Combat Hardsuits - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitCombatMedical name: medical combat hardsuit description: A purpose-built combat suit designed to allow its user greater mobility for superior support of friendly units in active combat zones. @@ -88,7 +88,7 @@ # Riot Combat Hardsuits - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitCombatRiot name: riot combat hardsuit description: A purpose-built combat suit designed for crowd control against armed combatants in low pressure environments. @@ -132,7 +132,7 @@ # Advanced Combat Hardsuits - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitCombatAdvanced name: advanced combat hardsuit description: A purpose-built combat suit of second-generation design, providing unparalleled protection against all manner of kinetic forces in low pressure environments. diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml index dc58b3f5df..f38774977b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml @@ -99,3 +99,4 @@ prototypes: - RandomWoodenWall - RandomWoodenSupport + chance: 1 \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/chitinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/chitinid.yml new file mode 100644 index 0000000000..a8644a4e07 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/chitinid.yml @@ -0,0 +1,458 @@ +# Antennas +- type: marking + id: ChitinidAntennasDefault + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: default + +- type: marking + id: ChitinidAntennasCurly + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: curly + +- type: marking + id: ChitinidAntennasGray + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: gray + +- type: marking + id: ChitinidAntennasSlick + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: slick + +- type: marking + id: ChitinidAntennasLong + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: long + +- type: marking + id: ChitinidAntennasBee + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: bee + +- type: marking + id: ChitinidAntennasShort + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: short + +- type: marking + id: ChitinidAntennasFirefly + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: firefly_primary + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: firefly_secondary + +- type: marking + id: ChitinidAntennasRadar + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: radar + +- type: marking + id: ChitinidAntennasSpeed + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi + state: speed + + +# Wings +- type: marking + id: ChitinidWingsDefault + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: default + +- type: marking + id: ChitinidWingsSmooth + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: smooth + +- type: marking + id: ChitinidWingsHoneypot + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: honeypot_primary + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: honeypot_secondary + +- type: marking + id: ChitinidWingsStubby + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: stubby + +- type: marking + id: ChitinidWingsBee + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: bee_primary + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: bee_secondary + +- type: marking + id: ChitinidWingsFirefly + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: firefly_primary + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi + state: firefly_secondary + +# Body markings: +# Charred +- type: marking + id: ChitinidChestCharred + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: charred_chest + +- type: marking + id: ChitinidHeadCharred + bodyPart: Head + markingCategory: Head + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: charred_head + +- type: marking + id: ChitinidLLegCharred + bodyPart: LLeg + markingCategory: LeftLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: charred_l_leg + +- type: marking + id: ChitinidRLegCharred + bodyPart: RLeg + markingCategory: RightLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: charred_r_leg + +- type: marking + id: ChitinidLArmCharred + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: charred_l_arm + +- type: marking + id: ChitinidRArmCharred + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: charred_r_arm + +# Plated +- type: marking + id: ChitinidChestPlated + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: plated_chest + +- type: marking + id: ChitinidLArmPlated + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: plated_l_arm + +- type: marking + id: ChitinidRArmPlated + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: plated_r_arm + +# Stripes +- type: marking + id: ChitinidChestStripes + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: stripes_chest + +- type: marking + id: ChitinidHeadStripes + bodyPart: Head + markingCategory: Head + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: stripes_head + +- type: marking + id: ChitinidLLegStripes + bodyPart: LLeg + markingCategory: LeftLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: stripes_l_leg + +- type: marking + id: ChitinidRLegStripes + bodyPart: RLeg + markingCategory: RightLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: stripes_r_leg + +- type: marking + id: ChitinidLArmStripes + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: stripes_l_arm + +- type: marking + id: ChitinidRArmStripes + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: stripes_r_arm + +# Radiant +- type: marking + id: ChitinidChestRadiant + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: radiant_chest + +- type: marking + id: ChitinidHeadRadiant + bodyPart: Head + markingCategory: Head + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: radiant_head + +- type: marking + id: ChitinidLLegRadiant + bodyPart: LLeg + markingCategory: LeftLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: radiant_l_leg + +- type: marking + id: ChitinidRLegRadiant + bodyPart: RLeg + markingCategory: RightLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: radiant_r_leg + +- type: marking + id: ChitinidLArmRadiant + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: radiant_l_arm + +- type: marking + id: ChitinidRArmRadiant + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: radiant_r_arm + +# Toxic +- type: marking + id: ChitinidChestToxic + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: toxic_chest + +- type: marking + id: ChitinidHeadToxic + bodyPart: Head + markingCategory: Head + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: toxic_head + +- type: marking + id: ChitinidLLegToxic + bodyPart: LLeg + markingCategory: LeftLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: toxic_l_leg + +- type: marking + id: ChitinidRLegToxic + bodyPart: RLeg + markingCategory: RightLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: toxic_r_leg + +- type: marking + id: ChitinidLArmToxic + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: toxic_l_arm + +- type: marking + id: ChitinidRArmToxic + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: toxic_r_arm + +# Spotted +- type: marking + id: ChitinidChestSpotted + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: spotted_chest + +- type: marking + id: ChitinidHeadSpotted + bodyPart: Head + markingCategory: Head + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: spotted_head + +- type: marking + id: ChitinidLLegSpotted + bodyPart: LLeg + markingCategory: LeftLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: spotted_l_leg + +- type: marking + id: ChitinidRLegSpotted + bodyPart: RLeg + markingCategory: RightLeg + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: spotted_r_leg + +- type: marking + id: ChitinidLArmSpotted + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: spotted_l_arm + +- type: marking + id: ChitinidRArmSpotted + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Chitinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi + state: spotted_r_arm diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml index 34ccbf068a..7094ce6df8 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml @@ -2,7 +2,7 @@ id: FelinidFluffyTailRings bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid, Human] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi state: Felinid_fluffy_tail_full @@ -13,7 +13,7 @@ id: FelinidFluffyTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid, Human] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi state: Felinid_fluffy_tail_full @@ -22,7 +22,7 @@ id: FelinidAlternativeTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid, Human] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi state: m_waggingtail_cat_FRONT diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml index 51cba35429..c929b854ff 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml @@ -77,19 +77,3 @@ sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi state: classic_long - -- type: marking - id: HumanHairClassicLong2 - bodyPart: Hair - markingCategory: Hair - sprites: - - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classic_long2 - -- type: marking - id: HumanHairClassicLong3 - bodyPart: Hair - markingCategory: Hair - sprites: - - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classic_long3 diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/chitinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/chitinid.yml new file mode 100644 index 0000000000..4c8a784731 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/chitinid.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McAnt + parent: BaseMobChitinid + id: MobChitinid diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/chitinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/chitinid.yml new file mode 100644 index 0000000000..c82a48c2da --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/chitinid.yml @@ -0,0 +1,161 @@ +- type: entity + save: false + name: Urist McAnt + parent: BaseMobSpeciesOrganic + id: BaseMobChitinid + abstract: true + components: + - type: HumanoidAppearance + species: Chitinid + hideLayersOnEquip: + - HeadTop + + - type: Hunger + baseDecayRate: 0.0467 #needs to eat more to survive + - type: Thirst + + - type: Carriable + + - type: Icon + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: full + + - type: Body + prototype: Chitinid + requiredLegs: 2 + + - type: Damageable + damageContainer: Biological + damageModifierSet: Chitinid + + - type: Speech + speechVerb: Chitinid + allowedEmotes: ['Chitter', 'Click', 'Hiss'] + + - type: MeleeWeapon + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Piercing: 5 + + + - type: TypingIndicator + proto: Chitinid + + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeat + amount: 5 + + - type: Bloodstream + bloodReagent: InsectBlood + + - type: DamageVisuals + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#808A51" + Burn: + sprite: Mobs/Effects/burn_damage.rsi + + - type: Vocal + sounds: + Male: UnisexChitinid + Female: UnisexChitinid + Unsexed: UnisexChitinid + + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.42 + density: 220 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + + - type: Temperature # Ants hate the cold + heatDamageThreshold: 320 + coldDamageThreshold: 230 + currentTemperature: 310.15 + specificHeat: 46 + coldDamage: + types: + Cold : 1.25 #per second, scales with temperature & other constants + heatDamage: + types: + Heat : 1.0 #per second, scales with temperature & other constants + - type: TemperatureSpeed + thresholds: + 289: 0.6 + 275: 0.4 + 250: 0.3 + + - type: Sprite # sprite again because we want different layer ordering + noRot: true + drawdepth: Mobs + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: [ "jumpsuit" ] + - map: [ "enum.HumanoidVisualLayers.LHand" ] + - map: [ "enum.HumanoidVisualLayers.RHand" ] + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "back" ] + - map: [ "neck" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_moth" + visible: false + - type: Chitinid + - type: BlockInjection + blockReason: chitinid + - type: LanguageKnowledge + speaks: + - TauCetiBasic + - Chittin + understands: + - TauCetiBasic + - Chittin + +- type: entity + parent: BaseSpeciesDummy + id: MobChitinidDummy + categories: [ HideSpawnMenu ] + components: + - type: HumanoidAppearance + species: Chitinid diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml index 8f031b05f8..824171e99a 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/lamia.yml @@ -167,9 +167,8 @@ animation: WeaponArcBite damage: types: - Piercing: 1 - Poison: 2 - Asphyxiation: 2 + Piercing: 2 + Poison: 3 - type: SolutionContainerManager solutions: melee: diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Species/chitinid.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Species/chitinid.yml new file mode 100644 index 0000000000..1e66d4295c --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Species/chitinid.yml @@ -0,0 +1,33 @@ +- type: entity + parent: BaseItem + id: Chitzite + name: chitzite + description: A small radioactive stone formed in the chest cavity of a radioactive chitinid, gross.... but kinda pretty? + components: + - type: Sprite + sprite: DeltaV/Objects/Specific/Species/chitinid.rsi + layers: + - state: chitzite + - state: chitzite_glow + - type: RadiationSource + intensity: 0.5 + - type: Extractable + grindableSolutionName: chitzite + - type: SolutionContainerManager + solutions: + chitzite: + maxVol: 5 + reagents: + - ReagentId: Uranium + Quantity: 2.5 + - ReagentId: Radium + Quantity: 2.5 + - type: MeleeWeapon + damage: + types: + Blunt: 3 + Radiation: 3 + - type: Tag + tags: + - Recyclable + - Trash diff --git a/Resources/Prototypes/DeltaV/Guidebook/species.yml b/Resources/Prototypes/DeltaV/Guidebook/species.yml new file mode 100644 index 0000000000..d64204e0a7 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Guidebook/species.yml @@ -0,0 +1,4 @@ +- type: guideEntry + id: Chitinid + name: species-name-chitinid + text: "/ServerInfo/Guidebook/Mobs/DeltaV/Chitinid.xml" \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Objectives/traitor.yml b/Resources/Prototypes/DeltaV/Objectives/traitor.yml index 828142cdfa..b4fced2c61 100644 --- a/Resources/Prototypes/DeltaV/Objectives/traitor.yml +++ b/Resources/Prototypes/DeltaV/Objectives/traitor.yml @@ -33,3 +33,34 @@ stealGroup: RubberStampNotary verifyMapExistence: true owner: job-name-clerk + +# teach lesson +- type: entity + abstract: true + parent: BaseTargetObjective + id: BaseTeachLessonObjective + components: + - type: Objective + unique: false + icon: + sprite: Objects/Weapons/Guns/Pistols/viper.rsi + state: icon + - type: TeachLessonCondition + - type: CodeCondition + - type: ObjectiveBlacklistRequirement + blacklist: + components: + - SocialObjective + +- type: entity + parent: [BaseTraitorObjective, BaseTeachLessonObjective] + id: TeachLessonRandomPersonObjective + description: Kill them, and show everyone we mean business. They only need to die once. + components: + - type: Objective + difficulty: 1.75 + unique: false + - type: TargetObjective + title: objective-condition-teach-person-title + - type: PickRandomPerson + - type: TeachLessonCondition \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Cargo/courier.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Cargo/courier.yml index 6785e74acb..0b8a4bd11f 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Cargo/courier.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Cargo/courier.yml @@ -1,5 +1,7 @@ - type: startingGear id: CourierGear + subGear: + - CourierPlasmamanGear equipment: head: ClothingHeadCourier jumpsuit: ClothingUniformCourier @@ -11,3 +13,11 @@ innerClothingSkirt: ClothingUniformSkirtCourier satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: CourierPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitCourier + head: ClothingHeadEnvirohelmCourier + gloves: ClothingHandsGlovesEnviroglovesCargo diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Command/administrative_assistant.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Command/administrative_assistant.yml index d07a1b4497..0ea72dfa35 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Command/administrative_assistant.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Command/administrative_assistant.yml @@ -22,6 +22,11 @@ - !type:CharacterDepartmentTimeRequirement department: Epistemics min: 10800 # 3 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight startingGear: AdminAssistantGear icon: "JobIconAdminAssitant" supervisors: job-supervisors-command @@ -38,9 +43,19 @@ - type: startingGear id: AdminAssistantGear + subGear: + - AdminAssistantPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitAdminAssistant id: AdminAssistantPDA ears: ClothingHeadsetAdminAssist shoes: ClothingShoesLeather - innerClothingSkirt: ClothingUniformJumpskirtAdminAssistant \ No newline at end of file + innerClothingSkirt: ClothingUniformJumpskirtAdminAssistant + +- type: startingGear + id: AdminAssistantPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitAdminAssistant + head: ClothingHeadEnvirohelmAdminAssistant + gloves: ClothingHandsGlovesEnviroglovesAdminAssistant diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml index db5e717a01..af0bca2ea0 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml @@ -55,6 +55,8 @@ - type: startingGear id: SyndicateListenerGear + subGear: + - SyndicatePlasmamanGear # TODO: syndicate listener enviropyjamas equipment: jumpsuit: ClothingUniformJumpsuitPyjamaSyndicateBlack head: ClothingHeadPyjamaSyndicateBlack diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/chief_justice.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/chief_justice.yml index f97285fc23..35928109d7 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/chief_justice.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/chief_justice.yml @@ -3,19 +3,6 @@ name: job-name-chief-justice description: job-description-chief-justice playTimeTracker: JobChiefJustice - requirements: - - !type:CharacterPlaytimeRequirement - tracker: JobClerk - min: 36000 # 10 hours - - !type:CharacterPlaytimeRequirement - tracker: JobLawyer - min: 36000 # 10 hours - - !type:CharacterPlaytimeRequirement - tracker: JobProsecutor - min: 36000 # 10 hours - - !type:CharacterOverallTimeRequirement - min: 90000 # 25 hours - - !type:CharacterWhitelistRequirement # whitelist requirement because I don't want any dingus judges // No. weight: 20 startingGear: CJGear icon: "JobIconChiefJustice" @@ -38,6 +25,8 @@ - type: startingGear id: CJGear + subGear: + - PassengerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitChiefJustice back: ClothingBackpackFilled # TODO- make Justice department bags diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/clerk.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/clerk.yml index c2032b67eb..7e4a2ebff0 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/clerk.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/clerk.yml @@ -28,6 +28,8 @@ - type: startingGear id: ClerkGear + subGear: + - PassengerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitClerk back: ClothingBackpackFilled diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/prosecutor.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/prosecutor.yml index e0cebc4417..21f0e87ef7 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/prosecutor.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Justice/prosecutor.yml @@ -3,9 +3,6 @@ name: job-name-prosecutor description: job-description-prosecutor playTimeTracker: JobProsecutor - requirements: - - !type:CharacterOverallTimeRequirement - min: 36000 # 10 hrs startingGear: ProsecutorGear icon: "JobIconProsecutor" supervisors: job-supervisors-cj @@ -17,6 +14,8 @@ - type: startingGear id: ProsecutorGear + subGear: + - PassengerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitProsecutor neck: ClothingNeckProsecutorbadge diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Medical/medical_borg.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Medical/medical_borg.yml index 4c48ffd376..96c8a2e311 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Medical/medical_borg.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Medical/medical_borg.yml @@ -4,12 +4,6 @@ name: job-name-medical-borg description: job-description-medical-borg playTimeTracker: JobMedicalBorg - requirements: - - !type:CharacterOverallTimeRequirement - min: 216000 #60 hrs - - !type:CharacterDepartmentTimeRequirement - department: Medical - min: 21600 #6 hrs canBeAntag: false icon: JobIconMedicalBorg supervisors: job-supervisors-cmo diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml index 802ef248f2..18d7a47935 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml @@ -10,6 +10,15 @@ - !type:CharacterDepartmentTimeRequirement department: Security min: 18000 # 4 hrs + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease startingGear: CorpsmanGear icon: "JobIconBrigmedic" supervisors: job-supervisors-hos @@ -31,9 +40,16 @@ - type: CPRTraining - type: SurgerySpeedModifier speedModifier: 2.0 + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: CorpsmanGear # see Prototypes/Roles/Jobs/Fun/misc_startinggear.yml for "BrigmedicGear" + subGear: + - CorpsmanPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitBrigmedic outerClothing: ClothingOuterArmorPlateCarrier @@ -48,3 +64,11 @@ innerClothingSkirt: ClothingUniformJumpskirtBrigmedic satchel: ClothingBackpackSatchelBrigmedicFilled duffelbag: ClothingBackpackDuffelBrigmedicFilled + +- type: startingGear + id: CorpsmanPlasmamanGear + parent: BasePlasmamanSecurityGear + equipment: + jumpsuit: ClothingUniformEnvirosuitBrigmedic + head: ClothingHeadEnvirohelmBrigmedic + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/DeltaV/Species/chitinid.yml b/Resources/Prototypes/DeltaV/Species/chitinid.yml new file mode 100644 index 0000000000..6fa19aa9fe --- /dev/null +++ b/Resources/Prototypes/DeltaV/Species/chitinid.yml @@ -0,0 +1,165 @@ +- type: species + id: Chitinid + name: species-name-chitinid + roundStart: true + prototype: MobChitinid + sprites: MobChitinidSprites + defaultSkinTone: "#ffda93" + markingLimits: MobChitinidMarkingLimits + dollPrototype: MobChitinidDummy + skinColoration: Hues + maleFirstNames: NamesChitinidFirstMale + femaleFirstNames: NamesChitinidFirstFemale + naming: First + +- type: speciesBaseSprites + id: MobChitinidSprites + sprites: + Head: MobChitinidHead + Snout: MobHumanoidAnyMarking + Chest: MobChitinidTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Eyes: MobChitinidEyes + LArm: MobChitinidLArm + RArm: MobChitinidRArm + LHand: MobChitinidLHand + RHand: MobChitinidRHand + LLeg: MobChitinidLLeg + RLeg: MobChitinidRLeg + LFoot: MobChitinidLFoot + RFoot: MobChitinidRFoot + +- type: humanoidBaseSprite + id: MobChitinidEyes + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: eyes + +- type: markingPoints + id: MobChitinidMarkingLimits + onlyWhitelisted: true + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ ChitinidWingsDefault ] + Snout: + points: 1 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [ ChitinidAntennasDefault ] + HeadSide: + points: 1 + required: false + Head: + points: 1 + required: false + Chest: + points: 1 + required: false + LeftLeg: + points: 2 + required: false + RightLeg: + points: 2 + required: false + LeftArm: + points: 2 + required: false + RightArm: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobChitinidHead + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobChitinidHeadMale + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobChitinidHeadFemale + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobChitinidTorso + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobChitinidTorsoMale + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobChitinidTorsoFemale + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobChitinidLLeg + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobChitinidLHand + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobChitinidLArm + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobChitinidLFoot + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobChitinidRLeg + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobChitinidRHand + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobChitinidRArm + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobChitinidRFoot + baseSprite: + sprite: DeltaV/Mobs/Species/Chitinid/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml index dc725b547e..18f4258ba7 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml @@ -154,3 +154,31 @@ collection: VulpkaninWhines Howl: collection: VulpkaninHowls + +- type: emoteSounds + id: UnisexChitinid + params: + variation: 0.125 + sounds: + Buzz: + path: /Audio/DeltaV/Voice/Chitinid/moth_scream.ogg + Scream: + path: /Audio/Voice/Arachnid/arachnid_scream.ogg + Laugh: + path: /Audio/DeltaV/Voice/Chitinid/moth_laugh.ogg + Chitter: + path: /Audio/Voice/Arachnid/arachnid_chitter.ogg + Click: + path: /Audio/Voice/Arachnid/arachnid_click.ogg + Crying: + collection: FemaleCry + Weh: + collection: Weh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Yawn: + collection: MaleYawn + Hiss: + path: /Audio/Animals/snake_hiss.ogg \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml index 89db03d2fc..0d6a3b7e0e 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml @@ -15,3 +15,12 @@ path: /Audio/DeltaV/Voice/Harpy/chirp1.ogg exclaimSound: path: /Audio/DeltaV/Voice/Harpy/chirp1.ogg + +- type: speechSounds + id: Chitinid + saySound: + path: /Audio/Voice/Talk/speak_1.ogg + askSound: + path: /Audio/Voice/Talk/speak_1_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/speak_1_exclaim.ogg \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml index 26156fb82d..61750216b6 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml @@ -24,3 +24,12 @@ - chat-speech-verb-harpy-2 - chat-speech-verb-harpy-3 - chat-speech-verb-harpy-4 + +- type: speechVerb + id: Chitinid + name: chat-speech-verb-name-chitinid + speechVerbStrings: + - chat-speech-verb-chitinid-1 + - chat-speech-verb-chitinid-2 + - chat-speech-verb-chitinid-3 + - chat-speech-verb-chitinid-4 \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/typing_indicator.yml b/Resources/Prototypes/DeltaV/typing_indicator.yml index 7cfca9cc95..e36394581d 100644 --- a/Resources/Prototypes/DeltaV/typing_indicator.yml +++ b/Resources/Prototypes/DeltaV/typing_indicator.yml @@ -4,3 +4,14 @@ typingState: felinid0 offset: 0, 0.2 # 0625 +- type: typingIndicator + id: rodentia + spritePath: /Textures/DeltaV/Effects/speech.rsi + typingState: rodentia0 + offset: 0, 0.2 # 0625 + +- type: typingIndicator + id: Chitinid + spritePath: /Textures/DeltaV/Effects/speech.rsi + typingState: chitinid0 + offset: -0.2, 0.1 # 0625 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index 282d65cfcc..231da31389 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -277,6 +277,16 @@ - type: Sprite sprite: Clothing/Back/Backpacks/ertchaplain.rsi +- type: entity + parent: ClothingBackpackERTSecurity + id: ClothingBackpackDeathSquad + name: death squad backpack + description: Holds the kit of CentComm's most feared agents. + components: + - type: Storage + grid: + - 0,0,7,6 + #Syndicate - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index e599b071f1..a88e460424 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -11,18 +11,29 @@ slots: [belt] quickEquip: false equipSound: - path: /Audio/SimpleStation14/Items/Equip/toolbelt_equip.ogg + path: /Audio/SimpleStation14/Items/Handling/toolbelt_pickup.ogg + params: + volume: -10 - type: PhysicalComposition materialComposition: Cloth: 50 - type: StaticPrice price: 20 - type: EmitSoundOnPickup - sound: /Audio/SimpleStation14/Items/Handling/toolbelt_pickup.ogg + sound: + path: /Audio/SimpleStation14/Items/Handling/toolbelt_pickup.ogg + params: + volume: -10 - type: EmitSoundOnDrop - sound: /Audio/SimpleStation14/Items/Handling/toolbelt_drop.ogg + sound: + path: /Audio/SimpleStation14/Items/Handling/toolbelt_pickup.ogg + params: + volume: -10 - type: EmitSoundOnLand - sound: /Audio/SimpleStation14/Items/Handling/toolbelt_drop.ogg + sound: + path: /Audio/SimpleStation14/Items/Handling/toolbelt_pickup.ogg + params: + volume: -10 - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 9962e95bfc..792157310e 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -503,6 +503,13 @@ - SmokeOnTrigger sprite: Clothing/Belt/belt_overlay.rsi - type: Appearance + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: [ClothingBeltBase, ClothingSlotBase] @@ -584,6 +591,13 @@ - type: Storage grid: - 0,0,3,1 + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: ClothingBeltStorageBase @@ -606,6 +620,13 @@ - Gun - BallisticAmmoProvider - CartridgeAmmo + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: ClothingBeltSecurity @@ -617,6 +638,13 @@ sprite: Clothing/Belt/securitywebbing.rsi - type: Clothing sprite: Clothing/Belt/securitywebbing.rsi + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: ClothingBeltSecurityWebbing @@ -642,6 +670,13 @@ sprite: Clothing/Belt/mercwebbing.rsi - type: Clothing sprite: Clothing/Belt/mercwebbing.rsi + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: ClothingBeltStorageBase @@ -653,6 +688,13 @@ sprite: Clothing/Belt/salvagewebbing.rsi - type: Clothing sprite: Clothing/Belt/salvagewebbing.rsi + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase] @@ -666,6 +708,13 @@ sprite: Clothing/Belt/militarywebbing.rsi - type: ExplosionResistance damageCoefficient: 0.5 + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: ClothingBeltMilitaryWebbing @@ -681,6 +730,13 @@ size: Huge - type: ExplosionResistance damageCoefficient: 0.1 + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepTacticalWebbing + params: + volume: -10 + distanceWalking: 2 + distanceSprinting: 3 - type: entity parent: ClothingBeltBase diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 6231663ac7..1018f8006e 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -231,6 +231,25 @@ - type: IdentityBlocker coverage: EYES +- type: entity + parent: [ClothingEyesBase, ShowPsionicsIcons] + id: ClothingEyesGlassesEpistemics + name: epi psionics glasses + description: Upgraded sunglasses that provide flash immunity and a epistemics psionics HUD. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/epiglasses.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/epiglasses.rsi + - type: FlashImmunity + - type: EyeProtection + protectionTime: 5 + - type: Tag + tags: + - WhitelistChameleon + - type: IdentityBlocker + coverage: EYES + - type: entity parent: ClothingEyesGlassesCheapSunglasses id: ClothingEyesGlassesCheapSunglassesAviator diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index a4ba51b413..dcf3c02e42 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -15,6 +15,13 @@ - type: ShowHealthBars - type: ShowHealthIcons +- type: entity + id: ShowPsionicsIcons + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: ShowPsionicsRecordIcons + - type: entity parent: ClothingEyesBase id: ClothingEyesHudDiagnostic @@ -64,6 +71,17 @@ tags: - HudSecurity +- type: entity + parent: [ClothingEyesBase, ShowPsionicsIcons] + id: ClothingEyesHudEpistemics + name: epi psionics hud + description: A heads-up display that scans the humanoids in view and provides accurate data about their psionics records. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/epi.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/epi.rsi + - type: entity parent: ClothingEyesBase id: ClothingEyesHudBeer @@ -170,7 +188,7 @@ damageContainers: - Biological - type: ShowHealthIcons - damageContainers: + damageContainers: - Biological - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml index 02cf0ab6f6..a00bab327d 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml @@ -44,3 +44,17 @@ - type: Fiber fiberMaterial: fibers-synthetic - type: FingerprintMask + +- type: entity + parent: ClothingHandsGlovesSyntheticBase + abstract: true + id: ClothingHandsGlovesEnviroglovesBase + components: + - type: Armor + modifiers: + coefficients: + Caustic: 0.95 + - type: IgniteFromGasImmunity + parts: + - LeftHand + - RightHand diff --git a/Resources/Prototypes/Entities/Clothing/Hands/envirogloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/envirogloves.yml new file mode 100644 index 0000000000..656bae9e95 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Hands/envirogloves.yml @@ -0,0 +1,655 @@ +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnvirogloves + name: plasma envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#913b00" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#913b00" + right: + - state: inhand-right + color: "#913b00" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#913b00" + - type: Fiber + fiberColor: fibers-orange + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesBlack + name: black envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#2f2e31" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#2f2e31" + right: + - state: inhand-right + color: "#2f2e31" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#2f2e31" + - type: Fiber + fiberColor: fibers-black + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesNitrile + name: nitrile envirogloves + description: Pricy nitrile gloves made for Plasmamen. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#234f60" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#234f60" + right: + - state: inhand-right + color: "#234f60" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#234f60" + - type: Fiber + fiberMaterial: fibers-nitrile + - type: FingerprintMask + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesWhite + name: white envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#ffffff" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + right: + - state: inhand-right + color: "#ffffff" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#ffffff" + - type: Fiber + fiberColor: fibers-white + +- type: entity + parent: ClothingHandsGlovesEnviroglovesWhite + id: ClothingHandsGlovesEnviroglovesColor + name: envirogloves + description: Covers up those scandalous boney hands. + suffix: Loadouts, Colorable + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesEvening + name: evening envirogloves + description: Who said Plasmamen can't serve elegance and looks? + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/evening_gloves.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/evening_gloves.rsi + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesRoboticist + name: roboticist envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#932500" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#932500" + right: + - state: inhand-right + color: "#932500" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#932500" + - type: Fiber + fiberColor: fibers-orange + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesJanitor + name: janitor envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#883391" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#883391" + right: + - state: inhand-right + color: "#883391" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#883391" + - type: Fiber + fiberColor: fibers-purple + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesCargo + name: logistics envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#bb9042" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#bb9042" + right: + - state: inhand-right + color: "#bb9042" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#bb9042" + - type: Fiber + fiberColor: fibers-orange + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesEngineering + name: engineering envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#d75600" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#d75600" + right: + - state: inhand-right + color: "#d75600" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#d75600" + - type: Fiber + fiberColor: fibers-orange + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesAtmos + name: atmos envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#00a5ff" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#00a5ff" + right: + - state: inhand-right + color: "#00a5ff" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#00a5ff" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesSalvage + name: salvage envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#47453d" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#47453d" + right: + - state: inhand-right + color: "#47453d" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#47453d" + - type: Fiber + fiberColor: fibers-olive + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesLeather + name: hydroponics envirogloves + description: These leather gloves protect your boney hands against thorns, barbs, prickles, and spikes. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#3164ff" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#3164ff" + right: + - state: inhand-right + color: "#3164ff" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#3164ff" + - type: GloveHeatResistance + heatResistance: 1400 + - type: Fiber + fiberMaterial: fibers-leather + fiberColor: fibers-blue + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesPrototype + name: prototype envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#911801" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#911801" + right: + - state: inhand-right + color: "#911801" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#911801" + - type: Fiber + fiberColor: fibers-red + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesClown + name: clown envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#ff0000" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#ff0000" + right: + - state: inhand-right + color: "#ff0000" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#ff0000" + - type: Fiber + fiberColor: fibers-red + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesHoP + name: head of personnel's envirogloves + description: Covers up those scandalous, bony hands. Appears to be an attempt at making a replica of the captain's gloves. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Envirogloves/hop.rsi + layers: + - state: icon + - type: Item + sprite: Clothing/Hands/Gloves/Envirogloves/hop.rsi + inhandVisuals: + left: + - state: inhand-left + right: + - state: inhand-right + - type: Clothing + sprite: Clothing/Hands/Gloves/Envirogloves/hop.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + - type: Fiber + fiberColor: fibers-blue + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesChiefEngineer + name: chief engineer's envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#45ff00" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#45ff00" + right: + - state: inhand-right + color: "#45ff00" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#45ff00" + - type: Fiber + fiberColor: fibers-green + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesResearchDirector + name: research director's envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#64008a" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#64008a" + right: + - state: inhand-right + color: "#64008a" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#64008a" + - type: Fiber + fiberColor: fibers-purple + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesPurple + name: purple envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#a349a4" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#a349a4" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#a349a4" + - type: Fiber + fiberColor: fibers-purple + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesAdminAssistant + name: administrative assistant's envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#315266" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#315266" + right: + - state: inhand-right + color: "#315266" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#315266" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesColorDarkGreen + name: dark green envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#79CC26" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + right: + - state: inhand-right + color: "#79CC26" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#79CC26" + - type: Fiber + fiberColor: fibers-green + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesColorDarkGrey + name: dark grey envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#616161" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#616161" + right: + - state: inhand-right + color: "#616161" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#616161" + - type: Fiber + fiberColor: fibers-grey + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesGladiator + name: gladiator envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#dab13b" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#dab13b" + right: + - state: inhand-right + color: "#dab13b" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#dab13b" + - type: Fiber + fiberColor: fibers-yellow + +- type: entity + parent: ClothingHandsGlovesEnviroglovesBase + id: ClothingHandsGlovesEnviroglovesReporter + name: reporter envirogloves + description: Covers up those scandalous boney hands. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#79121b" + - type: Item + sprite: Clothing/Hands/Gloves/Color/color.rsi + inhandVisuals: + left: + - state: inhand-left + color: "#79121b" + right: + - state: inhand-right + color: "#79121b" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#79121b" + - type: Fiber + fiberColor: fibers-red diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 08a3eb568f..4d791e018e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -126,6 +126,9 @@ lowPressureMultiplier: 1000 - type: TemperatureProtection coefficient: 0.2 + - type: IgniteFromGasImmunity + parts: + - Head - type: IngestionBlocker - type: Clothing #Copies ClothingHeadHardsuitBase behavior @@ -135,6 +138,7 @@ tags: - WhitelistChameleon - HelmetEVA + - PlasmamanSafe - type: IdentityBlocker - type: HideLayerClothing slots: @@ -165,6 +169,9 @@ coefficient: 0.1 - type: FireProtection reduction: 0.2 + - type: IgniteFromGasImmunity + parts: + - Head - type: Armor modifiers: coefficients: @@ -178,12 +185,174 @@ - type: Tag tags: - WhitelistChameleon + - PlasmamanSafe - type: IdentityBlocker - type: HideLayerClothing slots: - Hair - Snout +- type: entity + abstract: true + parent: ClothingHeadBase + id: ClothingHeadEnvirohelmBase + name: base envirosuit helmet + components: + - type: Sprite + layers: + - state: icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + size: Normal + heldPrefix: off + - type: Clothing + equipDelay: 0.4 + unequipDelay: 0.6 # Slightly higher delay to protect against accidental unequips + equippedPrefix: off + clothingVisuals: + head: + - state: equipped-HELMET + - type: IgniteFromGasImmunity + parts: + - Head + - type: Armor + modifiers: + coefficients: + Caustic: 0.90 + - type: EyeProtection + - type: BreathMask + - type: PressureProtection # Same as EVA helmet + highPressureMultiplier: 0.6 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.2 + - type: IngestionBlocker + - type: Tag + tags: + - WhitelistChameleon + - Envirohelm + - PlasmamanSafe + - type: HideLayerClothing + slots: + - Hair + - Snout + clothingSlots: + - mask + - type: ToggleableLightVisuals + clothingVisuals: + head: + - state: on-equipped-HELMET + shader: unshaded + - type: PointLight + enabled: false + color: "#ffa1ff" + radius: 4 + energy: 3 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + netsync: false + - type: Appearance + - type: HandheldLight + addPrefix: true + blinkingBehaviourId: blinking + radiatingBehaviourId: radiating + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + - type: PowerCellSlot + cellSlotId: cell_slot + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellMedium + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot {} + - type: GuideHelp # While the playerbase is getting introduced to Plasmamen, add their guidebook here + guides: [ Plasmaman ] + +# When making new custom envirohelms, inherit from this entity and +# replace the color fields on the layers +- type: entity + abstract: true + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCustomBase + name: base custom envirosuit helmet + components: + - type: ToggleableLightVisuals + inhandVisuals: + left: + - state: on-inhand-left + shader: unshaded + right: + - state: on-inhand-right + shader: unshaded + clothingVisuals: + head: + - state: on-equipped-HELMET + shader: unshaded + - type: Sprite + sprite: Clothing/Head/Envirohelms/custom.rsi + layers: + - state: icon + color: "#FFFFFF" + - state: accent-icon + color: "#FF0000" + # - state: midaccent-icon + # color: "#0000FF" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#FFFFFF" + - state: accent-inhand-left + color: "#FF0000" + # - state: midaccent-inhand-left + # color: "#0000FF" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#FFFFFF" + - state: accent-inhand-right + color: "#FF0000" + # - state: midaccent-inhand-right + # color: "#0000FF" + - state: visor-inhand-right + - type: Clothing + sprite: Clothing/Head/Envirohelms/custom.rsi + clothingVisuals: + head: + - state: equipped-HELMET + color: "#FFFFFF" + - state: accent-equipped-HELMET + color: "#FF0000" + # - state: midaccent-equipped-HELMET + # color: "#0000FF" + - state: visor-equipped-HELMET + - type: entity abstract: true parent: ClothingHeadHardsuitBase diff --git a/Resources/Prototypes/Entities/Clothing/Head/envirohelms.yml b/Resources/Prototypes/Entities/Clothing/Head/envirohelms.yml new file mode 100644 index 0000000000..e051018950 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/envirohelms.yml @@ -0,0 +1,2192 @@ +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelm + name: plasma envirosuit helmet + description: A special containment helmet that allows plasma-based lifeforms to exist safely in an oxygenated environment. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/plain.rsi + - type: Item + inhandVisuals: + left: + - state: inhand-left + right: + - state: inhand-right + - type: Clothing + sprite: Clothing/Head/Envirohelms/plain.rsi + - type: ToggleableLightVisuals + inhandVisuals: + left: + - state: on-inhand-left + shader: unshaded + right: + - state: on-inhand-right + shader: unshaded + +- type: entity + parent: ClothingHeadEnvirohelm + id: ClothingHeadEnvirohelmEmpty + suffix: Empty + components: + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmAtmos + name: atmospherics envirosuit helmet + description: A space-worthy helmet specially designed for atmos technician Plasmamen, the usual purple stripes being replaced by atmos' blue. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/atmos.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/atmos.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCargo + name: logistics envirosuit helmet + description: A Plasmaman envirohelmet designed for cargo technicians. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/cargo.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/cargo.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCaptain + name: captain's envirosuit helmet + description: A special containment helmet designed for the Captain. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/captain.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/captain.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmChiefEngineer + name: chief engineer's envirosuit helmet + description: A special containment helmet designed for the Chief Engineer, the usual purple stripes being replaced by the chief's green. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/ce.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/ce.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmChaplain + name: chaplain's envirosuit helmet + description: An envirohelm specially designed for only the most pious of Plasmamen. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/chaplain.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/chaplain.rsi + +- type: entity + parent: ClothingHeadEnvirohelmEnviroslacksColorOrange + id: ClothingHeadEnvirohelmDetective + name: detective's envirosuit helmet + description: A special containment helmet designed for detectives, protecting them from burning alive, alongside other undesirables. + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmChemist + name: chemistry envirosuit helmet + description: A Plasmaman envirosuit designed for chemists, two orange stripes going down its face. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/chemist.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/chemist.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmClown + name: clown envirosuit helmet + description: The make-up is painted on, it's a miracle it doesn't chip. HONK! + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/clown.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/clown.rsi + - type: PointLight + color: "#a777ff" + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCMO + name: chief medical officer's envirosuit helmet + description: A special containment helmet designed for the Chief Medical Officer. The gold stripe differentiates them from other medical staff. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/cmo.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/cmo.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmEngineering + name: engineering envirosuit helmet + description: A space-worthy helmet specially designed for engineer Plasmamen, the usual purple stripes being replaced by engineering's orange. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/engineering.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/engineering.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmHoP + name: head of personnel's envirosuit helmet + description: A special containment helmet designed for the Head of Personnel. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/hop.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/hop.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmHoS + name: head of security's envirosuit helmet + description: A special containment helmet designed for the Head of Security. The pair of gold stripes differentiates them from other members of security. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/hos.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/hos.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmHydroponics + name: hydroponics envirosuit helmet + description: A green and blue envirohelmet designating its wearer as a botanist. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/hydroponics.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/hydroponics.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmJanitor + name: janitor envirosuit helmet + description: A grey helmet bearing a pair of purple stripes, designating the wearer as a janitor. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/janitor.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/janitor.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmAncientVoid + name: NTSRA envirosuit helmet + description: Made out of a modified NTSRA vacsuit, this helmet was Nanotrasen's first-designed envirohelmet for Plasmamen. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/ancientvoid.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/ancientvoid.rsi + clothingVisuals: + head: + - state: equipped-HELMET + - state: visor-equipped-HELMET + - type: ToggleableLightVisuals + clothingVisuals: + head: + - state: visor-equipped-HELMET + shader: unshaded + - type: PointLight + color: "#ffffff" + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmMedicalDoctor + name: medical envirosuit helmet + description: An envirohelmet designed for Plasmaman Medical personnel, having two stripes down its length to denote as much. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/medical.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/medical.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmGenitcs + name: genetics envirosuit helmet + description: A Plasmaman envirohelmet designed for geneticists. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/genetics.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/genetics.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmMime + name: mime envirosuit helmet + description: The make-up is painted on, it's a miracle it doesn't chip. It's not very colourful. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/mime.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/mime.rsi + - type: PointLight + color: "#ffffff" + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmParamedic + name: paramedic envirosuit helmet + description: An envirohelmet designed for Plasmaman paramedics, with darker blue stripes compared to the medical model. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/paramedic.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/paramedic.rsi + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmPrisoner + name: prisoner envirosuit helmet + description: A Plasmaman containment helmet for prisoners. + components: + - type: Sprite + layers: + - state: icon + color: "#ff8300" + - state: accent-icon + color: "#3c3c3c" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8300" + - state: accent-inhand-left + color: "#3c3c3c" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ff8300" + - state: accent-inhand-right + color: "#3c3c3c" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ff8300" + - state: accent-equipped-HELMET + color: "#3c3c3c" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmResearchDirector + name: mystagogue's envirosuit helmet + description: A special containment helmet designed for the Mystagogue. A light brown design is applied to differentiate them from other scientists. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/rd.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/rd.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmRoboticist + name: roboticist envirosuit helmet + description: A Plasmaman envirohelmet designed for roboticists. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/roboticist.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/roboticist.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmSalvage + name: salvage envirosuit helmet + description: A khaki helmet given to Plasmamen salvage technicians. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/salvage.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/salvage.rsi + - type: PointLight + color: "#c77eff" + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmScientist + name: science envirosuit helmet + description: A Plasmaman envirohelmet designed for scientists. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/scientist.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/scientist.rsi + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmSec + name: security envirosuit helmet + description: A Plasmaman containment helmet designed for security officers, protecting them from burning alive, alongside other undesirables. + components: + - type: Sprite + layers: + - state: icon + color: "#8f3132" + - state: accent-icon + color: "#2e2e2e" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#8f3132" + - state: accent-inhand-left + color: "#2e2e2e" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#8f3132" + - state: accent-inhand-right + color: "#2e2e2e" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#8f3132" + - state: accent-equipped-HELMET + color: "#2e2e2e" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmSecBlue + name: blue security envirosuit helmet + description: A cool blue envirosuit helmet for Plasmaman Security personnel. + components: + - type: Sprite + layers: + - state: icon + color: "#b9c1d9" + - state: accent-icon + color: "#36476b" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#b9c1d9" + - state: accent-inhand-left + color: "#36476b" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#b9c1d9" + - state: accent-inhand-right + color: "#36476b" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#b9c1d9" + - state: accent-equipped-HELMET + color: "#36476b" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmSecGrey + name: grey security envirosuit helmet + description: A light grey envirosuit helmet with bright red highlights for Plasmamen Security personnel. + components: + - type: Sprite + layers: + - state: icon + color: "#7e7e7e" + - state: accent-icon + color: "#a61d1d" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#7e7e7e" + - state: accent-inhand-left + color: "#a61d1d" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#7e7e7e" + - state: accent-inhand-right + color: "#a61d1d" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#7e7e7e" + - state: accent-equipped-HELMET + color: "#a61d1d" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmVirology + name: virology envirosuit helmet + description: The helmet worn by the safest people on the station, those who are completely immune to the monstrosities they create. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/virology.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/virology.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmWarden + name: warden's envirosuit helmet + description: A Plasmaman containment helmet designed for the warden. A pair of white stripes being added to differeciate them from other members of security. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/warden.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/warden.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmOperative + name: operative envirosuit helmet + description: Anyone wearing this is badass and deserves at least a cursory nod of respect. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/tacticool.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/tacticool.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmTacticool + name: tacticool envirosuit helmet + description: There's no doubt about it, this helmet puts you above ALL of the other Plasmamen. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/tacticool.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/tacticool.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCentcomAgent + name: CentCom agent's envirosuit helmet + description: A special containment helmet designed for CentCom's legal team. You know, so any coffee spills don't kill the poor sod. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/centcom_agent.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/centcom_agent.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCentcomOfficial + name: CentCom official's envirosuit helmet + description: A special containment helmet designed for CentCom Staff. They sure do love their green. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/centcom_official.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/centcom_official.rsi + +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmCentcomOfficer + name: CentCom officer's envirosuit helmet + description: A special containment helmet designed for CentCom Officers. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/centcom_officer.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/centcom_officer.rsi + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmCourier + name: courier's envirosuit helmet + description: An envirosuit helmet for the courier. + components: + - type: Sprite + layers: + - state: icon + color: "#4a281f" + - state: accent-icon + color: "#c2911e" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#4a281f" + - state: accent-inhand-left + color: "#c2911e" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#4a281f" + - state: accent-inhand-right + color: "#c2911e" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#4a281f" + - state: accent-equipped-HELMET + color: "#c2911e" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmMailCarrier + name: mail carrier's envirosuit helmet + description: Smells like a good pension. + components: + - type: Sprite + layers: + - state: icon + color: "#394dc6" + - state: accent-icon + color: "#dcdcdc" + - state: midaccent-icon + color: "#d82927" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#394dc6" + - state: accent-inhand-left + color: "#dcdcdc" + - state: midaccent-inhand-left + color: "#d82927" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#394dc6" + - state: accent-inhand-right + color: "#dcdcdc" + - state: midaccent-inhand-right + color: "#d82927" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#394dc6" + - state: accent-equipped-HELMET + color: "#dcdcdc" + - state: midaccent-equipped-HELMET + color: "#d82927" + - state: visor-equipped-HELMET + - type: ClothingAddFaction + faction: Mailman + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmMusician + name: musician's envirosuit helmet + description: Experts are perplexed as to how Plasmamen can still play the trumpet with this helmet on. + components: + - type: Sprite + layers: + - state: icon + color: "#3c335b" + - state: accent-icon + color: "#f3f5f4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3c335b" + - state: accent-inhand-left + color: "#f3f5f4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#3c335b" + - state: accent-inhand-right + color: "#f3f5f4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3c335b" + - state: accent-equipped-HELMET + color: "#f3f5f4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmReporter + name: reporter envirosuit helmet + description: An envirosuit helmet for the reporter. + components: + - type: Sprite + layers: + - state: icon + color: "#112334" + - state: accent-icon + color: "#79121b" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#112334" + - state: accent-inhand-left + color: "#79121b" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#112334" + - state: accent-inhand-right + color: "#79121b" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#112334" + - state: accent-equipped-HELMET + color: "#79121b" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmGladiator + name: gladiator envirosuit helmet + description: Protects the head from toy spears and poisonous oxygen. + components: + - type: Sprite + layers: + - state: icon + color: "#dab13b" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#dab13b" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#dab13b" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#dab13b" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmMantis + name: mantis' envirosuit helmet + description: An envirosuit helmet for the forensic mantis with a fancy gold stripe. + components: + - type: Sprite + layers: + - state: icon + color: "#46566d" + - state: accent-icon + color: "#7d2322" + - state: midaccent-icon + color: "#d4af48" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#46566d" + - state: accent-inhand-left + color: "#7d2322" + - state: midaccent-inhand-left + color: "#d4af48" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#46566d" + - state: accent-inhand-right + color: "#7d2322" + - state: midaccent-inhand-right + color: "#d4af48" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#46566d" + - state: accent-equipped-HELMET + color: "#7d2322" + - state: midaccent-equipped-HELMET + color: "#d4af48" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmSafari + name: safari envirosuit helmet + description: Makes you a target for the locals. + components: + - type: Sprite + layers: + - state: icon + color: "#d3b986" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d3b986" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#d3b986" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#d3b986" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmMartialGi + name: gi envirosuit helmet + description: A white envirosuit helmet with black stripes used for martial arts. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#3b3b3b" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#3b3b3b" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#3b3b3b" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#3b3b3b" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmQM + name: logistics officer's envirosuit helmet + description: A special containment helmet designed for the Logistics Officer. + components: + - type: Sprite + layers: + - state: icon + color: "#bb934b" + - state: accent-icon + color: "#ffc000" + - state: midaccent-icon + color: "#d08200" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#bb934b" + - state: accent-inhand-left + color: "#ffc000" + - state: midaccent-inhand-left + color: "#d08200" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#bb934b" + - state: accent-inhand-right + color: "#ffc000" + - state: midaccent-inhand-right + color: "#d08200" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#bb934b" + - state: accent-equipped-HELMET + color: "#ffc000" + - state: midaccent-equipped-HELMET + color: "#d08200" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmBoxing + name: boxing envirosuit helmet + description: A white envirosuit helmet with red stripes. + components: + - type: Sprite + layers: + - state: icon + color: "#eeeeee" + - state: accent-icon + color: "#a81818" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#eeeeee" + - state: accent-inhand-left + color: "#a81818" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#eeeeee" + - state: accent-inhand-right + color: "#a81818" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#eeeeee" + - state: accent-equipped-HELMET + color: "#a81818" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmAdminAssistant + name: administrative assistant's envirosuit helmet + description: A white envirosuit helmet with dark blue stripes. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#315266" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#315266" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#315266" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#315266" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmBlackPink + name: black pink envirosuit helmet + description: How you like that envirosuit helmet? + components: + - type: Sprite + layers: + - state: icon + color: "#292929" + - state: accent-icon + color: "#f4a1b7" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#292929" + - state: accent-inhand-left + color: "#f4a1b7" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#292929" + - state: accent-inhand-right + color: "#f4a1b7" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#292929" + - state: accent-equipped-HELMET + color: "#f4a1b7" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmBlackPinkAlt + name: black pink envirosuit helmet + suffix: Alternative + description: This envirosuit helmet makes you want to kill this love. + components: + - type: Sprite + layers: + - state: icon + color: "#f4a1b7" + - state: accent-icon + color: "#292929" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#f4a1b7" + - state: accent-inhand-left + color: "#292929" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#f4a1b7" + - state: accent-inhand-right + color: "#292929" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#f4a1b7" + - state: accent-equipped-HELMET + color: "#292929" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmBlueshield + name: blueshield's envirosuit helmet + description: A Plasmaman envirosuit helmet designed for the blueshield. + components: + - type: Sprite + layers: + - state: icon + color: "#535353" + - state: accent-icon + color: "#0044d4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#535353" + - state: accent-inhand-left + color: "#0044d4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#535353" + - state: accent-inhand-right + color: "#0044d4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#535353" + - state: accent-equipped-HELMET + color: "#0044d4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmTrans + name: trans envirosuit helmet + description: The preferred headgear of Transylvanian Plasmamen to prevent burning from oxygen. + components: + - type: Sprite + layers: + - state: icon + color: "#FFFFFF" + - state: accent-icon + color: "#ffb0c0" + - state: sideaccent-icon + color: "#5dd2ff" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#FFFFFF" + - state: accent-inhand-left + color: "#ffb0c0" + - state: sideaccent-inhand-left + color: "#5dd2ff" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#FFFFFF" + - state: accent-inhand-right + color: "#ffb0c0" + - state: sideaccent-inhand-right + color: "#5dd2ff" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#FFFFFF" + - state: accent-equipped-HELMET + color: "#ffb0c0" + - state: sideaccent-equipped-HELMET + color: "#5dd2ff" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmPrisonGuard + name: prison guard's envirosuit helmet + description: Hope a prisoner doesn't snatch this away from you! + components: + - type: Sprite + layers: + - state: icon + color: "#d76b00" + - state: accent-icon + color: "#363636" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d76b00" + - state: accent-inhand-left + color: "#363636" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#d76b00" + - state: accent-inhand-right + color: "#363636" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#d76b00" + - state: accent-equipped-HELMET + color: "#363636" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmBrigmedic + name: corpsman envirosuit helmet + description: A helmet provided to Corpsmen Plasmamen. + components: + - type: Sprite + layers: + - state: icon + color: "#486782" + - state: accent-icon + color: "#2e2e2e" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#486782" + - state: accent-inhand-left + color: "#2e2e2e" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#486782" + - state: accent-inhand-right + color: "#2e2e2e" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#486782" + - state: accent-equipped-HELMET + color: "#2e2e2e" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmNanotrasenRepresentative + name: nanotrasen representative envirosuit helmet + description: A black envirosuit helmet worn by the NanoTrasen Representative, with black and gold accents. + components: + - type: Sprite + layers: + - state: icon + color: "#292929" + - state: accent-icon + color: "#ffce5b" + - state: midaccent-icon + color: "#266199" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#292929" + - state: accent-inhand-left + color: "#ffce5b" + - state: midaccent-inhand-left + color: "#266199" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#292929" + - state: accent-inhand-right + color: "#ffce5b" + - state: midaccent-inhand-right + color: "#266199" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#292929" + - state: accent-equipped-HELMET + color: "#ffce5b" + - state: midaccent-equipped-HELMET + color: "#266199" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmMagistrate + name: magistrate envirosuit helmet + description: A plain white envirosuit with yellow stripes. + components: + - type: Sprite + layers: + - state: icon + color: "#ebebeb" + - state: accent-icon + color: "#ffce5b" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ebebeb" + - state: accent-inhand-left + color: "#ffce5b" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ebebeb" + - state: accent-inhand-right + color: "#ffce5b" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ebebeb" + - state: accent-equipped-HELMET + color: "#ffce5b" + - state: visor-equipped-HELMET + +# Color envirohelms +- type: entity + parent: ClothingHeadEnvirohelmBase + id: ClothingHeadEnvirohelmColorWhite + name: white envirosuit helmet + description: A generic white envirohelm. + components: + - type: Sprite + sprite: Clothing/Head/Envirohelms/white.rsi + - type: Clothing + sprite: Clothing/Head/Envirohelms/white.rsi + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorGrey + name: grey envirosuit helmet + description: A grey envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#b3b3b3" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#b3b3b3" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#b3b3b3" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#b3b3b3" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorBlack + name: black envirosuit helmet + description: A black envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#3f3f3f" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#3f3f3f" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3f3f3f" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorRed + name: red envirosuit helmet + description: A red envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#d1423f" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d1423f" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#d1423f" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#d1423f" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorGreen + name: green envirosuit helmet + description: A green envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#9ed63a" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9ed63a" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#9ed63a" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#9ed63a" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorDarkGreen + name: dark green envirosuit helmet + description: A dark green envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#79CC26" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#79CC26" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#79CC26" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorBlue + name: blue envirosuit helmet + description: A blue envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#52aecc" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#52aecc" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#52aecc" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#52aecc" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorDarkBlue + name: dark blue envirosuit helmet + description: A dark blue envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#3285ba" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3285ba" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#3285ba" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3285ba" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorTeal + name: teal envirosuit helmet + description: A teal envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#77f3b7" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#77f3b7" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#77f3b7" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#77f3b7" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorMaroon + name: maroon envirosuit helmet + description: A maroon envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#cc295f" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#cc295f" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#cc295f" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#cc295f" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorPink + name: pink envirosuit helmet + description: A pink envirosuit helmet. So fetch! + components: + - type: Sprite + layers: + - state: icon + color: "#ff8cff" + - state: accent-icon + color: "#8b3e8c" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8cff" + - state: accent-inhand-left + color: "#8b3e8c" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ff8cff" + - state: accent-inhand-right + color: "#8b3e8c" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ff8cff" + - state: accent-equipped-HELMET + color: "#8b3e8c" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorYellow + name: yellow envirosuit helmet + description: A yellow envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#ffe14d" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffe14d" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffe14d" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffe14d" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorPurple + name: purple envirosuit helmet + description: A purple envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#9f70cc" + - state: accent-icon + color: "#843b85" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9f70cc" + - state: accent-inhand-left + color: "#843b85" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#9f70cc" + - state: accent-inhand-right + color: "#843b85" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#9f70cc" + - state: accent-equipped-HELMET + color: "#843b85" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorOrange + name: orange envirosuit helmet + description: An orange envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#ff8c19" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8c19" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ff8c19" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ff8c19" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorLightBrown + name: light brown envirosuit helmet + description: A light brown envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#a17229" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a349a4" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#a17229" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#a17229" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmColorBrown + name: brown envirosuit helmet + description: A brown envirosuit helmet. + components: + - type: Sprite + layers: + - state: icon + color: "#543e1b" + - state: accent-icon + color: "#a349a4" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#543e1b" + - state: accent-inhand-left + color: "#a349a4" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#543e1b" + - state: accent-inhand-right + color: "#a349a4" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#543e1b" + - state: accent-equipped-HELMET + color: "#a349a4" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmEnviroslacksColorRed + name: red enviroslacks helmet + description: The pet project of a particularly posh Plasmaman, this envirohelm comes with red accents. Fancy! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#99211f" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#99211f" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#99211f" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#99211f" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmEnviroslacksColorOrange + name: orange enviroslacks helmet + description: The pet project of a particularly posh Plasmaman, this envirohelm comes with orange accents. Zesty! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#c2680f" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#c2680f" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#c2680f" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#c2680f" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmEnviroslacksColorGreen + name: green enviroslacks helmet + description: The pet project of a particularly posh Plasmaman, this envirohelm comes with green accents. Leafy! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#5b991f" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#5b991f" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#5b991f" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#5b991f" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmEnviroslacksColorBlue + name: blue enviroslacks helmet + description: The pet project of a particularly posh Plasmaman, this envirohelm comes with blue accents. Cool! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#2b5c99" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#2b5c99" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#2b5c99" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#2b5c99" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmEnviroslacksMNK + name: MNK enviroslacks helmet + description: A sleek envirohelm brought to you by MNK. Classic! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#363636" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#363636" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#363636" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffffff" + - state: accent-equipped-HELMET + color: "#363636" + - state: visor-equipped-HELMET + +- type: entity + parent: ClothingHeadEnvirohelmCustomBase + id: ClothingHeadEnvirohelmEnviroslacksMNKAlt + name: monochrome enviroslacks helmet + description: A sleek envirohelm brought to you by MNK. Noir! + suffix: Alternative + components: + - type: Sprite + layers: + - state: icon + color: "#3b3b3b" + - state: accent-icon + color: "#d6d6d6" + - state: visor-icon + - state: icon-flash + visible: false + shader: unshaded + map: [ "light" ] + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3b3b3b" + - state: accent-inhand-left + color: "#d6d6d6" + - state: visor-inhand-left + right: + - state: inhand-right + color: "#3b3b3b" + - state: accent-inhand-right + color: "#d6d6d6" + - state: visor-inhand-right + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3b3b3b" + - state: accent-equipped-HELMET + color: "#d6d6d6" + - state: visor-equipped-HELMET diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 7b75ad7bb0..197c5485d1 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -62,6 +62,36 @@ coefficient: 0.005 #Engineering Hardsuit +- type: entity + parent: ClothingHeadHelmetHardsuitEngineering + id: ClothingHeadHelmetHardsuitEngineeringUnpainted + name: engineering hardsuit helmet + description: An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/engineering-base.rsi + layers: + - state: icon + - state: icon-unshaded + shader: unshaded + - state: light-overlay + visible: false + shader: unshaded + map: [ "light" ] + - type: Clothing + sprite: Clothing/Head/Hardsuits/engineering-base.rsi + clothingVisuals: + head: + - state: equipped-head + - state: equipped-head-unshaded + shader: unshaded + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + head: + - state: equipped-head-light + shader: unshaded + - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitEngineering @@ -368,6 +398,35 @@ #ANTAG HARDSUITS #Blood-red Hardsuit +- type: entity + parent: ClothingHeadHelmetHardsuitSyndie + id: ClothingHeadHelmetHardsuitShanlinUnpainted + name: Cybersun tacsuit helmet + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/syndicate-base.rsi + layers: + - state: icon + - state: icon-unshaded + shader: unshaded + - state: light-overlay + visible: false + shader: unshaded + map: [ "light" ] + - type: Clothing + sprite: Clothing/Head/Hardsuits/syndicate-base.rsi + clothingVisuals: + head: + - state: equipped-head + - state: equipped-head-unshaded + shader: unshaded + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + head: + - state: equipped-head-light + shader: unshaded + - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndie @@ -418,6 +477,35 @@ Heat: 0.9 #Syndicate Elite Hardsuit +- type: entity + parent: ClothingHeadHelmetHardsuitSyndieElite + id: ClothingHeadHelmetHardsuitShiweiUnpainted + name: Cybersun elite tacsuit helmet + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/syndicate-elite-base.rsi + layers: + - state: icon + - state: icon-unshaded + shader: unshaded + - state: light-overlay + visible: false + shader: unshaded + map: [ "light" ] + - type: Clothing + sprite: Clothing/Head/Hardsuits/syndicate-elite-base.rsi + clothingVisuals: + head: + - state: equipped-head + - state: equipped-head-unshaded + shader: unshaded + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + head: + - state: equipped-head-light + shader: unshaded + - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndieElite diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 795984bb45..20c42b5a43 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -22,6 +22,7 @@ - type: Tag tags: - WhitelistChameleon + - ClothingHeadHelmetBasic #Mercenary Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml new file mode 100644 index 0000000000..0f8c5bc624 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml @@ -0,0 +1,765 @@ +- type: entity + id: BaseTowel + name: base towel + abstract: true + description: If you want to survive out here, you gotta know where your towel is. + parent: [ UnsensoredClothingUniformBase, ClothingHeadBase, ClothingBeltBase ] + components: + - type: Sprite + sprite: Clothing/Multiple/towel.rsi + - type: Clothing + sprite: Clothing/Multiple/towel.rsi + slots: + - BELT + - INNERCLOTHING + - HEAD + femaleMask: UniformTop + equipSound: + unequipSound: + - type: Spillable + solution: absorbed + - type: Absorbent + pickupAmount: 15 + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Fiber + Quantity: 30 + absorbed: + maxVol: 30 + - type: UseDelay + delay: 1 + - type: Fiber + fiberColor: fibers-white + - type: Item + size: Small + +- type: entity + id: TowelColorWhite + name: white towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#EAE8E8" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EAE8E8" + right: + - state: inhand-right + color: "#EAE8E8" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#EAE8E8" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#EAE8E8" + belt: + - state: equipped-BELT + color: "#EAE8E8" + - type: Fiber + fiberColor: fibers-white + +- type: entity + id: TowelColorPurple + name: purple towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#9C0DE1" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9C0DE1" + right: + - state: inhand-right + color: "#9C0DE1" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#9C0DE1" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9C0DE1" + belt: + - state: equipped-BELT + color: "#9C0DE1" + - type: Fiber + fiberColor: fibers-purple + +- type: entity + id: TowelColorRed + name: red towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#940000" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#940000" + right: + - state: inhand-right + color: "#940000" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#940000" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#940000" + belt: + - state: equipped-BELT + color: "#940000" + - type: Fiber + fiberColor: fibers-red + +- type: entity + id: TowelColorBlue + name: blue towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#0089EF" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#0089EF" + right: + - state: inhand-right + color: "#0089EF" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#0089EF" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#0089EF" + belt: + - state: equipped-BELT + color: "#0089EF" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + id: TowelColorDarkBlue + name: dark blue towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#3285ba" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3285ba" + right: + - state: inhand-right + color: "#3285ba" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3285ba" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3285ba" + belt: + - state: equipped-BELT + color: "#3285ba" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + id: TowelColorLightBlue + name: light blue towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#58abcc" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#58abcc" + right: + - state: inhand-right + color: "#58abcc" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#58abcc" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#58abcc" + belt: + - state: equipped-BELT + color: "#58abcc" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + id: TowelColorTeal + name: teal towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#3CB57C" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3CB57C" + right: + - state: inhand-right + color: "#3CB57C" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3CB57C" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3CB57C" + belt: + - state: equipped-BELT + color: "#3CB57C" + - type: Fiber + fiberColor: fibers-teal + +- type: entity + id: TowelColorBrown + name: brown towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#723A02" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#723A02" + right: + - state: inhand-right + color: "#723A02" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#723A02" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#723A02" + belt: + - state: equipped-BELT + color: "#723A02" + - type: Fiber + fiberColor: fibers-brown + +- type: entity + id: TowelColorLightBrown + name: light brown towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#c59431" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#c59431" + right: + - state: inhand-right + color: "#c59431" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#c59431" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#c59431" + belt: + - state: equipped-BELT + color: "#c59431" + - type: Fiber + fiberColor: fibers-brown + +- type: entity + id: TowelColorGray + name: gray towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#999999" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#999999" + right: + - state: inhand-right + color: "#999999" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#999999" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#999999" + belt: + - state: equipped-BELT + color: "#999999" + - type: Fiber + fiberColor: fibers-grey + +- type: entity + id: TowelColorGreen + name: green towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#5ABF2F" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5ABF2F" + right: + - state: inhand-right + color: "#5ABF2F" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#5ABF2F" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#5ABF2F" + belt: + - state: equipped-BELT + color: "#5ABF2F" + - type: Fiber + fiberColor: fibers-green + +- type: entity + id: TowelColorDarkGreen + name: dark green towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#79CC26" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + right: + - state: inhand-right + color: "#79CC26" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#79CC26" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#79CC26" + belt: + - state: equipped-BELT + color: "#79CC26" + - type: Fiber + fiberColor: fibers-green + +- type: entity + id: TowelColorGold + name: gold towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#F7C430" + - state: iconstripe + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#F7C430" + right: + - state: inhand-right + color: "#F7C430" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#F7C430" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#F7C430" + belt: + - state: equipped-BELT + color: "#F7C430" + - type: Fiber + fiberColor: fibers-gold + +- type: entity + id: TowelColorOrange + name: orange towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#EF8100" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EF8100" + right: + - state: inhand-right + color: "#EF8100" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#EF8100" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#EF8100" + belt: + - state: equipped-BELT + color: "#EF8100" + - type: Fiber + fiberColor: fibers-orange + +- type: entity + id: TowelColorBlack + name: black towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#535353" + right: + - state: inhand-right + color: "#535353" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#535353" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#535353" + belt: + - state: equipped-BELT + color: "#535353" + - type: Fiber + fiberColor: fibers-black + +- type: entity + id: TowelColorPink + name: pink towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#ffa69b" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffa69b" + right: + - state: inhand-right + color: "#ffa69b" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffa69b" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffa69b" + belt: + - state: equipped-BELT + color: "#ffa69b" + - type: Fiber + fiberColor: fibers-pink + +- type: entity + id: TowelColorYellow + name: yellow towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#ffe14d" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffe14d" + right: + - state: inhand-right + color: "#ffe14d" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffe14d" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffe14d" + belt: + - state: equipped-BELT + color: "#ffe14d" + - type: Fiber + fiberColor: fibers-yellow + +- type: entity + id: TowelColorMaroon + name: maroon towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#cc295f" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#cc295f" + right: + - state: inhand-right + color: "#cc295f" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#cc295f" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#cc295f" + belt: + - state: equipped-BELT + color: "#cc295f" + - type: Fiber + fiberColor: fibers-maroon + +- type: entity + id: TowelColorSilver + name: silver towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#d0d0d0" + - state: iconstripe + color: "#F7C430" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d0d0d0" + right: + - state: inhand-right + color: "#d0d0d0" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#d0d0d0" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#d0d0d0" + belt: + - state: equipped-BELT + color: "#d0d0d0" + - type: Fiber + fiberColor: fibers-silver + +- type: entity + id: TowelColorMime + name: silent towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#EAE8E8" + - state: iconstripe + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EAE8E8" + right: + - state: inhand-right + color: "#EAE8E8" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#EAE8E8" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#EAE8E8" + belt: + - state: equipped-BELT + color: "#EAE8E8" + - type: Fiber + fiberColor: fibers-white + +- type: entity + id: TowelColorNT + name: NanoTrasen brand towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#004787" + - state: iconstripe + color: "#EAE8E8" + - state: NTmono + color: "#EAE8E8" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#004787" + right: + - state: inhand-right + color: "#004787" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#004787" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#004787" + belt: + - state: equipped-BELT + color: "#004787" + - type: Fiber + fiberColor: fibers-regal-blue + +- type: entity + id: TowelColorCentcom + name: centcom towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#29722e" + - state: iconstripe + color: "#F7C430" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#29722e" + right: + - state: inhand-right + color: "#29722e" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#29722e" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#29722e" + belt: + - state: equipped-BELT + color: "#29722e" + - type: Fiber + fiberColor: fibers-green + +- type: entity + id: TowelColorSyndicate + name: syndicate towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#535353" + - state: iconstripe + color: "#940000" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#535353" + right: + - state: inhand-right + color: "#535353" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#535353" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#535353" + belt: + - state: equipped-BELT + color: "#535353" + - type: Fiber + fiberColor: fibers-black + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index f02dc068da..84b3df4590 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -8,7 +8,7 @@ sprite: Clothing/Neck/Cloaks/centcomcloakformal.rsi - type: StealTarget stealGroup: HeadCloak # leaving this here because I suppose it might be interesting? - + - type: entity parent: ClothingNeckBase id: ClothingNeckCloakCap @@ -159,7 +159,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: entity parent: ClothingNeckBase @@ -185,7 +185,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: TypingIndicatorClothing proto: moth @@ -287,4 +287,4 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} \ No newline at end of file + toggleable-clothing: !type:Container {} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 1d938911a1..96a5f77c5e 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -120,7 +120,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} storagebase: !type:Container ents: [] @@ -137,6 +137,18 @@ coefficient: 0.01 - type: FireProtection reduction: 0.75 # almost perfectly sealed, atmos firesuit is better + - type: IgniteFromGasImmunity + parts: + - Torso + - Groin + - LeftArm + - LeftHand + - RightArm + - RightHand + - LeftLeg + - LeftFoot + - RightLeg + - RightFoot - type: ClothingSpeedModifier walkModifier: 0.4 sprintModifier: 0.6 @@ -155,7 +167,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: GroupExamine - type: Tag tags: @@ -164,6 +176,7 @@ - HidesHarpyWings #DeltaV: Used by harpies to help render their hardsuit sprites - AllowLamiaHardsuit - FullBodyOuter + - PlasmamanSafe - type: Clothing equipDelay: 2.5 # Hardsuits are heavy and take a while to put on/off. unequipDelay: 2.5 @@ -192,6 +205,80 @@ - ItemMask restitution: 0.3 friction: 0.2 + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepHardsuitLight + requiresWorn: true + distanceWalking: 2 + distanceSprinting: 3 + +- type: entity + abstract: true + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitBaseMedium + name: base hardsuit + components: + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepHardsuitMedium + requiresWorn: true + distanceWalking: 2 + distanceSprinting: 3 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 600 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + - type: DamageOtherOnHit + damage: + types: + Blunt: 30 + staminaCost: 60 + soundHit: + collection: MetalThud + - type: Clothing + equipDelay: 4 # For stuff like standard Tacsuits and Heavy Hardsuits. + unequipDelay: 4 + +- type: entity + abstract: true + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitBaseHeavy + name: base hardsuit + components: + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepHardsuitHeavy + requiresWorn: true + distanceWalking: 2 + distanceSprinting: 3 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 800 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + - type: DamageOtherOnHit + damage: + types: + Blunt: 45 + staminaCost: 110 + soundHit: + collection: MetalThud + - type: Clothing + equipDelay: 5 # For stuff like "Heavy" Tacsuits. + unequipDelay: 5 - type: entity abstract: true @@ -204,6 +291,18 @@ lowPressureMultiplier: 1000 - type: TemperatureProtection coefficient: 0.01 # Not complete protection from fire + - type: IgniteFromGasImmunity + parts: + - Torso + - Groin + - LeftArm + - LeftHand + - RightArm + - RightHand + - LeftLeg + - LeftFoot + - RightLeg + - RightFoot - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 @@ -214,6 +313,7 @@ tags: - AllowLamiaHardsuit #DeltaV: Used by Lamia to render snek hardsuits - HidesHarpyWings #DeltaV: Used by harpies to help render their hardsuit sprites + - PlasmamanSafe - type: Clothing equipDelay: 1.25 # Softsuits are easier to put on and off unequipDelay: 1 @@ -242,7 +342,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} storagebase: !type:Container ents: [] diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index a9bb8f1dc7..5966c3f579 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -44,6 +44,8 @@ lowPressureMultiplier: 1000 - type: TemperatureProtection coefficient: 0.001 + - type: FireProtection + reduction: 1 - type: ExplosionResistance damageCoefficient: 0.5 - type: Armor @@ -64,6 +66,24 @@ guides: [ HephaestusIndustries ] #Engineering Hardsuit +- type: entity + parent: ClothingOuterHardsuitEngineering + id: ClothingOuterHardsuitEngineeringUnpainted + name: engineering hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/engineering-base.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/engineering-base.rsi + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING + - state: equipped-OUTERCLOTHING-unshaded + shader: unshaded + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitEngineeringUnpainted + - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitEngineering @@ -98,6 +118,10 @@ coefficient: 0.75 # 25% - type: GuideHelp guides: [ HephaestusIndustries ] + - type: TemperatureProtection + coefficient: 0.001 + - type: FireProtection + reduction: 1 #Spationaut Hardsuit - type: entity @@ -198,7 +222,7 @@ - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitMaxim name: salvager maxim hardsuit description: Fire. Heat. These things forge great weapons, they also forge great salvagers. @@ -225,6 +249,8 @@ damageCoefficient: 0.2 - type: TemperatureProtection coefficient: 0.001 + - type: FireProtection + reduction: 1 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitMaxim - type: GuideHelp @@ -232,7 +258,7 @@ #Security Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitSecurity name: security hardsuit description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. @@ -264,7 +290,7 @@ #Brigmedic Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitBrigmedic name: corpsman hardsuit # DeltaV - rename brigmedic to corpsman description: Special hardsuit of the guardian angel of the brig. It is the medical version of the security hardsuit. # I will fix the rest of this entry later when I resprite sec suits @@ -293,7 +319,7 @@ #Warden's Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitWarden name: warden's hardsuit description: A specialized riot suit geared to combat low pressure environments. @@ -325,7 +351,7 @@ #Captain's Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitCap name: captain's armored spacesuit description: A formal armored spacesuit, made for the station's captain. @@ -361,7 +387,7 @@ #Chief Engineer's Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitEngineeringWhite name: chief engineer's hardsuit description: A special hardsuit that protects against hazardous, low pressure environments, made for the chief engineer of the station. @@ -397,6 +423,10 @@ coefficient: 0.65 # 35% - type: GuideHelp guides: [ HephaestusIndustries ] + - type: TemperatureProtection + coefficient: 0.001 + - type: FireProtection + reduction: 1 #Chief Medical Officer's Hardsuit - type: entity @@ -427,7 +457,7 @@ #Research Director's Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitRd name: experimental research hardsuit description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. @@ -542,7 +572,25 @@ #ANTAG HARDSUITS #Blood-red Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitSyndie + id: ClothingOuterHardsuitShanlinUnpainted + name: Cybersun tacsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/syndicate-base.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/syndicate-base.rsi + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING + - state: equipped-OUTERCLOTHING-unshaded + shader: unshaded + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitShanlinUnpainted + +- type: entity + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitSyndie name: blood-red hardsuit description: A heavily armored hardsuit designed for work in special operations. Property of Gorlex Marauders. @@ -604,6 +652,24 @@ coefficient: 0.5 # 50% #Syndicate Elite Hardsuit +- type: entity + parent: ClothingOuterHardsuitSyndieElite + id: ClothingOuterHardsuitShiweiUnpainted + name: Cybersun tacsuit + description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING + - state: equipped-OUTERCLOTHING-unshaded + shader: unshaded + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitShiweiUnpainted + - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitSyndieElite @@ -622,7 +688,7 @@ - type: ExplosionResistance damageCoefficient: 0.2 - type: FireProtection - reduction: 0.8 # perfect protection like atmos firesuit for pyro tf2 ops + reduction: 1 # perfect protection like atmos firesuit for pyro tf2 ops - type: Armor modifiers: coefficients: @@ -645,7 +711,7 @@ #Syndicate Commander Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitSyndieCommander name: syndicate commander hardsuit description: A bulked up version of the blood-red hardsuit, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights. @@ -679,7 +745,7 @@ #Cybersun Juggernaut Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitJuggernaut name: cybersun juggernaut suit description: A suit made by the cutting edge R&D department at cybersun to be hyper resilient. @@ -890,6 +956,10 @@ clothingPrototype: ClothingHeadHelmetHardsuitERTEngineer - type: StaminaDamageResistance coefficient: 0.5 # 50% + - type: TemperatureProtection + coefficient: 0.001 + - type: FireProtection + reduction: 1 #ERT Medic Hardsuit - type: entity @@ -945,7 +1015,7 @@ #Deathsquad - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseHeavy id: ClothingOuterHardsuitDeathsquad name: death squad hardsuit description: An advanced hardsuit favored by commandos for use in special operations. @@ -981,7 +1051,7 @@ #CBURN Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterHardsuitBaseMedium id: ClothingOuterHardsuitCBURN name: CBURN exosuit description: A lightweight yet strong exosuit used for special cleanup operations. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 66718d519b..bc3a8c84ff 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -58,7 +58,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} #Prisoner EVA - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 96caf94717..9bbd9008a2 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -144,7 +144,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: ClothingRequiredStepTriggerImmune slots: WITHOUT_POCKET - type: Tag @@ -251,7 +251,7 @@ sprite: Clothing/OuterClothing/Suits/monkey.rsi - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: ClothingRequiredStepTriggerImmune slots: WITHOUT_POCKET - type: Tag @@ -274,7 +274,7 @@ clothingPrototype: ClothingHeadHatHoodIan - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: Construction graph: ClothingOuterSuitIan node: suit @@ -297,7 +297,7 @@ clothingPrototype: ClothingHeadHatHoodCarp - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} - type: entity parent: ClothingOuterSuitCarp @@ -321,4 +321,4 @@ - type: Sprite sprite: Clothing/OuterClothing/Suits/witchrobe.rsi - type: Clothing - sprite: Clothing/OuterClothing/Suits/witchrobe.rsi \ No newline at end of file + sprite: Clothing/OuterClothing/Suits/witchrobe.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index c9ba05fcff..e5e38a2673 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -45,7 +45,7 @@ slot: head - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot {} + toggleable-clothing: !type:Container {} storagebase: !type:Container ents: [] diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml index cea803d104..b10a1c95e6 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml @@ -153,3 +153,108 @@ - state: icon_flipped map: ["foldedLayer"] visible: true + +- type: entity + abstract: true + parent: UnsensoredClothingUniformBase + id: UnsensoredClothingUniformEnvirosuitBase + components: + - type: IgniteFromGasImmunity + parts: + - Torso + - Groin + - LeftArm + - LeftHand + - RightArm + - RightHand + - LeftLeg + - LeftFoot + - RightLeg + - RightFoot + - type: Clothing + equipDelay: 0.4 + unequipDelay: 0.6 # Slightly higher delay to protect against accidental unequips + femaleMask: NoMask + - type: SelfExtinguisher + cooldown: 100 + requiresIgniteFromGasImmune: true + sound: + path: /Audio/Effects/extinguish.ogg + - type: LimitedCharges + maxCharges: 4 + charges: 4 + - type: Armor + modifiers: + coefficients: + Caustic: 0.85 + - type: Tag + tags: + - WhitelistChameleon + - PlasmamanSafe + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET + - type: GuideHelp # While the playerbase is getting introduced to Plasmamen, add their guidebook here + guides: [ Plasmaman ] + +- type: entity + abstract: true + parent: UnsensoredClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitBase + components: + - type: SuitSensor + - type: DeviceNetwork + deviceNetId: Wireless + transmitFrequencyId: SuitSensor + - type: WirelessNetworkConnection + range: 1200 + - type: StationLimitedNetwork + +- type: entity + abstract: true + parent: UnsensoredClothingUniformEnvirosuitBase + id: UnsensoredClothingUniformEnvirosuitCustomBase + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/custom.rsi + layers: + - state: icon + color: "#FFFFFF" + - state: accent-icon + color: "#FF0000" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#FFFFFF" + - state: accent-inhand-left + color: "#FF0000" + right: + - state: inhand-right + color: "#FFFFFF" + - state: accent-inhand-right + color: "#FF0000" + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/custom.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#FFFFFF" + - state: accent-equipped-INNERCLOTHING + color: "#FF0000" + - state: loweraccent-equipped-INNERCLOTHING + color: "#FF0000" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" # Recommended default soles color + +- type: entity + abstract: true + parent: UnsensoredClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitCustomBase + components: + - type: SuitSensor + - type: DeviceNetwork + deviceNetId: Wireless + transmitFrequencyId: SuitSensor + - type: WirelessNetworkConnection + range: 1200 + - type: StationLimitedNetwork diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/envirosuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/envirosuits.yml new file mode 100644 index 0000000000..04fae7ee00 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/envirosuits.yml @@ -0,0 +1,3091 @@ +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuit + name: plasma envirosuit + description: A special containment suit that allows plasma-based lifeforms to exist safely in an oxygenated environment. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/plain.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/plain.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitAtmos + name: atmospherics envirosuit + description: An air-tight suit designed to be used by Plasmamen employed as atmos technicians. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/atmos.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/atmos.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitCargo + name: cargo tech envirosuit + description: An envirosuit used by Plasmamen cargo technicians. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/cargo.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/cargo.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitCaptain + name: captain's envirosuit + description: It's a blue envirosuit with some gold markings denoting the rank of "Captain". + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/captain.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/captain.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitChiefEngineer + name: chief engineer's envirosuit + description: An air-tight suit designed to be used by Plasmamen insane enough to achieve the rank of "Chief Engineer". + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/ce.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/ce.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitChaplain + name: chaplain's envirosuit + description: An envirosuit specially designed for only the most pious of Plasmamen. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/chaplain.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/chaplain.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitChef + name: chef's envirosuit + description: A white Plasmaman envirosuit designed for cullinary practices. One might question why a member of a species that doesn't need to eat would become a chef. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/chef.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/chef.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitChemist + name: chemistry envirosuit + description: A Plasmaman envirosuit designed for chemists. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/chemist.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/chemist.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitClown + name: clown envirosuit + description: HONK! + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/clown.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/clown.rsi + - type: Tag + tags: + - ClownSuit + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitCMO + name: chief medical officer's envirosuit + description: It's an envirosuit worn by those with the experience to be "Chief Medical Officer". + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/cmo.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/cmo.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitEngineering + name: engineering envirosuit + description: An air-tight suit designed to be used by Plasmamen employed as engineers, the usual purple stripes being replaced by engineering's orange. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/engineering.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/engineering.rsi + +- type: entity + parent: ClothingUniformEnvirosuitEnviroslacksColorOrange + id: ClothingUniformEnvirosuitDetective + name: detective envirosuit + description: The pet project of a particularly posh Plasmaman, this custom suit was modified by Nanotrasen for its detectives. + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitHoP + name: head of personnel's envirosuit + description: It's an envirosuit worn by someone who works in the position of "Head of Personnel". + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/hop.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/hop.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitHoS + name: head of security's envirosuit + description: A Plasmaman containment suit decorated for those few with the dedication to achieve the position of Head of Security. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/hos.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/hos.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitHydroponics + name: hydroponics envirosuit + description: A green and blue envirosuit designed to protect Plasmamen from minor plant-related injuries. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/hydroponics.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/hydroponics.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitJanitor + name: janitor envirosuit + description: A grey and purple envirosuit designated for Plasmamen janitors. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/janitor.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/janitor.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitAncientVoid + name: NTSRA envirosuit + description: Made out of a modified NTSRA vacsuit, this non-spaceworthy suit was NanoTrasen's first designed envirosuit for Plasmamen. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/ancientvoid.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/ancientvoid.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitMedicalDoctor + name: medical doctor's envirosuit + description: A suit designed for the station's more plasma-based doctors. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/medical.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/medical.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitGenetics + name: genetics envirosuit + description: A Plasmaman envirosuit designed for geneticists. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/genetics.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/genetics.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitMime + name: mime envirosuit + description: It's not very colourful. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/mime.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/mime.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitParamedic + name: paramedic envirosuit + description: A suit designed for the station's Plasmaman paramedics. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/paramedic.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/paramedic.rsi + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitPrisoner + name: prisoner envirosuit + description: An orange envirosuit identifying and protecting a criminal Plasmaman. + components: + - type: Sprite + layers: + - state: icon + color: "#ff8300" + - state: plaintop-icon + color: "#ff8300" + - state: accentprisoner-icon + color: "#404040" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8300" + - state: plaintop-inhand-left + color: "#ff8300" + - state: accentprisoner-inhand-left + color: "#404040" + right: + - state: inhand-right + color: "#ff8300" + - state: plaintop-inhand-right + color: "#ff8300" + - state: accentprisoner-inhand-right + color: "#404040" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8300" + - state: plaintop-equipped-INNERCLOTHING + color: "#ff8300" + - state: accentprisoner-equipped-INNERCLOTHING + color: "#404040" + - state: loweraccent-equipped-INNERCLOTHING + color: "#404040" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + - type: SuitSensor + controlsLocked: true + randomMode: false + mode: SensorCords + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + - PlasmamanSafe + - PrisonUniform + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitResearchDirector + name: mystagogue's envirosuit + description: It's an envirosuit worn by those with the know-how to achieve the position of "Mystagogue". + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/rd.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/rd.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitRoboticist + name: roboticist envirosuit + description: A Plasmaman envirosuit designed for roboticists. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/roboticist.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/roboticist.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitSalvage + name: salvage envirosuit + description: An air-tight khaki suit designed for salvage operations by Plasmamen. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/salvage.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/salvage.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitScientist + name: science envirosuit + description: A Plasmaman envirosuit designed for scientists. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/scientist.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/scientist.rsi + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitSec + name: security envirosuit + description: A Plasmaman containment suit designed for security officers. + components: + - type: Sprite + layers: + - state: icon + color: "#8f3132" + - state: accent2-icon + color: "#2e2e2e" + - state: accenthighlight-icon + color: "#313e5a" + - state: clip-icon + color: "#730000" + - state: clip_right-icon + color: "#313e5a" + - state: pants-icon + color: "#2e2e2e" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#8f3132" + - state: accent2-inhand-left + color: "#2e2e2e" + - state: accenthighlight-inhand-left + color: "#313e5a" + - state: clip-inhand-left + color: "#730000" + - state: clip_right-inhand-left + color: "#313e5a" + - state: pants-inhand-left + color: "#2e2e2e" + right: + - state: inhand-right + color: "#8f3132" + - state: accent2-inhand-right + color: "#2e2e2e" + - state: accenthighlight-inhand-right + color: "#313e5a" + - state: clip-inhand-right + color: "#730000" + - state: clip_right-inhand-right + color: "#313e5a" + - state: pants-inhand-right + color: "#2e2e2e" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#8f3132" + - state: accent2-equipped-INNERCLOTHING + color: "#2e2e2e" + - state: accenthighlight-equipped-INNERCLOTHING + color: "#313e5a" + - state: clip-equipped-INNERCLOTHING + color: "#730000" + - state: clip_right-equipped-INNERCLOTHING + color: "#313e5a" + - state: pants-equipped-INNERCLOTHING + color: "#2e2e2e" + - state: loweraccent-equipped-INNERCLOTHING + color: "#732829" + - state: shoesdark-equipped-INNERCLOTHING + color: "#2e2e2e" + - state: soles-equipped-INNERCLOTHING + color: "#7a7a7a" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitSecBlue + name: blue security envirosuit + description: A cool blue enviroshirt over charcoal trousers, for the calm and collected Plasmaman officer. + components: + - type: Sprite + layers: + - state: icon + color: "#b9c1d9" + - state: accent-icon + color: "#2e2e2e" + - state: accent3_chestonly-icon + color: "#36476b" + - state: accenthighlight-icon + color: "#313e5a" + - state: clip-icon + color: "#860000" + - state: clip_right-icon + color: "#313e5a" + - state: pants-icon + color: "#232938" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#b9c1d9" + - state: accent-inhand-left + color: "#2e2e2e" + - state: accent3_chestonly-inhand-left + color: "#36476b" + - state: accenthighlight-inhand-left + color: "#313e5a" + - state: clip-inhand-left + color: "#860000" + - state: clip_right-inhand-left + color: "#313e5a" + - state: pants-inhand-left + color: "#232938" + right: + - state: inhand-right + color: "#b9c1d9" + - state: accent-inhand-right + color: "#2e2e2e" + - state: accent3_chestonly-inhand-right + color: "#36476b" + - state: accenthighlight-inhand-right + color: "#313e5a" + - state: clip-inhand-right + color: "#860000" + - state: clip_right-inhand-right + color: "#313e5a" + - state: pants-inhand-right + color: "#232938" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#b9c1d9" + - state: accentalt_noback-equipped-INNERCLOTHING + color: "#2e2e2e" + - state: accent3_chestonly-equipped-INNERCLOTHING + color: "#36476b" + - state: accenthighlight-equipped-INNERCLOTHING + color: "#313e5a" + - state: clip-equipped-INNERCLOTHING + color: "#860000" + - state: clip_right-equipped-INNERCLOTHING + color: "#313e5a" + - state: pants-equipped-INNERCLOTHING + color: "#232938" + - state: backaccent-equipped-INNERCLOTHING + color: "#36476b" + - state: loweraccent-equipped-INNERCLOTHING + color: "#36476b" + - state: shoesdark-equipped-INNERCLOTHING + color: "#2e2e2e" + - state: soles-equipped-INNERCLOTHING + color: "#7a7a7a" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitSecGrey + name: grey security envirosuit + description: Light grey enviroslacks with bright red highlights, for dedicated and responsive security officers. + components: + - type: Sprite + layers: + - state: icon + color: "#7e7e7e" + - state: plaintop-icon + color: "#7e7e7e" + - state: accent-icon + color: "#333333" + - state: accenthighlight-icon + color: "#313e5a" + - state: tie-icon + color: "#a61d1d" + - state: clip-icon + color: "#860000" + - state: clip_right-icon + color: "#313e5a" + - state: pants-icon + color: "#333333" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#7e7e7e" + - state: plaintop-inhand-left + color: "#7e7e7e" + - state: accent-inhand-left + color: "#333333" + - state: accenthighlight-inhand-left + color: "#313e5a" + - state: tie-inhand-left + color: "#a61d1d" + - state: clip-inhand-left + color: "#860000" + - state: clip_right-inhand-left + color: "#313e5a" + - state: pants-inhand-left + color: "#333333" + right: + - state: inhand-right + color: "#7e7e7e" + - state: plaintop-inhand-right + color: "#7e7e7e" + - state: accent-inhand-right + color: "#333333" + - state: accenthighlight-inhand-right + color: "#313e5a" + - state: tie-inhand-right + color: "#a61d1d" + - state: clip-inhand-right + color: "#860000" + - state: clip_right-inhand-right + color: "#313e5a" + - state: pants-inhand-right + color: "#333333" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#7e7e7e" + - state: plaintop-equipped-INNERCLOTHING + color: "#7e7e7e" + - state: accentalt-equipped-INNERCLOTHING + color: "#333333" + - state: accenthighlight-equipped-INNERCLOTHING + color: "#313e5a" + - state: tie-equipped-INNERCLOTHING + color: "#a61d1d" + - state: clip-equipped-INNERCLOTHING + color: "#860000" + - state: clip_right-equipped-INNERCLOTHING + color: "#313e5a" + - state: cuffs-equipped-INNERCLOTHING + color: "#a11a1a" + - state: cuffs_upper-equipped-INNERCLOTHING + color: "#c92323" + - state: pants-equipped-INNERCLOTHING + color: "#333333" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a61d1d" + - state: shoesdark-equipped-INNERCLOTHING + color: "#333333" + - state: soles-equipped-INNERCLOTHING + color: "#7a7a7a" + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitVirology + name: virology envirosuit + description: The suit worn by the safest people on the station, those who are completely immune to the monstrosities they create. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/virology.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/virology.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitWarden + name: warden's envirosuit + description: A Plasmaman containment suit designed for the warden, white stripes being added to differentiate them from other members of security. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/warden.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/warden.rsi + +- type: entity + parent: UnsensoredClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitOperative + name: operative envirosuit + description: A sinister looking envirosuit, for the most elite of bony operatives. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/tacticool.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/tacticool.rsi + - type: LimitedCharges + maxCharges: 6 + charges: 6 + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitTacticool + name: tacticool envirosuit + description: A sinister looking envirosuit, for the boniest of operatives. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/tacticool.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/tacticool.rsi + # Too cool for sensors to be on + - type: SuitSensor + randomMode: false + mode: SensorOff + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitCentcomAgent + name: CentCom agent's envirosuit + description: An envirosuit tailored for CentCom's legal team. Smells of burnt coffee. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/centcom_agent.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/centcom_agent.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitCentcomOfficial + name: CentCom official's envirosuit + description: It's an envirosuit worn by CentCom's officials. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/centcom_official.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/centcom_official.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitCentcomOfficer + name: CentCom officer's envirosuit + description: It's an envirosuit worn by CentCom Officers. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/centcom_officer.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/centcom_officer.rsi + +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitBlueshield + name: blueshield's envirosuit + description: An envirosuit designed for Plasmamen employed as the Blueshield. + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/blueshield_officer.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/blueshield_officer.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Heat: 0.95 + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitCourier + name: courier's envirosuit + description: An envirosuit tailored for the courier. + components: + - type: Sprite + layers: + - state: icon + color: "#4a281f" + - state: accent2-icon + color: "#c2911e" + - state: clip-icon + color: "#c2911e" + - state: clip_right-icon + color: "#c2911e" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#4a281f" + - state: accent2-inhand-left + color: "#c2911e" + - state: clip-inhand-left + color: "#c2911e" + - state: clip_right-inhand-left + color: "#c2911e" + right: + - state: inhand-right + color: "#4a281f" + - state: accent2-inhand-right + color: "#c2911e" + - state: clip-inhand-right + color: "#c2911e" + - state: clip_right-inhand-right + color: "#c2911e" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#4a281f" + - state: accent2-equipped-INNERCLOTHING + color: "#c2911e" + - state: clip-equipped-INNERCLOTHING + color: "#c2911e" + - state: clip_right-equipped-INNERCLOTHING + color: "#c2911e" + - state: loweraccent2-equipped-INNERCLOTHING + color: "#c2911e" + - state: soles-equipped-INNERCLOTHING + color: "#c2911e" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitMailCarrier + name: mail carrier's envirosuit + description: An envirosuit tailored for the mail carrier. The color pattern makes pitbulls go wild. + components: + - type: Sprite + layers: + - state: icon + color: "#394dc6" + - state: accent-icon + color: "#d82927" + - state: accent2_chestonly-icon + color: "#dcdcdc" + - state: clip-icon + color: "#dcdcdc" + - state: clip_right-icon + color: "#c2c2c2" + - state: belt-icon + color: "#cfcfcf" + - state: beltbuckle_small-icon + color: "#f0990c" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#394dc6" + - state: accent-inhand-left + color: "#d82927" + - state: accent2_chestonly-inhand-left + color: "#dcdcdc" + - state: clip-inhand-left + color: "#dcdcdc" + - state: clip_right-inhand-left + color: "#c2c2c2" + - state: belt-inhand-left + color: "#cfcfcf" + - state: beltbuckle_small-inhand-left + color: "#f0990c" + right: + - state: inhand-right + color: "#394dc6" + - state: accent-inhand-right + color: "#d82927" + - state: accent2_chestonly-inhand-right + color: "#dcdcdc" + - state: clip-inhand-right + color: "#dcdcdc" + - state: clip_right-inhand-right + color: "#c2c2c2" + - state: belt-inhand-right + color: "#cfcfcf" + - state: beltbuckle_small-inhand-right + color: "#f0990c" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#394dc6" + - state: accentalt_noback-equipped-INNERCLOTHING + color: "#d82927" + - state: accent2_chestonly-equipped-INNERCLOTHING + color: "#dcdcdc" + - state: clip-equipped-INNERCLOTHING + color: "#dcdcdc" + - state: clip_right-equipped-INNERCLOTHING + color: "#c2c2c2" + - state: belt-equipped-INNERCLOTHING + color: "#cfcfcf" + - state: beltbuckle_small-equipped-INNERCLOTHING + color: "#f0990c" + - state: backaccent-equipped-INNERCLOTHING + color: "#dcdcdc" + - state: loweraccent2-equipped-INNERCLOTHING + color: "#dcdcdc" + - state: soles-equipped-INNERCLOTHING + color: "#dcdcdc" + - type: ClothingAddFaction + faction: Mailman + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitMusician + name: musician's envirosuit + description: An envirosuit to play music with. + components: + - type: Sprite + layers: + - state: icon + color: "#3c335b" + - state: plaintop-icon + color: "#3c335b" + - state: accent2-icon + color: "#f3f5f4" + - state: pin-icon + color: "#db2525" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3c335b" + - state: accent2-inhand-left + color: "#f3f5f4" + - state: pin-inhand-left + color: "#db2525" + right: + - state: inhand-right + color: "#3c335b" + - state: accent2-inhand-right + color: "#f3f5f4" + - state: pin-inhand-right + color: "#db2525" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3c335b" + - state: accent2-equipped-INNERCLOTHING + color: "#f3f5f4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#f3f5f4" + - state: pin-equipped-INNERCLOTHING + color: "#db2525" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitReporter + name: reporter envirosuit + description: An envirosuit for the news-oriented Plasmamen. + components: + - type: Sprite + layers: + - state: icon + color: "#112334" + - state: accent2-icon + color: "#79121b" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#112334" + - state: accent2-inhand-left + color: "#79121b" + right: + - state: inhand-right + color: "#112334" + - state: accent2-inhand-right + color: "#79121b" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#112334" + - state: accent2-equipped-INNERCLOTHING + color: "#79121b" + - state: loweraccent2-equipped-INNERCLOTHING + color: "#79121b" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitGladiator + name: gladiator envirosuit + description: Made for bloodthirsty Plasmamen. + components: + - type: Sprite + layers: + - state: icon + color: "#dab13b" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#dab13b" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#dab13b" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#dab13b" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent2-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#a349a4" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitMantis + name: mantis' envirosuit + description: Hunting down psionics in the safety of this envirosuit. + components: + - type: Sprite + layers: + - state: icon + color: "#46566d" + - state: pants-icon + color: "#7d2322" + - state: belt-icon + color: "#51321a" + - state: beltbuckle-icon + color: "#dcbb60" + - state: accent-icon + color: "#d4af48" + - state: buttons-icon + color: "#997d30" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#46566d" + - state: pants-inhand-left + color: "#7d2322" + - state: belt-inhand-left + color: "#51321a" + - state: beltbuckle-inhand-left + color: "#dcbb60" + - state: accent-inhand-left + color: "#d4af48" + - state: buttons-inhand-left + color: "#997d30" + right: + - state: inhand-right + color: "#46566d" + - state: pants-inhand-right + color: "#7d2322" + - state: belt-inhand-right + color: "#51321a" + - state: beltbuckle-inhand-right + color: "#dcbb60" + - state: accent-inhand-right + color: "#d4af48" + - state: buttons-inhand-right + color: "#997d30" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#46566d" + - state: pants-equipped-INNERCLOTHING + color: "#7d2322" + - state: belt-equipped-INNERCLOTHING + color: "#51321a" + - state: beltbuckle-equipped-INNERCLOTHING + color: "#dcbb60" + - state: accentalt-equipped-INNERCLOTHING + color: "#d4af48" + - state: loweraccent-equipped-INNERCLOTHING + color: "#d4af48" + - state: buttons-equipped-INNERCLOTHING + color: "#997d30" + - state: soles-equipped-INNERCLOTHING + color: "#d4af48" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitSafari + name: safari envirosuit + description: Perfect for a jungle excursion. + components: + - type: Sprite + layers: + - state: icon + color: "#d3b986" + - state: accent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d3b986" + - state: accent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#d3b986" + - state: accent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#d3b986" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitMartialGi + name: gi envirosuit + description: A flowy envirosuit tailor-made for martial arts that doesn't restrict your mobility. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#3b3b3b" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#3b3b3b" + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#3b3b3b" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: accent-equipped-INNERCLOTHING + color: "#3b3b3b" + - state: loweraccent-equipped-INNERCLOTHING + color: "#3b3b3b" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitQM + name: logistics officer's envirosuit + description: An air-tight suit designed to be used by Plasmamen insane enough to achieve the rank of "Logistics Officer". + components: + - type: Sprite + layers: + - state: icon + color: "#bb934b" + - state: accent-icon + color: "#ffc000" + - state: accent3_chestonly-icon + color: "#d08200" + - state: clip-icon + color: "#c0c0c0" + - state: clip_right-icon + color: "#a7a7a7" + - state: pants-icon + color: "#8a8a8a" + - state: belt-icon + color: "#6f6f6f" + - state: beltbuckle-icon + color: "#bfbfbf" + - state: buttons-icon + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#bb934b" + - state: accent-inhand-left + color: "#ffc000" + - state: accent3_chestonly-inhand-left + color: "#d08200" + - state: clip-inhand-left + color: "#c0c0c0" + - state: clip_right-inhand-left + color: "#a7a7a7" + - state: pants-inhand-left + color: "#8a8a8a" + - state: belt-inhand-left + color: "#6f6f6f" + - state: beltbuckle-inhand-left + color: "#bfbfbf" + - state: buttons-inhand-left + color: "#535353" + right: + - state: inhand-right + color: "#bb934b" + - state: accent-inhand-right + color: "#ffc000" + - state: accent3_chestonly-inhand-right + color: "#d08200" + - state: clip-inhand-right + color: "#c0c0c0" + - state: clip_right-inhand-right + color: "#a7a7a7" + - state: pants-inhand-right + color: "#8a8a8a" + - state: belt-inhand-right + color: "#6f6f6f" + - state: beltbuckle-inhand-right + color: "#bfbfbf" + - state: buttons-inhand-right + color: "#535353" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#bb934b" + - state: accentalt-equipped-INNERCLOTHING + color: "#ffc000" + - state: accent3_chestonly-equipped-INNERCLOTHING + color: "#d08200" + - state: clip-equipped-INNERCLOTHING + color: "#c0c0c0" + - state: clip_right-equipped-INNERCLOTHING + color: "#a7a7a7" + - state: cuffs-equipped-INNERCLOTHING + color: "#d08200" + - state: cuffs_upper-equipped-INNERCLOTHING + color: "#6e6e6e" + - state: pants-equipped-INNERCLOTHING + color: "#8a8a8a" + - state: belt-equipped-INNERCLOTHING + color: "#6f6f6f" + - state: beltbuckle-equipped-INNERCLOTHING + color: "#bfbfbf" + - state: buttons-equipped-INNERCLOTHING + color: "#535353" + - state: loweraccent-equipped-INNERCLOTHING + color: "#ffc000" + - state: shoesdark-equipped-INNERCLOTHING + color: "#828282" + - state: soles-equipped-INNERCLOTHING + color: "#ffc000" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitBoxing + name: boxing envirosuit + description: Used by Plasmamen boxers. + components: + - type: Sprite + layers: + - state: icon + color: "#eeeeee" + - state: accent3-icon + color: "#a81818" + - state: pants-icon + color: "#a81818" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#eeeeee" + - state: accent3-inhand-left + color: "#a81818" + - state: pants-inhand-left + color: "#a81818" + right: + - state: inhand-right + color: "#eeeeee" + - state: accent3-inhand-right + color: "#a81818" + - state: pants-inhand-right + color: "#a81818" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#eeeeee" + - state: accent3-equipped-INNERCLOTHING + color: "#a81818" + - state: pants-equipped-INNERCLOTHING + color: "#a81818" + - state: loweraccent2-equipped-INNERCLOTHING + color: "#eeeeee" + - state: soles-equipped-INNERCLOTHING + color: "#eeeeee" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitAdminAssistant + name: administrative assistant's envirosuit + description: An envirosuit worn by the Administrative Assistant. Smells of burnt coffee. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: pants-icon + color: "#313131" + - state: belt-icon + color: "#4d4d4d" + - state: accent-icon + color: "#315266" + - state: tie-icon + color: "#315266" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: pants-inhand-left + color: "#313131" + - state: belt-inhand-left + color: "#4d4d4d" + - state: accent-inhand-left + color: "#315266" + - state: tie-inhand-left + color: "#315266" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: pants-inhand-right + color: "#313131" + - state: belt-inhand-right + color: "#4d4d4d" + - state: accent-inhand-right + color: "#315266" + - state: tie-inhand-right + color: "#315266" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: pants-equipped-INNERCLOTHING + color: "#313131" + - state: belt-equipped-INNERCLOTHING + color: "#4d4d4d" + - state: accent-equipped-INNERCLOTHING + color: "#315266" + - state: loweraccent-equipped-INNERCLOTHING + color: "#315266" + - state: tie-equipped-INNERCLOTHING + color: "#315266" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitBlackPink + name: black pink envirosuit + description: Black pink envirosuit in your area! + components: + - type: Sprite + layers: + - state: icon + color: "#292929" + - state: plaintop-icon + color: "#292929" + - state: accent-icon + color: "#f4a1b7" + - state: heart-icon + color: "#f4a1b7" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#292929" + - state: plaintop-inhand-left + color: "#292929" + - state: accent-inhand-left + color: "#f4a1b7" + - state: heart-inhand-left + color: "#f4a1b7" + right: + - state: inhand-right + color: "#292929" + - state: plaintop-inhand-right + color: "#292929" + - state: accent-inhand-right + color: "#f4a1b7" + - state: heart-inhand-right + color: "#f4a1b7" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#292929" + - state: plaintop-equipped-INNERCLOTHING + color: "#292929" + - state: accent-equipped-INNERCLOTHING + color: "#f4a1b7" + - state: heart-equipped-INNERCLOTHING + color: "#f4a1b7" + - state: loweraccent-equipped-INNERCLOTHING + color: "#f4a1b7" + - state: soles-equipped-INNERCLOTHING + color: "#f4a1b7" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitBlackPinkAlt + name: black pink envirosuit + suffix: Alternative + description: Black pink envirosuit in your area! + components: + - type: Sprite + layers: + - state: icon + color: "#f4a1b7" + - state: plaintop-icon + color: "#f4a1b7" + - state: accent-icon + color: "#292929" + - state: heart-icon + color: "#292929" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#f4a1b7" + - state: plaintop-inhand-left + color: "#f4a1b7" + - state: accent-inhand-left + color: "#292929" + - state: heart-inhand-left + color: "#292929" + right: + - state: inhand-right + color: "#f4a1b7" + - state: plaintop-inhand-right + color: "#f4a1b7" + - state: accent-inhand-right + color: "#292929" + - state: heart-inhand-right + color: "#292929" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#f4a1b7" + - state: plaintop-equipped-INNERCLOTHING + color: "#f4a1b7" + - state: accent-equipped-INNERCLOTHING + color: "#292929" + - state: heart-equipped-INNERCLOTHING + color: "#292929" + - state: loweraccent-equipped-INNERCLOTHING + color: "#292929" + - state: soles-equipped-INNERCLOTHING + color: "#292929" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitTrans + name: trans envirosuit + description: The signature envirosuit of Transylvanian Plasmamen. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: accent-icon + color: "#5dd2ff" + - state: heart-icon + color: "#ffb0c0" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#5dd2ff" + - state: heart-inhand-left + color: "#ffb0c0" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#5dd2ff" + - state: heart-inhand-right + color: "#ffb0c0" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: accentalt-equipped-INNERCLOTHING + color: "#5dd2ff" + - state: heart-equipped-INNERCLOTHING + color: "#ffb0c0" + - state: cuffs-equipped-INNERCLOTHING + color: "#ffb0c0" + - state: loweraccent2_top-equipped-INNERCLOTHING + color: "#5dd2ff" + - state: loweraccent2_bottom-equipped-INNERCLOTHING + color: "#ffb0c0" + - state: soles-equipped-INNERCLOTHING + color: "#5dd2ff" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitPrisonGuard + name: prison guard's envirosuit + description: A comfortable, durable, envirosuit made to keep Plasmamen prison staff comfortable and safe. + components: + - type: Sprite + layers: + - state: icon + color: "#d76b00" + - state: accent3-icon + color: "#363636" + - state: accenthighlight-icon + color: "#313e5a" + - state: clip-icon + color: "#860000" + - state: clip_right-icon + color: "#313e5a" + - state: pants-icon + color: "#363636" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d76b00" + - state: accent3-inhand-left + color: "#363636" + - state: accenthighlight-inhand-left + color: "#313e5a" + - state: clip-inhand-left + color: "#860000" + - state: clip_right-inhand-left + color: "#313e5a" + - state: pants-inhand-left + color: "#363636" + right: + - state: inhand-right + color: "#d76b00" + - state: accent3-inhand-right + color: "#363636" + - state: accenthighlight-inhand-right + color: "#313e5a" + - state: clip-inhand-right + color: "#860000" + - state: clip_right-inhand-right + color: "#313e5a" + - state: pants-inhand-right + color: "#363636" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#d76b00" + - state: accent3-equipped-INNERCLOTHING + color: "#363636" + - state: accenthighlight-equipped-INNERCLOTHING + color: "#313e5a" + - state: clip-equipped-INNERCLOTHING + color: "#860000" + - state: clip_right-equipped-INNERCLOTHING + color: "#313e5a" + - state: pants-equipped-INNERCLOTHING + color: "#363636" + - state: loweraccent-equipped-INNERCLOTHING + color: "#d76b00" + - state: shoesdark-equipped-INNERCLOTHING + color: "#363636" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitBrigmedic + name: corpsman envirosuit + description: An envirosuit assigned to corpsmen Plasmamen. + components: + - type: Sprite + layers: + - state: icon + color: "#486782" + - state: accent-icon + color: "#333333" + - state: accent2_chestonly-icon + color: "#3b3b3b" + - state: accenthighlight-icon + color: "#2f74b8" + - state: buttons-icon + color: "#b0bdca" + - state: clip-icon + color: "#860000" + - state: clip_right-icon + color: "#313e5a" + - state: pants-icon + color: "#3b3b3b" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#486782" + - state: accent-inhand-left + color: "#333333" + - state: accent2_chestonly-inhand-left + color: "#3b3b3b" + - state: accenthighlight-inhand-left + color: "#2f74b8" + - state: buttons-inhand-left + color: "#b0bdca" + - state: clip-inhand-left + color: "#860000" + - state: clip_right-inhand-left + color: "#313e5a" + - state: pants-inhand-left + color: "#3b3b3b" + right: + - state: inhand-right + color: "#486782" + - state: accent-inhand-right + color: "#333333" + - state: accent2_chestonly-inhand-right + color: "#3b3b3b" + - state: accenthighlight-inhand-right + color: "#2f74b8" + - state: buttons-inhand-right + color: "#b0bdca" + - state: clip-inhand-right + color: "#860000" + - state: clip_right-inhand-right + color: "#313e5a" + - state: pants-inhand-right + color: "#3b3b3b" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#486782" + - state: accentalt-equipped-INNERCLOTHING + color: "#333333" + - state: accent2_chestonly-equipped-INNERCLOTHING + color: "#3b3b3b" + - state: accenthighlight-equipped-INNERCLOTHING + color: "#2f74b8" + - state: buttons-equipped-INNERCLOTHING + color: "#b0bdca" + - state: clip-equipped-INNERCLOTHING + color: "#860000" + - state: clip_right-equipped-INNERCLOTHING + color: "#313e5a" + - state: cuffs-equipped-INNERCLOTHING + color: "#bfcddb" + - state: pants-equipped-INNERCLOTHING + color: "#3b3b3b" + - state: loweraccent-equipped-INNERCLOTHING + color: "#9ca7b3" + - state: shoesdark-equipped-INNERCLOTHING + color: "#3b3b3b" + - state: soles-equipped-INNERCLOTHING + color: "#bfcddb" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitNanotrasenRepresentative + name: nanotrasen representative envirosuit + description: A black envirosuit worn by officials. + components: + - type: Sprite + layers: + - state: icon + color: "#292929" + - state: accent3_chestonly-icon + color: "#266199" + - state: accent2-icon + color: "#ffce5b" + - state: buttons-icon + color: "#f3f5f4" + - state: belt-icon + color: "#87511b" + - state: beltbuckle-icon + color: "#969696" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#292929" + - state: accent3_chestonly-inhand-left + color: "#266199" + - state: accent2-inhand-left + color: "#ffce5b" + - state: buttons-inhand-left + color: "#f3f5f4" + - state: belt-inhand-left + color: "#87511b" + - state: beltbuckle-inhand-left + color: "#969696" + right: + - state: inhand-right + color: "#292929" + - state: accent3_chestonly-inhand-right + color: "#266199" + - state: accent2-inhand-right + color: "#ffce5b" + - state: buttons-inhand-right + color: "#f3f5f4" + - state: belt-inhand-right + color: "#87511b" + - state: beltbuckle-inhand-right + color: "#969696" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#292929" + - state: accent3_chestonly-equipped-INNERCLOTHING + color: "#266199" + - state: accent2-equipped-INNERCLOTHING + color: "#ffce5b" + - state: buttons-equipped-INNERCLOTHING + color: "#f3f5f4" + - state: cuffs-equipped-INNERCLOTHING + color: "#ffce5b" + - state: cuffs_upper-equipped-INNERCLOTHING + color: "#0057a8" + - state: belt-equipped-INNERCLOTHING + color: "#87511b" + - state: beltbuckle-equipped-INNERCLOTHING + color: "#969696" + - state: loweraccent-equipped-INNERCLOTHING + color: "#266199" + - state: soles-equipped-INNERCLOTHING + color: "#ffce5b" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitMagistrate + name: magistrate envirosuit + description: The envirosuit that doles out justice. + components: + - type: Sprite + layers: + - state: icon + color: "#ebebeb" + - state: plaintop-icon + color: "#ebebeb" + - state: tie-icon + color: "#333333" + - state: tieclip-icon + color: "#e6b952" + - state: accent-icon + color: "#ffce5b" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#634737" + - state: beltbuckle-icon + color: "#ffce5b" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ebebeb" + - state: plaintop-inhand-left + color: "#ebebeb" + - state: tie-inhand-left + color: "#333333" + - state: tieclip-inhand-left + color: "#e6b952" + - state: accent-inhand-left + color: "#ffce5b" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#634737" + - state: beltbuckle-inhand-left + color: "#ffce5b" + right: + - state: inhand-right + color: "#ebebeb" + - state: plaintop-inhand-right + color: "#ebebeb" + - state: tie-inhand-right + color: "#333333" + - state: tieclip-inhand-right + color: "#e6b952" + - state: accent-inhand-right + color: "#ffce5b" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#634737" + - state: beltbuckle-inhand-right + color: "#ffce5b" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ebebeb" + - state: plaintop-equipped-INNERCLOTHING + color: "#ebebeb" + - state: tie-equipped-INNERCLOTHING + color: "#333333" + - state: tieclip-equipped-INNERCLOTHING + color: "#e6b952" + - state: accentalt-equipped-INNERCLOTHING + color: "#ffce5b" + - state: cuffs-equipped-INNERCLOTHING + color: "#634737" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#634737" + - state: beltbuckle-equipped-INNERCLOTHING + color: "#ffce5b" + - state: loweraccent-equipped-INNERCLOTHING + color: "#ffce5b" + - state: soles-equipped-INNERCLOTHING + color: "#634737" + + +# The Tortured Enviroslacks Department (Skubman's Version) +- type: entity + parent: ClothingUniformEnvirosuitBase + id: ClothingUniformEnvirosuitEnviroslacks + name: enviroslacks + description: The pet project of a particularly posh Plasmaman. Professional! + components: + - type: Sprite + sprite: Clothing/Uniforms/Envirosuits/enviroslacks.rsi + - type: Clothing + sprite: Clothing/Uniforms/Envirosuits/enviroslacks.rsi + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksNegative + name: negative enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant has inverted colors. Dapper! + components: + - type: Sprite + layers: + - state: icon + color: "#3f3f3f" + - state: plaintop-icon + color: "#3f3f3f" + - state: tie-icon + color: "#a349a4" + - state: accent-icon + color: "#a349a4" + - state: pants-icon + color: "#f2f2f2" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: plaintop-inhand-left + color: "#3f3f3f" + - state: tie-inhand-left + color: "#a349a4" + - state: accent-inhand-left + color: "#a349a4" + - state: pants-inhand-left + color: "#f2f2f2" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#3f3f3f" + - state: plaintop-inhand-right + color: "#3f3f3f" + - state: tie-inhand-right + color: "#a349a4" + - state: accent-inhand-right + color: "#a349a4" + - state: pants-inhand-right + color: "#f2f2f2" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3f3f3f" + - state: plaintop-equipped-INNERCLOTHING + color: "#3f3f3f" + - state: tie-equipped-INNERCLOTHING + color: "#a349a4" + - state: accentalt-equipped-INNERCLOTHING + color: "#a349a4" + - state: pants-equipped-INNERCLOTHING + color: "#f2f2f2" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksColorRed + name: red enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant comes with red accents. Fancy! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#99211f" + - state: accent-icon + color: "#99211f" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#99211f" + - state: accent-inhand-left + color: "#99211f" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#99211f" + - state: accent-inhand-right + color: "#99211f" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#99211f" + - state: accentalt-equipped-INNERCLOTHING + color: "#99211f" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#99211f" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksColorOrange + name: orange enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant comes with orange accents. Zesty! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#c2680f" + - state: accent-icon + color: "#c2680f" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#c2680f" + - state: accent-inhand-left + color: "#c2680f" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#c2680f" + - state: accent-inhand-right + color: "#c2680f" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#c2680f" + - state: accentalt-equipped-INNERCLOTHING + color: "#c2680f" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#c2680f" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksColorGreen + name: green enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant comes with green accents. Leafy! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#5b991f" + - state: accent-icon + color: "#5b991f" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#5b991f" + - state: accent-inhand-left + color: "#5b991f" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#5b991f" + - state: accent-inhand-right + color: "#5b991f" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#5b991f" + - state: accentalt-equipped-INNERCLOTHING + color: "#5b991f" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#5b991f" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksColorBlue + name: blue enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant comes with blue accents. Cool! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#2b5c99" + - state: accent-icon + color: "#2b5c99" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#2b5c99" + - state: accent-inhand-left + color: "#2b5c99" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#2b5c99" + - state: accent-inhand-right + color: "#2b5c99" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#2b5c99" + - state: accentalt-equipped-INNERCLOTHING + color: "#2b5c99" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#2b5c99" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksColorBrown + name: brown enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant has brown pants. Reminds you of dusty offices. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#a349a4" + - state: accent-icon + color: "#a349a4" + - state: pants-icon + color: "#583f20" + - state: belt-icon + color: "#363636" + - state: beltbuckle_small-icon + color: "#3e3e3e" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#a349a4" + - state: accent-inhand-left + color: "#a349a4" + - state: pants-inhand-left + color: "#583f20" + - state: belt-inhand-left + color: "#363636" + - state: beltbuckle_small-inhand-left + color: "#3e3e3e" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#a349a4" + - state: accent-inhand-right + color: "#a349a4" + - state: pants-inhand-right + color: "#583f20" + - state: belt-inhand-right + color: "#363636" + - state: beltbuckle_small-inhand-right + color: "#3e3e3e" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#a349a4" + - state: accentalt-equipped-INNERCLOTHING + color: "#a349a4" + - state: pants-equipped-INNERCLOTHING + color: "#583f20" + - state: belt-equipped-INNERCLOTHING + color: "#363636" + - state: beltbuckle_small-equipped-INNERCLOTHING + color: "#3e3e3e" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksMNK + name: MNK enviroslacks + description: The iconic enviroslacks, with MNK's signature monochrome aesthetic. Classic! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#363636" + - state: accent-icon + color: "#363636" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#363636" + - state: accent-inhand-left + color: "#363636" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#363636" + - state: accent-inhand-right + color: "#363636" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#363636" + - state: accentalt-equipped-INNERCLOTHING + color: "#363636" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#d6d6d6" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksMNKAlt + name: MNK enviroslacks + description: The iconic enviroslacks, with MNK's signature monochrome aesthetic. Noir! + suffix: Alternative + components: + - type: Sprite + layers: + - state: icon + color: "#3b3b3b" + - state: plaintop-icon + color: "#3b3b3b" + - state: tie-icon + color: "#d6d6d6" + - state: accent-icon + color: "#d6d6d6" + - state: pants-icon + color: "#f2f2f2" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3b3b3b" + - state: plaintop-inhand-left + color: "#3b3b3b" + - state: tie-inhand-left + color: "#d6d6d6" + - state: accent-inhand-left + color: "#d6d6d6" + - state: pants-inhand-left + color: "#f2f2f2" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#3b3b3b" + - state: plaintop-inhand-right + color: "#3b3b3b" + - state: tie-inhand-right + color: "#d6d6d6" + - state: accent-inhand-right + color: "#d6d6d6" + - state: pants-inhand-right + color: "#f2f2f2" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3b3b3b" + - state: plaintop-equipped-INNERCLOTHING + color: "#3b3b3b" + - state: tie-equipped-INNERCLOTHING + color: "#d6d6d6" + - state: accentalt-equipped-INNERCLOTHING + color: "#d6d6d6" + - state: pants-equipped-INNERCLOTHING + color: "#f2f2f2" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#424242" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitEnviroslacksPsychologist + name: psychologist enviroslacks + description: The pet project of a particularly posh Plasmaman, this variant was made for the psychologist. Mind-boggling! + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: plaintop-icon + color: "#ffffff" + - state: tie-icon + color: "#5ba0cf" + - state: accent-icon + color: "#5ba0cf" + - state: pants-icon + color: "#292929" + - state: belt-icon + color: "#737373" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: plaintop-inhand-left + color: "#ffffff" + - state: tie-inhand-left + color: "#5ba0cf" + - state: accent-inhand-left + color: "#5ba0cf" + - state: pants-inhand-left + color: "#292929" + - state: belt-inhand-left + color: "#737373" + right: + - state: inhand-right + color: "#ffffff" + - state: plaintop-inhand-right + color: "#ffffff" + - state: tie-inhand-right + color: "#5ba0cf" + - state: accent-inhand-right + color: "#5ba0cf" + - state: pants-inhand-right + color: "#292929" + - state: belt-inhand-right + color: "#737373" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: plaintop-equipped-INNERCLOTHING + color: "#ffffff" + - state: tie-equipped-INNERCLOTHING + color: "#5ba0cf" + - state: accentalt-equipped-INNERCLOTHING + color: "#5ba0cf" + - state: pants-equipped-INNERCLOTHING + color: "#292929" + - state: belt-equipped-INNERCLOTHING + color: "#737373" + - state: loweraccent-equipped-INNERCLOTHING + color: "#5ba0cf" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +# Color envirosuits +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorWhite + name: white envirosuit + description: A generic white jumpsuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#ffffff" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffffff" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#ffffff" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffffff" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorGrey + name: grey envirosuit + description: A tasteful grey envirosuit that reminds you of the good old days. + components: + - type: Sprite + layers: + - state: icon + color: "#b3b3b3" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#b3b3b3" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#b3b3b3" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#b3b3b3" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorBlack + name: black envirosuit + description: A generic black envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#3f3f3f" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#3f3f3f" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3f3f3f" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorRed + name: red envirosuit + description: A dark green envirosuit. + components: + - type: Sprite + layers: + - state: icon + color: "#d1423f" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d1423f" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#d1423f" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#d1423f" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorGreen + name: green envirosuit + description: A generic green envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#9ed63a" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9ed63a" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#9ed63a" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9ed63a" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorDarkGreen + name: dark green envirosuit + description: A generic dark green envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#79CC26" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#79CC26" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#79CC26" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorBlue + name: blue envirosuit + description: A generic blue envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#52aecc" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#52aecc" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#52aecc" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#52aecc" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorDarkBlue + name: dark blue envirosuit + description: A generic dark blue envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#3285ba" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3285ba" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#3285ba" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3285ba" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorTeal + name: teal envirosuit + description: A generic teal envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#77f3b7" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#77f3b7" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#77f3b7" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#77f3b7" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorMaroon + name: maroon envirosuit + description: A generic maroon envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#cc295f" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#cc295f" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#cc295f" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#cc295f" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorPink + name: pink envirosuit + description: >- + "Plasmamen can't slay" and other jokes you can tell yourself. + components: + - type: Sprite + layers: + - state: icon + color: "#ff8cff" + - state: accent-icon + color: "#8b3e8c" + - state: corneraccent-icon + color: "#8b3e8c" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8cff" + - state: accent-inhand-left + color: "#8b3e8c" + - state: corneraccent-inhand-left + color: "#8b3e8c" + right: + - state: inhand-right + color: "#ff8cff" + - state: accent-inhand-right + color: "#8b3e8c" + - state: corneraccent-inhand-right + color: "#8b3e8c" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8cff" + - state: accent-equipped-INNERCLOTHING + color: "#8b3e8c" + - state: loweraccent-equipped-INNERCLOTHING + color: "#8b3e8c" + - state: corneraccent-equipped-INNERCLOTHING + color: "#8b3e8c" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorYellow + name: yellow envirosuit + description: A generic yellow envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#ffe14d" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffe14d" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#ffe14d" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffe14d" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorPurple + name: purple envirosuit + description: A generic purple envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#9f70cc" + - state: accent-icon + color: "#843b85" + - state: corneraccent-icon + color: "#843b85" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9f70cc" + - state: accent-inhand-left + color: "#843b85" + - state: corneraccent-inhand-left + color: "#843b85" + right: + - state: inhand-right + color: "#9f70cc" + - state: accent-inhand-right + color: "#843b85" + - state: corneraccent-inhand-right + color: "#843b85" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9f70cc" + - state: accent-equipped-INNERCLOTHING + color: "#843b85" + - state: loweraccent-equipped-INNERCLOTHING + color: "#843b85" + - state: corneraccent-equipped-INNERCLOTHING + color: "#843b85" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorOrange + name: orange envirosuit + description: Don't wear this near paranoid security officers. + components: + - type: Sprite + layers: + - state: icon + color: "#ff8c19" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8c19" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#ff8c19" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8c19" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorLightBrown + name: light brown envirosuit + description: A generic light brown envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#a17229" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a17229" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#a17229" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#a17229" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" + +- type: entity + parent: ClothingUniformEnvirosuitCustomBase + id: ClothingUniformEnvirosuitColorBrown + name: brown envirosuit + description: A generic brown envirosuit with no rank markings. + components: + - type: Sprite + layers: + - state: icon + color: "#543e1b" + - state: accent-icon + color: "#a349a4" + - state: corneraccent-icon + color: "#a349a4" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#543e1b" + - state: accent-inhand-left + color: "#a349a4" + - state: corneraccent-inhand-left + color: "#a349a4" + right: + - state: inhand-right + color: "#543e1b" + - state: accent-inhand-right + color: "#a349a4" + - state: corneraccent-inhand-right + color: "#a349a4" + - type: Clothing + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#543e1b" + - state: accent-equipped-INNERCLOTHING + color: "#a349a4" + - state: loweraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: corneraccent-equipped-INNERCLOTHING + color: "#a349a4" + - state: soles-equipped-INNERCLOTHING + color: "#bababa" diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 988b06de22..0b5107957b 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -127,6 +127,11 @@ bodyType: Static - type: Fixtures fixtures: + # Context / examine fixture + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 slipFixture: shape: !type:PhysShapeAabb @@ -189,6 +194,11 @@ bodyType: Static - type: Fixtures fixtures: + # Context / examine fixture + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 slipFixture: shape: !type:PhysShapeAabb diff --git a/Resources/Prototypes/Entities/Effects/weapon_arc.yml b/Resources/Prototypes/Entities/Effects/weapon_arc.yml index 0f3fab0e87..556347f0d9 100644 --- a/Resources/Prototypes/Entities/Effects/weapon_arc.yml +++ b/Resources/Prototypes/Entities/Effects/weapon_arc.yml @@ -127,3 +127,29 @@ state: smash - type: TimedDespawn lifetime: 0.299 + +- type: entity + id: WeaponArcPurplePunch # Not inheriting so we don't have EffectVisuals to delete the entity + categories: [ HideSpawnMenu ] # on LightFade animation complete, which causes a + components: # "Predicting the queued deletion of a networked entity" error on tests. + - type: Sprite + sprite: Effects/arcs.rsi + layers: + - state: punch + color: "#ff80f4" + drawdepth: Effects + - type: WeaponArcVisuals + fadeOut: false + - type: TimedDespawn + lifetime: 0.549 + - type: PointLight + radius: 1.13 + energy: 50 + color: "#ff11d5" + netsync: false + - type: LightFade + rampUpDuration: 0.1 + duration: 0.449 + - type: Tag + tags: + - HideContextMenu diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 794d0fb90c..90ea582271 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -319,6 +319,12 @@ id: NitrogenTankFilled - !type:EntSelector id: DoubleEmergencyNitrogenTankFilled + - !type:GroupSelector + children: + - !type:EntSelector + id: PlasmaTankFilled + - !type:EntSelector + id: DoubleEmergencyPlasmaTankFilled - !type:EntSelector id: EmergencyFunnyOxygenTankFilled weight: 0.5 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml index f6e27c3d18..ef73ae8ef9 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml @@ -169,4 +169,6 @@ - PosterLegitShoukou # Nyanotrasen Poster, see Resources/Prototypes/Nyanotrasen/Entities/Structures/Wallmount/Signs/posters.yml - PosterLegitCornzza # Nyanotrasen Poster, see Resources/Prototypes/Nyanotrasen/Entities/Structures/Wallmount/Signs/posters.yml - PosterLegitFuckAround # DeltaV Poster, see Resources/Prototypes/DeltaV/Entities/Structures/Wallmount/Signs/posters.yml + - PosterLegitOppenhopper + - PosterLegitSafetyMothSSD chance: 1 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/bots.yml b/Resources/Prototypes/Entities/Markers/Spawners/bots.yml index 9f0823f48e..c5241673a1 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/bots.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/bots.yml @@ -26,3 +26,30 @@ prototypes: - MobCleanBot +- type: entity + name: disablerbot spawner + id: SpawnMobDisablerBot + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Silicon/Bots/disablerbot.rsi + state: disablerbot + - type: ConditionalSpawner + prototypes: + - MobDisablerBot + +- type: entity + name: batonbot spawner + id: SpawnMobBatonBot + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Silicon/Bots/batonbot.rsi + state: batonbot + - type: ConditionalSpawner + prototypes: + - MobBatonBot diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index 3a0977c4ad..f9bc96fba6 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -101,9 +101,6 @@ name: ghost-role-information-loneop-name description: ghost-role-information-loneop-description rules: ghost-role-information-loneop-rules - raffle: - settings: default - - type: GhostRoleAntagSpawner - type: Sprite sprite: Markers/jobs.rsi layers: diff --git a/Resources/Prototypes/Entities/Markers/atmos_blocker.yml b/Resources/Prototypes/Entities/Markers/atmos_blocker.yml index a5e91e6e53..011e49696e 100644 --- a/Resources/Prototypes/Entities/Markers/atmos_blocker.yml +++ b/Resources/Prototypes/Entities/Markers/atmos_blocker.yml @@ -99,3 +99,12 @@ state: freeze - type: AtmosFixMarker mode: 6 + +- type: entity + parent: AtmosFixNitrogenMarker + id: AtmosFixVoxMarker + suffix: Vox Atmosphere + description: "Nitrogen @ 101 kPa, 20C" + components: + - type: AtmosFixMarker + mode: 7 diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml index 77b0ba3d0e..0eb4d207a9 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml @@ -2,7 +2,8 @@ id: EarringsStudLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -16,7 +17,8 @@ id: EarringsStudRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -30,7 +32,8 @@ id: EarringsHeavyLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -44,7 +47,8 @@ id: EarringsHeavyRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -58,7 +62,8 @@ id: EarringsDropBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -72,7 +77,8 @@ id: EarringsDropBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -86,7 +92,8 @@ id: EarringsDropColoredLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -102,7 +109,8 @@ id: EarringsDropColoredRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -118,7 +126,8 @@ id: EarringsDropLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -134,7 +143,8 @@ id: EarringsDropLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -150,7 +160,8 @@ id: EarringsCrescentLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -164,7 +175,8 @@ id: EarringsCrescentRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -178,7 +190,8 @@ id: EarringsBangleLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -192,7 +205,8 @@ id: EarringsBangleRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -206,7 +220,8 @@ id: EarringsHoopBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -220,7 +235,8 @@ id: EarringsHoopBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -234,7 +250,8 @@ id: EarringsHoopMiniLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -248,7 +265,8 @@ id: EarringsHoopMiniRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -262,7 +280,8 @@ id: EarringsCrossBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -276,7 +295,8 @@ id: EarringsCrossBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -290,7 +310,8 @@ id: EarringsCrossSaintPeterLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -304,7 +325,8 @@ id: EarringsCrossSaintPeterRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -318,7 +340,8 @@ id: EarringsGemstoneBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -334,7 +357,8 @@ id: EarringsGemstoneBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -350,7 +374,8 @@ id: EarringsGemstoneLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -366,7 +391,8 @@ id: EarringsGemstoneLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -382,7 +408,8 @@ id: EarringsGemstoneDoubleLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -400,7 +427,8 @@ id: EarringsGemstoneDoubleRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -418,7 +446,8 @@ id: EarringsDangleBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -434,7 +463,8 @@ id: EarringsDangleBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -450,7 +480,8 @@ id: EarringsDangleLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -466,7 +497,8 @@ id: EarringsDangleLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -482,7 +514,8 @@ id: EarringsEightLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -496,7 +529,8 @@ id: EarringsEightRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -510,7 +544,8 @@ id: EarringsCrystalBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -526,7 +561,8 @@ id: EarringsCrystalBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -542,7 +578,8 @@ id: EarringsCrystalLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: @@ -558,7 +595,8 @@ id: EarringsCrystalLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Lamia] + speciesRestriction: [Moth, Vox, Rodentia, Shadowkin, Plasmaman, Chitinid, Tajaran] + invertSpeciesRestriction: true coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml index eb1723eb23..042726ad11 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml @@ -418,3 +418,17 @@ sprites: - sprite: Mobs/Customization/face.rsi state: neck_thick_m + +- type: marking + id: IronJaw + bodyPart: Face + markingCategory: Face + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne, Lamia] + coloring: + default: + type: + !type:EyeColoring + negative: true + sprites: + - sprite: _ADT/Mobs/Customization/augments/headaugs.rsi + state: iron_jaw diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml index c304e9c531..9da32ae509 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml @@ -2,7 +2,7 @@ id: GauzeLefteyePatch bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -16,7 +16,7 @@ id: GauzeLefteyePad bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -30,7 +30,7 @@ id: GauzeRighteyePatch bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -44,7 +44,7 @@ id: GauzeRighteyePad bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -58,7 +58,7 @@ id: GauzeBlindfold bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Harpy, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Harpy, Vulpkanin + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Harpy, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Harpy, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -72,7 +72,7 @@ id: GauzeShoulder bodyPart: Chest markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -86,7 +86,7 @@ id: GauzeStomach bodyPart: Chest markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -100,7 +100,7 @@ id: GauzeUpperArmRight bodyPart: RArm markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -114,7 +114,7 @@ id: GauzeLowerArmRight bodyPart: RArm, RHand markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -128,7 +128,7 @@ id: GauzeLeftArm bodyPart: LArm, LHand markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -142,7 +142,7 @@ id: GauzeLowerLegLeft bodyPart: LFoot markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -156,7 +156,7 @@ id: GauzeUpperLegLeft bodyPart: LLeg markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -170,7 +170,7 @@ id: GauzeUpperLegRight bodyPart: RLeg markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -184,7 +184,7 @@ id: GauzeLowerLegRight bodyPart: RFoot markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -198,7 +198,7 @@ id: GauzeBoxerWrapRight bodyPart: RHand markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -212,7 +212,7 @@ id: GauzeBoxerWrapLeft bodyPart: LHand markingCategory: Overlay - speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Vulpkanin; Einstein Engines - Tajaran coloring: default: type: @@ -222,6 +222,20 @@ - sprite: Mobs/Customization/gauze.rsi state: gauze_boxerwrap_l +- type: marking + id: GauzeHead + bodyPart: Head + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin, Arachne, Lamia] # Delta V - Felinid, Oni, Vulpkanin # EE - Arachne, Lamia + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_head + # Lizard Specific Markings - type: marking id: GauzeLizardLefteyePatch @@ -298,7 +312,7 @@ id: GauzeMothBlindfold bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -312,7 +326,7 @@ id: GauzeMothShoulder bodyPart: Chest markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -326,7 +340,7 @@ id: GauzeMothStomach bodyPart: Chest markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -340,7 +354,7 @@ id: GauzeMothLeftEyePatch bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -354,7 +368,7 @@ id: GauzeMothLeftEyePad bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -368,7 +382,7 @@ id: GauzeMothRightEyePatch bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -382,7 +396,7 @@ id: GauzeMothRightEyePad bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -396,7 +410,7 @@ id: GauzeMothUpperArmRight bodyPart: RArm markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -410,7 +424,7 @@ id: GauzeMothUpperArmLeft bodyPart: LArm markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -424,7 +438,7 @@ id: GauzeMothUpperLegRight bodyPart: RLeg markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -438,7 +452,7 @@ id: GauzeMothUpperLegLeft bodyPart: LLeg markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -452,7 +466,7 @@ id: GauzeMothLowerLegRight bodyPart: RFoot markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: @@ -466,7 +480,7 @@ id: GauzeMothLowerLegLeft bodyPart: LFoot markingCategory: Overlay - speciesRestriction: [Moth] + speciesRestriction: [Moth, Chitinid] # Delta V - Chitinid coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index aa983583c5..af0674eb76 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -54,6 +54,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: bedheadv3 +- type: marking + id: HumanHairPulato + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: pulato - type: marking id: HumanHairLongBedhead bodyPart: Hair @@ -1349,3 +1356,31 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: tailed +- type: marking + id: HumanHairClassicLong2 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classiclong2 +- type: marking + id: HumanHairClassicLong3 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classiclong3 +- type: marking + id: HumanHairShaped + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shaped +- type: marking + id: HumanHairLongBow + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longbow diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/plasmaman_wings.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/plasmaman_wings.yml new file mode 100644 index 0000000000..a66528a75a --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/plasmaman_wings.yml @@ -0,0 +1,8 @@ +- type: marking + id: WingsSkeleton + bodyPart: Wings + markingCategory: Wings + speciesRestriction: [Plasmaman] + sprites: + - sprite: _SimpleStation/Mobs/Customization/wings64x34.rsi + state: skeleton diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/pointy_ears.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/pointy_ears.yml index 53a0beac3f..9f58b1aa08 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/pointy_ears.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/pointy_ears.yml @@ -83,7 +83,7 @@ bodyPart: HeadSide markingCategory: HeadSide forcedColoring: true - speciesRestriction: [Oni, Harpy, Arachne, Lamia] + speciesRestriction: [Oni] sprites: - sprite: Mobs/Customization/pointy_ears.rsi state: pointy_ears_none diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml index 150c6278d0..61186f4066 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml @@ -2,7 +2,7 @@ id: ScarEyeRight bodyPart: Head markingCategory: Head - speciesRestriction: [Human, Dwarf, Felinid, Harpy, Oni, Arachne, Lamia] # Delta V - Felinid, Oni, Harpy + speciesRestriction: [Human, Dwarf, Felinid, Harpy, Oni, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Harpy; Einstein Engines - Tajaran followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi @@ -12,7 +12,7 @@ id: ScarEyeLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Human, Dwarf, Felinid, Harpy, Oni, Arachne, Lamia] # Delta V - Felinid, Oni, Harpy + speciesRestriction: [Human, Dwarf, Felinid, Harpy, Oni, Arachne, Lamia, Tajaran] # Delta V - Felinid, Oni, Harpy; Einstein Engines - Tajaran followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi @@ -22,7 +22,7 @@ id: ScarTopSurgeryShort bodyPart: Chest markingCategory: Chest - speciesRestriction: [Human, Dwarf, Felinid, Oni, Arachne, Lamia] + speciesRestriction: [Human, Dwarf, Felinid, Oni, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sexRestriction: [Male] followSkinColor: true sprites: @@ -33,7 +33,7 @@ id: ScarTopSurgeryLong bodyPart: Chest markingCategory: Chest - speciesRestriction: [Human, Dwarf, Felinid, Oni, Arachne, Lamia] + speciesRestriction: [Human, Dwarf, Felinid, Oni, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sexRestriction: [Male] followSkinColor: true sprites: @@ -44,7 +44,7 @@ id: ScarChest bodyPart: Chest markingCategory: Chest - speciesRestriction: [Human, Dwarf, Felinid, Oni, Arachne, Lamia] + speciesRestriction: [Human, Dwarf, Felinid, Oni, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml index 5aaf5d4870..304726411b 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml @@ -114,7 +114,7 @@ id: TattooEyeRight bodyPart: Eyes markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Felinid, Oni, Harpy, Lamia] # Delta V - Felinid, Oni, Harpy + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Felinid, Oni, Harpy, Lamia, Plasmaman] # Delta V - Felinid, Oni, Harpy coloring: default: type: @@ -128,7 +128,7 @@ id: TattooEyeLeft bodyPart: Eyes markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Felinid, Oni, Harpy, Lamia] # Delta V - Felinid, Oni, Harpy + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Felinid, Oni, Harpy, Lamia, Plasmaman] # Delta V - Felinid, Oni, Harpy coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml index b491d9b918..bd416eb7fb 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml @@ -42,7 +42,7 @@ id: CyberLimbsMarkingBishopLArm bodyPart: LArm markingCategory: LeftArm - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: l_arm-primary @@ -55,7 +55,7 @@ id: CyberLimbsMarkingBishopLHand bodyPart: LHand markingCategory: LeftHand - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: l_hand @@ -64,7 +64,7 @@ id: CyberLimbsMarkingBishopLLeg bodyPart: LLeg markingCategory: LeftLeg - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: l_leg-primary @@ -76,7 +76,7 @@ id: CyberLimbsMarkingBishopLFoot bodyPart: LFoot markingCategory: LeftFoot - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: l_foot @@ -87,7 +87,7 @@ id: CyberLimbsMarkingBishopRArm bodyPart: RArm markingCategory: RightArm - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: r_arm-primary @@ -101,7 +101,7 @@ id: CyberLimbsMarkingBishopRHand bodyPart: RHand markingCategory: RightHand - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: r_hand @@ -110,7 +110,7 @@ id: CyberLimbsMarkingBishopRLeg bodyPart: RLeg markingCategory: RightLeg - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: r_leg-primary @@ -122,7 +122,7 @@ id: CyberLimbsMarkingBishopRFoot bodyPart: RFoot markingCategory: RightFoot - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi state: r_foot diff --git a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml index e907975116..abac4e6d53 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml @@ -37,7 +37,7 @@ id: CyberLimbsMarkingHesphiastosLArm bodyPart: LArm markingCategory: LeftArm - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: l_arm-1 @@ -48,7 +48,7 @@ id: CyberLimbsMarkingHesphiastosLHand bodyPart: LHand markingCategory: LeftHand - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: l_hand-1 @@ -59,7 +59,7 @@ id: CyberLimbsMarkingHesphiastosLLeg bodyPart: LLeg markingCategory: LeftLeg - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: l_leg-1 @@ -71,7 +71,7 @@ id: CyberLimbsMarkingHesphiastosLFoot bodyPart: LFoot markingCategory: LeftFoot - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: l_foot-1 @@ -84,7 +84,7 @@ id: CyberLimbsMarkingHesphiastosRArm bodyPart: RArm markingCategory: RightArm - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: r_arm-1 @@ -96,7 +96,7 @@ id: CyberLimbsMarkingHesphiastosRHand bodyPart: RHand markingCategory: RightHand - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Arachne, Lamia, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: r_hand-1 @@ -108,7 +108,7 @@ id: CyberLimbsMarkingHesphiastosRLeg bodyPart: RLeg markingCategory: RightLeg - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: r_leg-1 @@ -120,7 +120,7 @@ id: CyberLimbsMarkingHesphiastosRFoot bodyPart: RFoot markingCategory: RightFoot - speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] + speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian, Tajaran] # Einstein Engines - Tajaran sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi state: r_foot-1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/batonbot.yml b/Resources/Prototypes/Entities/Mobs/NPCs/batonbot.yml new file mode 100644 index 0000000000..0e85f7538e --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/batonbot.yml @@ -0,0 +1,75 @@ +- type: entity + parent: MobSiliconBase + id: MobBatonBot + name: batonbot + description: Defends the station from hostile wildlife. + components: + - type: Sprite + sprite: Mobs/Silicon/Bots/batonbot.rsi + state: batonbot + - type: Construction + graph: BatonBot + node: bot + - type: SentienceTarget + flavorKind: station-event-random-sentience-flavor-mechanical + - type: UseDelay + delay: 1 + - type: NpcFactionMember + factions: + - NanoTrasen + - type: CombatMode + - type: Stunbaton + energyPerUse: 0 + - type: MeleeWeapon + altDisarm: false + soundHit: + path: /Audio/Weapons/egloves.ogg + angle: 0 + animation: WeaponArcPunch + damage: + types: + Shock: 4 + - type: StaminaDamageOnHit + damage: 20 + sound: /Audio/Weapons/egloves.ogg + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:TriggerBehavior + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + ProximitySensor: + min: 1 + max: 1 + - !type:SpawnEntitiesBehavior + spawn: + Stunbaton: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: MovementSpeedModifier + baseWalkSpeed: 2 + baseSprintSpeed: 3 + - type: HTN + rootTask: + task: BatonbotCompound + blackboard: + AttackDelayDeviation: !type:Single + 0.3 + - type: InteractionPopup + interactSuccessString: petting-success-batonbot + interactFailureString: petting-failure-batonbot + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/disablerbot.yml b/Resources/Prototypes/Entities/Mobs/NPCs/disablerbot.yml new file mode 100644 index 0000000000..d0470e09b3 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/disablerbot.yml @@ -0,0 +1,80 @@ +- type: entity + parent: MobSiliconBase + id: MobDisablerBot + name: disablerbot + description: Defends the station from hostile wildlife. + components: + - type: StaticPrice + price: 545 + - type: Sprite + sprite: Mobs/Silicon/Bots/disablerbot.rsi + state: disablerbot + - type: Construction + graph: DisablerBot + node: bot + - type: SentienceTarget + flavorKind: station-event-random-sentience-flavor-mechanical + - type: UseDelay + delay: 1 + - type: NpcFactionMember + factions: + - NanoTrasen + - type: CombatMode + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 300 + - type: Battery + maxCharge: 10000 + startingCharge: 10000 + - type: Gun + fireRate: 1 + minAngle: 2 + maxAngle: 10 + angleIncrease: 2 + angleDecay: 5 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletDisablerSmg + fireCost: 1 + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:TriggerBehavior + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + ProximitySensor: + min: 1 + max: 1 + - !type:SpawnEntitiesBehavior + spawn: + WeaponDisabler: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: MovementSpeedModifier + baseWalkSpeed: 2 + baseSprintSpeed: 3 + - type: HTN + rootTask: + task: DisablerbotCompound + blackboard: + AttackDelayDeviation: !type:Single + 0.3 + - type: InteractionPopup + interactSuccessString: petting-success-disablerbot + interactFailureString: petting-failure-disablerbot + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/gladiabot.yml b/Resources/Prototypes/Entities/Mobs/NPCs/gladiabot.yml new file mode 100644 index 0000000000..78faa6f6cb --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/gladiabot.yml @@ -0,0 +1,90 @@ +- type: entity + parent: MobSiliconBase + id: MobGladiaBot + name: gladiabot + description: For glory! + components: + - type: Sprite + sprite: Mobs/Silicon/Bots/gladiabot.rsi + state: GladiabotFFA + - type: Inventory + templateId: gladiabot + - type: InventorySlots + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Construction + graph: GladiaBot + node: bot + - type: Stripping + - type: Strippable + - type: SentienceTarget + flavorKind: station-event-random-sentience-flavor-mechanical + - type: UseDelay + delay: 1 + - type: NpcFactionMember + factions: + - GladiabotFFA + - type: NpcFactionSelector + selectableFactions: + - GladiabotFFA + - GladiabotRed + - GladiabotBlue + - GladiabotGreen + - GladiabotYellow + - type: NpcFactionSpriteStateSetter + - type: CombatMode + - type: MeleeWeapon + altDisarm: false + soundHit: + path: /Audio/Weapons/bladeslice.ogg + angle: 0 + animation: WeaponArcPunch + damage: + types: + Slash: 3 + - type: MobThresholds + thresholds: + 0: Alive + 40: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:TriggerBehavior + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + ProximitySensor: + min: 1 + max: 1 + - !type:SpawnEntitiesBehavior + spawn: + MaterialCloth1: + min: 1 + max: 1 + - !type:EmptyContainersBehaviour + containers: + - head + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: MovementSpeedModifier + baseWalkSpeed: 2 + baseSprintSpeed: 3 + - type: HTN + rootTask: + task: GladiabotCompound + blackboard: + AttackDelayDeviation: !type:Single + 0.3 + - type: InteractionPopup + interactSuccessString: petting-success-gladiabot + interactFailureString: petting-failure-gladiabot + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg diff --git a/Resources/Prototypes/Entities/Mobs/Player/narsie.yml b/Resources/Prototypes/Entities/Mobs/Player/narsie.yml index 9fa58d35f8..84fd15959b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/narsie.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/narsie.yml @@ -52,18 +52,18 @@ restitution: 0.8 density: 99999 mask: - - AllMask + - SingularityLayer layer: - - AllMask + - SingularityLayer EventHorizonConsumer: shape: !type:PhysShapeCircle radius: 5 hard: false mask: - - AllMask + - SingularityLayer layer: - - AllMask + - SingularityLayer - type: Input context: "ghost" - type: MovementIgnoreGravity diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index dab58099a3..fe28ca9c6a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -25,7 +25,7 @@ !type:PhysShapeCircle radius: 0.35 density: 15 - mask: + layer: - GhostImpassable - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Player/plasmaman.yml b/Resources/Prototypes/Entities/Mobs/Player/plasmaman.yml new file mode 100644 index 0000000000..7fa3bf2f86 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/plasmaman.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McPlasma + parent: BaseMobPlasmaman + id: MobPlasmaman diff --git a/Resources/Prototypes/Entities/Mobs/Player/ratvar.yml b/Resources/Prototypes/Entities/Mobs/Player/ratvar.yml index 5a45bff295..62a0860127 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/ratvar.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/ratvar.yml @@ -49,18 +49,18 @@ restitution: 0.8 density: 1 mask: - - AllMask + - SingularityLayer layer: - - AllMask + - SingularityLayer EventHorizonConsumer: shape: !type:PhysShapeCircle radius: 5 hard: false mask: - - AllMask + - SingularityLayer layer: - - AllMask + - SingularityLayer - type: Input context: "ghost" - type: MovementIgnoreGravity diff --git a/Resources/Prototypes/Entities/Mobs/Player/shadowkin.yml b/Resources/Prototypes/Entities/Mobs/Player/shadowkin.yml index 2a58fe5c1f..ee04221335 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/shadowkin.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/shadowkin.yml @@ -2,4 +2,5 @@ save: false name: Urist McShadow parent: MobShadowkinBase - id: MobShadowkin \ No newline at end of file + id: MobShadowkin + description: "Their barrel chest doesn't seem to rise and fall as quickly as a human's, how unnerving." diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 0dfe9d6d8e..15f6bb5011 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -486,8 +486,8 @@ - Incorporeal - BaseMob id: StationAiHolo - name: Hologram - description: A projection of the AI. + name: AI eye + description: The AI's viewer. categories: [ HideSpawnMenu ] suffix: DO NOT MAP components: @@ -501,7 +501,7 @@ - type: Sprite sprite: Mobs/Silicon/station_ai.rsi layers: - - state: default + - state: ai_camera shader: unshaded map: ["base"] - type: LanguageKnowledge diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml index 9747f2436c..5ec9b49a64 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml @@ -39,6 +39,18 @@ # safe: false # - type: EyeProtection # You'll want this if your robot can't wear glasses, like an IPC. # protectionTime: 12 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 185 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer - type: Silicon entityType: enum.SiliconType.Player batteryPowered: false # Needs to also have a battery! @@ -53,7 +65,7 @@ 0: 0.00 - type: Temperature - heatDamageThreshold: 325 + heatDamageThreshold: 1800 # GoobStation: Roughly the melting point of mild steels coldDamageThreshold: 260 currentTemperature: 310.15 specificHeat: 42 @@ -64,6 +76,7 @@ types: Heat: 3 #per second, scales with temperature & other constants atmosTemperatureTransferEfficiency: 0.05 + - type: KillOnOverheat # GoobStation - type: Deathgasp prototype: SiliconDeathgasp needsCritical: false @@ -165,7 +178,7 @@ canResistFire: true damage: types: - Heat: 0.75 #per second, scales with number of fire 'stacks' + Heat: 0 # GoobStation: Replaced fire damage with overheating shutdown # - type: Barotrauma # Not particularly modifiable. In the future, some response to pressure changes would be nice. # damage: # types: @@ -315,6 +328,9 @@ - type: LightningTarget priority: 1 lightningExplode: false + - type: FootPrints + - type: Carriable + - type: LayingDown - type: damageModifierSet @@ -323,5 +339,4 @@ Poison: 0 Cold: 0.2 Heat: 2 - Shock: 2.5 - + Shock: 2.5 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index bb27e46ba4..6f77ae47e7 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -50,6 +50,7 @@ - map: [ "enum.HumanoidVisualLayers.HeadSide" ] - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "enum.HumanoidVisualLayers.Wings" ] - map: [ "mask" ] - map: [ "head" ] - map: [ "pocket1" ] @@ -312,6 +313,11 @@ heatDamage: types: Heat: 1.5 #per second, scales with temperature & other constants + - type: TemperatureSpeed + thresholds: + 293: 0.8 + 280: 0.6 + 260: 0.4 - type: ThermalRegulator metabolismHeat: 800 radiatedHeat: 100 diff --git a/Resources/Prototypes/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/Entities/Mobs/Species/harpy.yml index 42d94b2b78..3650e23814 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/harpy.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/harpy.yml @@ -106,6 +106,16 @@ - type: Inventory speciesId: harpy templateId: digitigrade + displacements: + jumpsuit: + layer: + sprite: Mobs/Species/Harpy/displacement.rsi + state: jumpsuit + copyToShaderParameters: + # Value required, provide a dummy. Gets overridden when applied. + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV - type: HarpyVisuals - type: UltraVision - type: Tag @@ -133,6 +143,7 @@ - type: entity save: false + categories: [ HideSpawnMenu ] name: Urist McBirb parent: MobHumanDummy id: MobHarpyDummy @@ -143,6 +154,16 @@ - type: Inventory speciesId: harpy templateId: digitigrade + displacements: + jumpsuit: + layer: + sprite: Mobs/Species/Harpy/displacement.rsi + state: jumpsuit + copyToShaderParameters: + # Value required, provide a dummy. Gets overridden when applied. + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV - type: Sprite scale: 0.9, 0.9 layers: diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 721724460c..86d8872e3c 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -68,6 +68,11 @@ heatDamage: types: Heat : 3 #per second, scales with temperature & other constants + - type: TemperatureSpeed + thresholds: + 289: 0.8 + 275: 0.6 + 250: 0.4 - type: Sprite # sprite again because we want different layer ordering noRot: true drawdepth: Mobs diff --git a/Resources/Prototypes/Entities/Mobs/Species/plasmaman.yml b/Resources/Prototypes/Entities/Mobs/Species/plasmaman.yml new file mode 100644 index 0000000000..347579a18c --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Species/plasmaman.yml @@ -0,0 +1,159 @@ +- type: entity + parent: BaseMobSpeciesOrganic + id: BaseMobPlasmaman + name: Urist McPlasma + abstract: true + components: + - type: Icon + sprite: Mobs/Species/Plasmaman/parts.rsi + state: full + - type: Sprite + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.Face" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - shader: StencilClear + sprite: Mobs/Species/Human/parts.rsi + state: l_leg + - shader: StencilMask + map: ["enum.HumanoidVisualLayers.StencilMask"] + sprite: Mobs/Customization/masking_helpers.rsi + state: unisex_full + visible: false + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["jumpsuit"] # jumpsuit after foot to show envirosuit shoes + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "innerBelt" ] + - map: [ "innerNeck" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: ["enum.HumanoidVisualLayers.Handcuffs"] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false + - type: Carriable + - type: Body + prototype: Plasmaman + requiredLegs: 2 + gibSound: /Audio/Effects/bone_rattle.ogg + - type: Bloodstream + bloodlossThreshold: 0 + bleedReductionAmount: 0 + maxBleedAmount: 0 + bloodlossDamage: + types: + Blunt: 0 + bloodlossHealDamage: + types: + Blunt: 0 + bloodRefreshAmount: 0 + bloodRegenerationHunger: 0 + bloodRegenerationThirst: 0 + bloodMaxVolume: 0 + - type: Damageable + damageModifierSet: Plasmaman + - type: DamageVisuals + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#555555AA" + Burn: + sprite: Mobs/Effects/burn_damage.rsi + - type: MeleeWeapon + soundHit: + collection: FirePunch + animation: WeaponArcPurplePunch + damage: + types: # oooh scarier extra damage~ + Heat: 5 + Blunt: 2.25 + - type: DamageOnHit + damage: + types: + Heat: 1 + targetParts: [ RightHand, LeftHand ] + - type: Speech + speechVerb: Skeleton + - type: Vocal + sounds: + Male: UnisexPlasmaman + Female: UnisexPlasmaman + Unsexed: UnisexPlasmaman + - type: Butcherable + butcheringType: Spike + spawned: + - id: SheetPlasma1 + amount: 8 + - type: Inventory + templateId: plasmaman + - type: Temperature + heatDamageThreshold: 308 # 35 celsius, -17 from base heat damage threshold + currentTemperature: 270.15 # -3 celsius + specificHeat: 46 + coldDamage: + types: + Cold: 0 + heatDamage: + types: + Heat: 3 + - type: TemperatureSpeed + thresholds: + 243: 0.8 + - type: ThermalRegulator + normalBodyTemperature: 270.15 + - type: Flammable + firestackFade: -0.05 + - type: HumanoidAppearance + species: Plasmaman + hideLayersOnEquip: + - Hair + - Snout + - type: TypingIndicator + proto: plasmaman + - type: LanguageKnowledge + speaks: + - TauCetiBasic + - Calcic + understands: + - TauCetiBasic + - Calcic + - type: FootPrints + +- type: entity + parent: BaseSpeciesDummy + id: MobPlasmamanDummy + categories: [ HideSpawnMenu ] + components: + - type: HumanoidAppearance + species: Plasmaman + - type: Inventory + templateId: plasmaman diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 49716a0580..1564fc78ec 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -58,6 +58,11 @@ heatDamage: types: Heat : 1.5 #per second, scales with temperature & other constants + - type: TemperatureSpeed + thresholds: + 301: 0.8 + 295: 0.6 + 285: 0.4 - type: Wagging - type: LanguageKnowledge speaks: diff --git a/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml b/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml index b76e29d8e3..bdb9ff3b78 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/shadowkin.yml @@ -1,11 +1,7 @@ - type: entity save: false parent: - - MobBloodstream - - MobAtmosStandard - - MobFlammable - - BaseMobSpecies - - MobRespirator + - BaseMobSpeciesOrganic id: MobShadowkinBase name: Urist McShadow abstract: true @@ -15,7 +11,7 @@ - trigger: !type:DamageTypeTrigger damageType: Blunt - damage: 400 + damage: 300 behaviors: - !type:GibBehavior {} - !type:SpawnEntitiesBehavior @@ -227,13 +223,9 @@ - type: Shadowkin - type: Psionic mindbreakingFeedback: shadowkin-blackeye - manaGain: 0.25 - mana: 100 - maxMana: 200 - noMana: shadowkin-tired - type: InnatePsionicPowers powersToAdd: - - DarkSwapPower + - TelepathyPower - type: LanguageKnowledge speaks: - TauCetiBasic @@ -241,6 +233,8 @@ understands: - TauCetiBasic - Marish + - type: PotentiaModifier + potentiaMultiplier: 1.25 - type: Tag tags: - CanPilot diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 5f9812f490..60606a92fc 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -103,6 +103,15 @@ probability: 0.5 - type: FireVisuals alternateState: Standing + - type: TypingIndicator + proto: skeleton + - type: LanguageKnowledge + speaks: + - TauCetiBasic + - Calcic + understands: + - TauCetiBasic + - Calcic - type: FootPrints - type: LayingDown diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 404dbffc7e..d0a1150896 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -764,6 +764,23 @@ materialRequirements: CableHV: 10 +- type: entity + id: SMESAdvancedMachineCircuitboard + parent: BaseMachineCircuitboard + name: advanced SMES machine board + description: A machine printed circuit board for an Advanced SMES. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: power_mod + - type: MachineBoard + prototype: SMESAdvancedEmpty + requirements: + Capacitor: 2 + PowerCell: 4 + materialRequirements: + CableHV: 20 + - type: entity id: CellRechargerCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index e1fd49972c..520f830e80 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -17,6 +17,10 @@ Glass: 230 chemicalComposition: Silicon: 20 + - type: Tag + tags: + - ComputerBoard + - type: entity parent: BaseComputerCircuitboard @@ -26,6 +30,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 @@ -63,6 +76,17 @@ - type: ComputerBoard prototype: ComputerCriminalRecords +- type: entity + parent: BaseComputerCircuitboard + id: PsionicsRecordsComputerCircuitboard + name: psionics registry computer board + description: A computer printed circuit board for a psionics registry computer. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerPsionicsRecords + - type: entity parent: BaseComputerCircuitboard id: StationRecordsComputerCircuitboard @@ -277,6 +301,7 @@ state: cpu_command - type: ComputerBoard prototype: ComputerComms + modularComputerProgramPrototype: CommunicationsConsoleDiskPrototype - type: entity parent: BaseComputerCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/mech.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/mech.yml index f224c1c2bf..47c843281a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/mech.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/mech.yml @@ -78,7 +78,7 @@ components: - type: Sprite sprite: Objects/Misc/module.rsi - state: id_mod + state: mcontroller # Goobstation - type: Tag tags: - HonkerTargetingControlModule diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml index 24da64964c..19d78d14fc 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml @@ -80,7 +80,7 @@ components: - type: Sprite sprite: Objects/Misc/module.rsi - state: generic + state: engineering - type: StaticPrice price: 85 - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index e9108fd341..e8c6816fea 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -131,3 +131,25 @@ sprite: Objects/Devices/gps.rsi state: icon - type: AstroNavCartridge + + +- type: entity + parent: BaseItem + id: PsiWatchCartridge + name: psi watch cartridge + description: A cartridge that tracks the status of currently documented psionics individuals. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-psi + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-psi + - type: UIFragment + ui: !type:PsiWatchUi + - type: Cartridge + programName: psi-watch-program-name + icon: + sprite: DeltaV/Structures/Machines/glimmer_machines.rsi + state: prober + - type: PsiWatchCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml index deac20e05e..c94f5ff7e1 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/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 21d707c915..23894c763c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -369,6 +369,14 @@ - type: Icon sprite: DeltaV/Objects/Devices/pda.rsi # DeltaV - Give Chaplain PDA Epistemics colors state: pda-chaplain + - type: CartridgeLoader # Nyanotrasen - Glimmer Monitor + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - GlimmerMonitorCartridge + - NanoChatCartridge # DeltaV + - PsiWatchCartridge - type: entity name: logistics officer PDA # DeltaV - Logistics Department replacing Cargo @@ -500,6 +508,7 @@ - NewsReaderCartridge - GlimmerMonitorCartridge - NanoChatCartridge + - PsiWatchCartridge - type: entity parent: BasePDA @@ -809,6 +818,7 @@ - NewsReaderCartridge - GlimmerMonitorCartridge - NanoChatCartridge # DeltaV + - PsiWatchCartridge - type: entity parent: BasePDA @@ -832,6 +842,7 @@ - NewsReaderCartridge - GlimmerMonitorCartridge - NanoChatCartridge + - PsiWatchCartridge - type: entity parent: BasePDA @@ -1012,6 +1023,7 @@ - SecWatchCartridge # DeltaV: SecWatch replaces WantedList - StockTradingCartridge # Delta-V - NanoChatCartridge # DeltaV + - PsiWatchCartridge - type: entity parent: CentcomPDA @@ -1131,6 +1143,7 @@ - SecWatchCartridge # DeltaV: SecWatch replaces WantedList - LogProbeCartridge - NanoChatCartridge # DeltaV + - MedTekCartridge - type: entity parent: ERTLeaderPDA @@ -1387,6 +1400,9 @@ accentVColor: "#8900c9" - type: Icon state: pda-seniorresearcher + - type: CartridgeLoader + preinstalled: + - PsiWatchCartridge - type: entity parent: BaseMedicalPDA diff --git a/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml b/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml index 97e244798b..4c1b14e751 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml @@ -156,3 +156,33 @@ - Azaziba requires: - Draconic + +- type: entity + parent: BaseSubdermalImplant + id: ChittinTranslatorImplant + name: chittin translator implant + description: An implant giving the ability to understand and speak Chittin. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + understood: + - Chittin + spoken: + - Chittin + requires: + - TauCetiBasic + +- type: entity + parent: BaseSubdermalImplant + id: SiikMaasTranslatorImplant + name: siik'maas translator implant + description: An implant giving the ability to understand and speak Siik'maas. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + understood: + - SiikMaas + spoken: + - SiikMaas + requires: + - TauCetiBasic diff --git a/Resources/Prototypes/Entities/Objects/Devices/translators.yml b/Resources/Prototypes/Entities/Objects/Devices/translators.yml index a1500ea689..b07e2dc60f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/translators.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/translators.yml @@ -253,4 +253,38 @@ - Azaziba requires: - Draconic - - Azaziba \ No newline at end of file + - Azaziba + +- type: entity + id: ChittinTranslator + parent: [ TranslatorPoweredBase ] + name: Chittin translator + description: Translates speech between Chittin and Tau-Ceti Basic. For talking to Chitinids! + components: + - type: HandheldTranslator + spoken: + - TauCetiBasic + - Chittin + understood: + - TauCetiBasic + - Chittin + requires: + - TauCetiBasic + - Chittin + +- type: entity + id: SiikMaasTranslator + parent: [ TranslatorPoweredBase ] + name: Siik'maas translator + description: Translates speech between Siik'maas and Tau-Ceti Basic. For talking to Tajara! + components: + - type: HandheldTranslator + spoken: + - TauCetiBasic + - SiikMaas + understood: + - TauCetiBasic + - SiikMaas + requires: + - TauCetiBasic + - SiikMaas diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml index edad2b4063..28506ebce6 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml @@ -41,9 +41,12 @@ size: Small storedRotation: 90 +# Entity is renamed to hijack its id +# ID is redefined in Resources/Prototypes/_Harmony/Entities/Objects/Devices/red_phone.yml +# child entites: PhoneInstrumentSyndicate, BananaPhoneInstrument - type: entity parent: BaseHandheldInstrument - id: PhoneInstrument + id: PhoneInstrumentUpstream # Harmony name: red phone description: Should anything ever go wrong... components: @@ -59,12 +62,12 @@ size: Small - type: Prayable sentMessage: prayer-popup-notify-centcom-sent - notifiactionPrefix: prayer-chat-notify-centcom + notificationPrefix: prayer-chat-notify-centcom verb: prayer-verbs-call verbImage: null - type: entity - parent: PhoneInstrument + parent: PhoneInstrumentUpstream # Harmony, due to hijacked 'PhoneInstrument' id: PhoneInstrumentSyndicate name: blood-red phone description: For evil people to call their friends. @@ -74,7 +77,7 @@ state: icon - type: Prayable sentMessage: prayer-popup-notify-syndicate-sent - notifiactionPrefix: prayer-chat-notify-syndicate + notificationPrefix: prayer-chat-notify-syndicate - type: entity parent: BaseHandheldInstrument @@ -150,7 +153,7 @@ quickEquip: false - type: entity - parent: PhoneInstrument + parent: PhoneInstrumentUpstream # Harmony, due to hijacked 'PhoneInstrument' id: BananaPhoneInstrument name: banana phone description: A direct line to the Honkmother. Seems to always go to voicemail. @@ -185,6 +188,6 @@ - ItemMask - type: Prayable sentMessage: prayer-popup-notify-honkmother-sent - notifiactionPrefix: prayer-chat-notify-honkmother + notificationPrefix: prayer-chat-notify-honkmother verb: prayer-verbs-call verbImage: null diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 74355f8522..08f81e18df 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -54,6 +54,22 @@ - ReagentId: Fiber Quantity: 10 +- type: entity + parent: BasePlushie + id: PlushieThrongler + name: throngler plushie + description: A stuffed toy to remind cargo techs of what they can no longer have. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/ThronglerPlushie.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: -135 + attackRate: 10 + - type: Item + size: Ginormous + sprite: Objects/Weapons/Melee/Throngler-in-hand.rsi + - type: entity parent: BasePlushie id: PlushieGhost diff --git a/Resources/Prototypes/Entities/Objects/Misc/extinguisher_refill.yml b/Resources/Prototypes/Entities/Objects/Misc/extinguisher_refill.yml new file mode 100644 index 0000000000..b595862628 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/extinguisher_refill.yml @@ -0,0 +1,34 @@ +- type: entity + parent: BaseItem + id: EnvirosuitExtinguisherRefill + name: envirosuit extinguisher refill + description: A cartridge loaded with a compressed extinguisher mix, used to refill the self-extinguisher on plasma envirosuits. + components: + - type: Sprite + sprite: Objects/Misc/extinguisher_refill.rsi + layers: + - state: icon + - type: Item + sprite: Objects/Misc/extinguisher_refill.rsi + size: Small + - type: SelfExtinguisherRefill + refillAmount: 10 + - type: GuideHelp + guides: [ Plasmaman ] + - type: MeleeWeapon # Same values as double emergency tank + attackRate: 0.9 + wideAnimationRotation: 45 + range: 1.75 + damage: + types: + Blunt: 7.5 + bluntStaminaDamageFactor: 2.5 + heavyRateModifier: 1.25 + heavyDamageBaseModifier: 1.5 + heavyStaminaCost: 10 + maxTargets: 3 + angle: 100 + soundHit: + path: /Audio/Weapons/smash.ogg + - type: DamageOtherOnHit + staminaCost: 5 diff --git a/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml index 53da8e72a5..6c4b84c1f8 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml @@ -90,4 +90,20 @@ name: azaziba translator implant components: - type: Implanter - implant: AzazibaTranslatorImplant \ No newline at end of file + implant: AzazibaTranslatorImplant + +- type: entity + id: ChittinTranslatorImplanter + parent: [ BaseTranslatorImplanter ] + name: chittin translator implant + components: + - type: Implanter + implant: ChittinTranslatorImplant + +- type: entity + id: SiikMaasTranslatorImplanter + parent: [ BaseTranslatorImplanter ] + name: siik'maas translator implant + components: + - type: Implanter + implant: SiikMaasTranslatorImplant diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml index a97ca0f017..e909bac111 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml @@ -15,7 +15,7 @@ - type: entity id: MechEquipmentGrabber - parent: BaseMechEquipment + parent: [ BaseMechEquipment, IndustrialMechEquipment ] # Goobstation name: hydraulic clamp description: Gives the mech the ability to grab things and drag them around. components: @@ -40,18 +40,19 @@ maxContents: 4 grabDelay: 3 grabEnergyDelta: -20 - - type: Tag - tags: - - SmallMech - type: UIFragment ui: !type:MechGrabberUi - type: ContainerContainer containers: item-container: !type:Container + - type: Tag # Goobstation + tags: + - IndustrialMech + - SmallMech - type: entity id: MechEquipmentHorn - parent: BaseMechEquipment + parent: [ BaseMechEquipment, SpecialMechEquipment ] # Goobstation name: mech horn description: An enhanced bike horn that plays a hilarious array of sounds for the enjoyment of the crew. HONK! components: @@ -69,4 +70,3 @@ ui: !type:MechSoundboardUi - type: UseDelay delay: 0.5 - # TODO: tag as being for H.O.N.K. only!!! diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 9da1e9753f..7a76bf3d0d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -42,6 +42,7 @@ enum.MechUiKey.Key: type: MechBoundUserInterface - type: MeleeWeapon + canWideSwing: false hidden: true attackRate: 1.3333 damage: @@ -83,19 +84,68 @@ mech-pilot-slot: !type:ContainerSlot mech-equipment-container: !type:Container mech-battery-slot: !type:ContainerSlot + paper_label: !type:ContainerSlot # Goobstation - type: Damageable damageContainer: Inorganic - damageModifierSet: Metallic + damageModifierSet: LightArmor # Goobstation - type: FootstepModifier footstepSoundCollection: path: /Audio/Mecha/mechmove03.ogg - type: GuideHelp guides: - Robotics + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 1000 # Goobstation + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:ChangeConstructionNodeBehavior + node: start + - !type:DoActsBehavior + acts: ["Destruction"] + # Goobstation Change Start + - type: UnpoweredFlashlight # Goobstation mech lights for all mechs its unpowered to match hardsuits + - type: PointLight + enabled: false + softness: 5 + autoRot: true + mask: /Textures/Effects/LightMasks/cone.png + radius: 7 + energy: 3 + netsync: false + - type: GenericVisualizer + visuals: + enum.PaperLabelVisuals.HasLabel: + enum.PaperLabelVisuals.Layer: + True: { visible: true } + False: { visible: false } + enum.PaperLabelVisuals.LabelType: + enum.PaperLabelVisuals.Layer: + Paper: { state: paper } + Bounty: { state: bounty } + CaptainsPaper: { state: captains_paper } + Invoice: { state: invoice } + - type: PaperLabel + labelSlot: + insertVerbText: Attach Label + ejectVerbText: Remove Label + whitelist: + components: + - Paper + blacklist: + tags: + - Book + - type: StaticPrice + price: 450 + # Goobstation Change End - type: entity id: MechRipley - parent: BaseMech + parent: [ BaseMech, IndustrialMech ] # Goobstation name: Ripley APLU description: Versatile and lightly armored, the Ripley is useful for almost any heavy work scenario. The "APLU" stands for Autonomous Power Loading Unit. components: @@ -137,9 +187,8 @@ mech-battery-slot: - PowerCellHigh -# TODO: have a whitelist for honker equipment - type: entity - parent: BaseMech + parent: [ BaseMech, SpecialMech ] # Goobstation id: MechHonker name: H.O.N.K. description: "Produced by \"Tyranny of Honk, INC\", this exosuit is designed as heavy clown-support. Used to spread the fun and joy of life. HONK!" @@ -159,6 +208,7 @@ openState: honker-open brokenState: honker-broken mechToPilotDamageMultiplier: 0.5 + airtight: true # Goobstation - Space Honk is real. pilotWhitelist: components: - HumanoidAppearance @@ -174,7 +224,7 @@ - PowerCellHigh - type: entity - parent: BaseMech + parent: [ BaseMech, SmallMech ] # Goobstation id: MechHamtr name: HAMTR description: "An experimental mech which uses a brain–computer interface to connect directly to a hamsters brain." @@ -196,9 +246,6 @@ mechToPilotDamageMultiplier: 0.2 maxEquipmentAmount: 2 airtight: true - equipmentWhitelist: - tags: - - SmallMech pilotWhitelist: tags: - Hamster diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index 6697099631..6ce93793b7 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -78,3 +78,69 @@ id: DefibrillatorOneHandedUnpowered parent: BaseDefibrillator suffix: One-Handed, Unpowered + +- type: entity + id: DefibrillatorCompact # This should be a research item at some point + parent: [ BaseDefibrillator, PowerCellSlotMediumItem ] + name: compact defibrillator + description: Now in fun size! + components: + - type: Sprite + sprite: Objects/Specific/Medical/defibsmall.rsi + layers: + - state: icon + - state: screen + map: [ "enum.ToggleVisuals.Layer" ] + visible: false + shader: unshaded + - state: ready + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: Item + size: Normal + - type: ToggleCellDraw + - type: PowerCellDraw + useRate: 100 + - type: Defibrillator + zapHeal: + types: + Asphyxiation: -40 + doAfterDuration: 6 + - type: DoAfter + - type: UseDelay + +- type: entity + id: DefibrillatorSyndicate + parent: DefibrillatorCompact + name: interdyne defibrillator + description: Doubles as a self-defense weapon against war-crime inclined tiders. + components: + - type: Sprite + sprite: Objects/Specific/Medical/defibsyndi.rsi + layers: + - state: icon + - state: screen + map: [ "enum.ToggleVisuals.Layer" ] + visible: false + shader: unshaded + - state: ready + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: MeleeWeapon + damage: + types: + Blunt: 8 + - type: ItemToggleMeleeWeapon + activatedSoundOnHit: + path: /Audio/Items/Defib/defib_zap.ogg + params: + variation: 0.250 + activatedSoundOnHitNoDamage: + path: /Audio/Items/Defib/defib_zap.ogg + params: + variation: 0.250 + volume: -10 + activatedDamage: + types: + Blunt: 8 + Shock: 16 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index d6f3ee75fa..65d1332bf9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -271,7 +271,6 @@ transferAmount: 20 onlyAffectsMobs: false injectOnly: true - - type: SolutionContainerManager solutions: pen: @@ -284,6 +283,102 @@ - type: Tag tags: [] +- type: entity + name: puncturase auto-injector + parent: ChemicalMedipen + id: PunctAutoInjector + description: A rapid dose of puncturase and tranexamic acid, intended for combat applications. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: punctpen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: punctpen_empty + - type: Hypospray + solutionName: pen + transferAmount: 15 + onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager + solutions: + pen: + maxVol: 15 + reagents: + - ReagentId: Puncturase + Quantity: 10 + - ReagentId: TranexamicAcid + Quantity: 5 + - type: Tag + tags: [] + +- type: entity + name: pyrazine auto-injector + parent: ChemicalMedipen + id: PyraAutoInjector + description: A rapid dose of pyrazine and dermaline, intended for combat applications. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: pyrapen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: pyrapen_empty + - type: Hypospray + solutionName: pen + transferAmount: 20 + onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager + solutions: + pen: + maxVol: 20 + reagents: + - ReagentId: Pyrazine + Quantity: 10 + - ReagentId: Dermaline + Quantity: 10 + - type: Tag + tags: [] + +- type: entity + name: airloss auto-injector + parent: ChemicalMedipen + id: AirlossAutoInjector + description: A rapid dose of saline and dexalin plus, intended to get someone up quickly. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: dexpen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: dexpen_empty + - type: Hypospray + solutionName: pen + transferAmount: 40 + onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager + solutions: + pen: + maxVol: 40 + reagents: + - ReagentId: Saline + Quantity: 20 + - ReagentId: DexalinPlus + Quantity: 20 + - type: Tag + tags: [] + - type: entity name: space medipen parent: ChemicalMedipen diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 4db76a9796..0edf59065e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -134,6 +134,19 @@ - type: Clothing sprite: Objects/Tanks/emergency_red.rsi +- type: entity + parent: EmergencyOxygenTank + id: EmergencyPlasmaTank + name: emergency plasma tank + description: An easily portable tank for emergencies. Contains very little plasma, rated for survival use only. + components: + - type: Sprite + sprite: Objects/Tanks/emergency_red.rsi # TODO: emergency plasma tank sprite + - type: Item + sprite: Objects/Tanks/emergency_red.rsi + - type: Clothing + sprite: Objects/Tanks/emergency_red.rsi + - type: entity parent: EmergencyOxygenTank id: ExtendedEmergencyOxygenTank @@ -164,6 +177,19 @@ - type: Clothing sprite: Objects/Tanks/emergency_extended_red.rsi +- type: entity + parent: ExtendedEmergencyOxygenTank + id: ExtendedEmergencyPlasmaTank + name: extended-capacity emergency plasma tank + description: An emergency tank with extended capacity. Technically rated for prolonged use. + components: + - type: Sprite + sprite: Objects/Tanks/emergency_extended_red.rsi # TODO: extended-capacity emergency plasma tank sprite + - type: Item + sprite: Objects/Tanks/emergency_extended_red.rsi + - type: Clothing + sprite: Objects/Tanks/emergency_extended_red.rsi + - type: entity parent: ExtendedEmergencyOxygenTank id: DoubleEmergencyOxygenTank @@ -201,6 +227,19 @@ - type: Clothing sprite: Objects/Tanks/emergency_double_red.rsi +- type: entity + parent: DoubleEmergencyOxygenTank + id: DoubleEmergencyPlasmaTank + name: plasma internals tank + description: A tank of plasma designed to be internals for Plasmamen. + components: + - type: Sprite + sprite: Objects/Tanks/plasmaman.rsi + - type: Item + sprite: Objects/Tanks/plasmaman.rsi + - type: Clothing + sprite: Objects/Tanks/plasmaman.rsi + - type: entity parent: EmergencyOxygenTank id: EmergencyFunnyOxygenTank @@ -243,7 +282,7 @@ parent: GasTankBase id: PlasmaTank name: plasma tank - description: Contains dangerous plasma. Do not inhale. Extremely flammable. + description: Contains dangerous plasma. Do not inhale, unless you're a plasmaman. Extremely flammable. components: - type: Sprite sprite: Objects/Tanks/plasma.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index fcb41ceef3..4cea55becf 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -187,6 +187,7 @@ - SyndieSet - SleeperSet - CommunicatorSet + - CommunicatorSetPlasmaman - SmugglerSet - type: ActivatableUI key: enum.ThiefBackpackUIKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/toy.yml new file mode 100644 index 0000000000..babbc2648f --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/toy.yml @@ -0,0 +1,12 @@ +- type: entity + parent: MagazineLightRifleBox # It goes in a saw, its funny. + id: MagazineFoamBox + name: ammunition box (foam) + components: + - type: BallisticAmmoProvider + mayTransfer: true + whitelist: + tags: + - BulletFoam + proto: BulletFoam + capacity: 100 \ No newline at end of file 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 2200d6bb22..df4641827b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -529,6 +529,7 @@ tags: - Taser - Sidearm + - WeaponDisabler - type: Sprite sprite: Objects/Weapons/Guns/Battery/disabler.rsi layers: @@ -913,4 +914,4 @@ autoRecharge: true autoRechargeRate: 24 autoRechargePause: true - autoRechargePauseTime: 10 \ No newline at end of file + autoRechargePauseTime: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index e1753ce81e..c9a2972c7a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -234,3 +234,45 @@ whitelist: tags: - CartridgeRifle + +- type: entity + name: Foam Force Astro Ace + parent: [BaseWeaponShotgun, BaseGunWieldable] + id: WeaponRifleFoam + description: A premium foam rifle of the highest quality. Its plastic feels rugged, and its mechanisms sturdy. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Rifles/foam_rifle.rsi + - type: Clothing + sprite: Objects/Weapons/Guns/Rifles/foam_rifle.rsi + - type: Item + sprite: Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi + - type: BallisticAmmoProvider + whitelist: + tags: + - BulletFoam + capacity: 10 + proto: BulletFoam + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed + - type: Gun + fireRate: 2 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Effects/thunk.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/empty.ogg + clumsyProof: true + - type: MeleeWeapon + damage: + types: + Blunt: 0 # Krillions must bubble-wrap the foam rifle + soundHit: + collection: ToySqueak + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 0 + - type: DamageOtherOnHit + staminaCost: 3.5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 356a8031ea..0d7f60d43f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -271,6 +271,23 @@ - state: inhand-right-blade shader: unshaded +- type: entity + name: energy cutlass + parent: EnergyCutlass + id: EnergyCutlassSecurity + description: A sleek energy weapon, its blade hums with volatile plasma, expertly contained to cut through nearly any material. The serial number on the hilt marks this gun as belonging to an NT Security Officer. # how do I make the text blue + suffix: Security Loadouts + components: + - type: MeleeWeapon + attackRate: 0.6666 + - type: ItemToggleMeleeWeapon + activatedDamage: + types: + Slash: 6 + Heat: 12 + - type: GuideHelp + guides: [ SecurityWeapons ] + - type: entity name: double-bladed energy sword parent: EnergySword diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index 3f3ae0258d..cc55aab237 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -243,3 +243,22 @@ - type: ContainerContainer containers: cluster-payload: !type:Container + +- type: entity + parent: GrenadeShrapnel + id: GrenadeFoamDart + name: foam dart grenade + description: Releases a bothersome spray of foam darts that cause severe welching. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/foamdart.rsi + layers: + - state: icon + map: ["Base"] + - state: primed + map: ["enum.TriggerVisualLayers.Base"] + - type: ClusterGrenade + fillPrototype: BulletFoam + maxGrenadesCount: 30 + grenadeType: enum.GrenadeType.Throw + velocity: 70 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 561af78a56..1a63aa5a4d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -9,6 +9,9 @@ layers: - state: stunbaton_off map: [ "enum.ToggleVisuals.Layer" ] + - type: Tag + tags: + - Stunbaton - type: Stunbaton energyPerUse: 50 - type: ItemToggle diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index adda89633f..71bff0f463 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -971,6 +971,15 @@ - type: Wires layoutId: AirlockMedical +- type: entity + parent: AirlockMaintMedLocked + id: AirlockMedicalMorgueMaintLocked + suffix: Morgue, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMorgue ] + - type: entity parent: AirlockMaintMedLocked id: AirlockMaintChemLocked diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index d9e2164490..71c570d1c9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -30,6 +30,8 @@ state: generic - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -40,6 +42,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true, shader: shaded } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: LitOnPowered - type: PointLight radius: 1.5 @@ -75,3 +81,26 @@ understands: - TauCetiBasic - RobotTalk + - type: Electrified + enabled: false + usesApcPower: true + - type: WiresPanel + - type: WiresVisuals + - type: Wires + boardName: wires-board-name-computer + layoutId: Computer +# +# This is overwritten by children, so needs to be defined there +# - type: UserInterface +# interfaces: +# enum.WiresUiKey.Key: +# type: WiresBoundUserInterface + +- type: entity + parent: BaseComputer + id: BaseComputerAiAccess + components: + - type: StationAiWhitelist + - type: Wires + boardName: wires-board-name-computer + layoutId: ComputerAi diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 639fa42d10..191f7dba94 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -1,10 +1,9 @@ - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAlert name: atmospheric alerts computer description: Used to access the station's automated atmospheric alert system. components: - - type: StationAiWhitelist - type: Computer board: AlertsComputerCircuitboard - type: Sprite @@ -17,6 +16,8 @@ state: alert-0 - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: GenericVisualizer visuals: enum.ComputerVisuals.Powered: @@ -33,6 +34,10 @@ 2: { state: alert-1 } 3: { state: alert-2 } 4: { state: alert-2 } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: AtmosAlertsComputer - type: ActivatableUI singleUser: true @@ -41,6 +46,41 @@ interfaces: enum.AtmosAlertsComputerUiKey.Key: type: AtmosAlertsComputerBoundUserInterface + 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 @@ -58,6 +98,8 @@ interfaces: enum.EmergencyConsoleUiKey.Key: type: EmergencyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: PointLight radius: 1.5 energy: 1.6 @@ -79,6 +121,8 @@ interfaces: enum.ShuttleConsoleUiKey.Key: type: ShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: RadarConsole - type: WorldLoader radius: 256 @@ -121,6 +165,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ShuttleConsoleCircuitboard @@ -140,6 +186,8 @@ state: syndishuttle - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Tag tags: - Syndicate @@ -170,6 +218,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: DroneConsole components: - type: CargoShuttle @@ -215,12 +265,11 @@ stealGroup: SalvageShuttleConsoleCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerIFF name: IFF computer description: Allows you to control the IFF characteristics of this vessel. components: - - type: StationAiWhitelist - type: IFFConsole - type: Sprite layers: @@ -233,12 +282,16 @@ state: helm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ActivatableUI key: enum.IFFConsoleUiKey.Key - type: UserInterface interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFCircuitboard @@ -259,16 +312,17 @@ interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFSyndicateCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerPowerMonitoring name: power monitoring computer description: It monitors power levels across the station. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -279,6 +333,8 @@ state: power_monitor - map: ["computerLayerKeys"] state: power_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -300,14 +356,15 @@ interfaces: enum.PowerMonitoringConsoleUiKey.Key: type: PowerMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMedicalRecords name: medical records computer description: This can be used to check medical records. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -318,6 +375,8 @@ state: medcomp - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -326,17 +385,18 @@ board: MedicalRecordsComputerCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCriminalRecords name: criminal records computer description: This can be used to check criminal records. Only security can modify them. components: - - type: StationAiWhitelist - type: CriminalRecordsConsole - type: UserInterface interfaces: enum.CriminalRecordsConsoleKey.Key: type: CriminalRecordsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.CriminalRecordsConsoleKey.Key - type: Sprite @@ -349,6 +409,8 @@ state: explosive - map: ["computerLayerKeys"] state: security_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -362,17 +424,58 @@ - CriminalRecords - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess + id: ComputerPsionicsRecords + name: psionics registry computer + description: This can be used to check psionics registry records. Only epistemics can modify them. + components: + - type: PsionicsRecordsConsole + - type: UserInterface + interfaces: + enum.PsionicsRecordsConsoleKey.Key: + type: PsionicsRecordsConsoleBoundUserInterface + - type: ActivatableUI + key: enum.PsionicsRecordsConsoleKey.Key + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: registry + - map: ["computerLayerKeys"] + state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#1f8c28" + - type: Computer + board: PsionicsRecordsComputerCircuitboard + - type: AccessReader + access: + - [ Chapel ] + - [ Library ] + - [ Mantis ] + - [ ResearchDirector ] + # - type: GuideHelp + # guides: # TODO: Add a guide for Psionics Registry + +- type: entity + parent: BaseComputerAiAccess id: ComputerStationRecords name: station records computer description: This can be used to check station records. components: - - type: StationAiWhitelist - type: GeneralStationRecordConsole - type: UserInterface interfaces: enum.GeneralStationRecordConsoleKey.Key: type: GeneralStationRecordConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.GeneralStationRecordConsoleKey.Key - type: PointLight @@ -386,12 +489,11 @@ - Forensics - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCrewMonitoring name: crew monitoring console description: Used to monitor active health sensors built into most of the crew's uniforms. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -402,6 +504,8 @@ state: crew - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -414,6 +518,8 @@ interfaces: enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewMonitoringConsole - type: DeviceNetwork deviceNetId: Wireless @@ -422,12 +528,11 @@ range: 1200 - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerResearchAndDevelopment name: R&D computer description: A computer used to interface with R&D tools. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -438,6 +543,8 @@ state: rdcomp - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: ResearchConsole - type: ActiveRadio @@ -452,6 +559,8 @@ type: ResearchConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -467,12 +576,11 @@ - Science - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAnalysisConsole name: analysis console description: A computer used to interface with the artifact analyzer. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -483,6 +591,8 @@ state: artifact - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: AnalysisConsole reportEntityId: PaperArtifactAnalyzer @@ -501,6 +611,8 @@ type: AnalysisConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -514,12 +626,11 @@ - Xenoarchaeology - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerId name: ID card computer description: Terminal for programming Nanotrasen employee ID cards to access parts of the station. components: - - type: StationAiWhitelist - type: IdCardConsole privilegedIdSlot: name: id-card-console-privileged-id @@ -545,6 +656,8 @@ interfaces: enum.IdCardConsoleUiKey.Key: type: IdCardConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewManifestViewer ownerKey: enum.IdCardConsoleUiKey.Key - type: Sprite @@ -557,6 +670,8 @@ state: id - map: ["computerLayerKeys"] state: id_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: IDComputerCircuitboard - type: PointLight @@ -574,12 +689,11 @@ IdCardConsole-targetId: !type:ContainerSlot - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: computerBodyScanner name: body scanner computer description: A body scanner. components: - - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 500 - type: Computer @@ -590,12 +704,11 @@ color: "#1f8c28" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerComms name: communications computer description: A computer used to make station wide announcements via keyboard, set the appropriate alert level, and call the emergency shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -606,6 +719,8 @@ state: comm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "Command" ]] - type: CommunicationsConsole @@ -618,6 +733,8 @@ interfaces: enum.CommunicationsConsoleUiKey.Key: type: CommunicationsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CommsComputerCircuitboard - type: PointLight @@ -644,6 +761,8 @@ state: comm_syndie - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "NuclearOperative" ]] - type: CommunicationsConsole @@ -660,12 +779,11 @@ color: "#f71713" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerSolarControl name: solar control computer description: A controller for solar panel arrays. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -676,6 +794,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: SolarControlConsole - type: ActivatableUI key: enum.SolarControlConsoleUiKey.Key @@ -683,6 +803,8 @@ interfaces: enum.SolarControlConsoleUiKey.Key: type: SolarControlConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SolarControlComputerCircuitboard - type: PointLight @@ -691,12 +813,11 @@ color: "#e6e227" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRadar name: mass scanner computer description: A computer for detecting nearby bodies, displaying them by position and mass. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -707,6 +828,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RadarConsole - type: ActivatableUI key: enum.RadarConsoleUiKey.Key @@ -714,6 +837,8 @@ interfaces: enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: RadarConsoleCircuitboard - type: PointLight @@ -723,11 +848,10 @@ - type: entity id: ComputerCargoShuttle - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo shuttle computer description: Used to order the shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -738,6 +862,8 @@ state: supply - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoShuttleConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Shuttle @@ -745,6 +871,8 @@ interfaces: enum.CargoConsoleUiKey.Shuttle: type: CargoShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoShuttleComputerCircuitboard - type: PointLight @@ -759,11 +887,10 @@ - type: entity id: ComputerCargoOrders - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo request computer description: Used to order supplies and approve requests. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -774,6 +901,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoOrderConsole - type: BankClient - type: ActiveRadio @@ -785,6 +914,8 @@ interfaces: enum.CargoConsoleUiKey.Orders: type: CargoOrderConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -808,11 +939,10 @@ - type: entity id: ComputerCargoBounty - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo bounty computer description: Used to manage currently active bounties. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -823,6 +953,8 @@ state: bounty - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoBountyConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Bounty @@ -830,6 +962,8 @@ interfaces: enum.CargoConsoleUiKey.Bounty: type: CargoBountyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoBountyComputerCircuitboard - type: PointLight @@ -843,12 +977,11 @@ - CargoBounties - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCloningConsole name: cloning console computer description: The centerpiece of the cloning system, medicine's greatest accomplishment. It has lots of ports and wires. components: - - type: StationAiWhitelist - type: CloningConsole - type: DeviceList - type: DeviceNetwork @@ -863,6 +996,8 @@ state: dna - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 3100 #We want this to fail first so I transferred most of the scanner and pod's power here. (3500 in total) - type: Computer @@ -882,6 +1017,8 @@ interfaces: enum.CloningConsoleUiKey.Key: type: CloningConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Speech speechVerb: Robotic speechSounds: Pai @@ -894,11 +1031,10 @@ - type: entity id: ComputerSalvageExpedition - parent: BaseComputer + parent: BaseComputerAiAccess name: salvage expeditions computer description: Used to accept salvage missions, if you're tough enough. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -909,6 +1045,8 @@ state: mining - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -919,6 +1057,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: SalvageExpeditionConsole - type: ActivatableUI key: enum.SalvageConsoleUiKey.Expedition @@ -927,6 +1069,8 @@ interfaces: enum.SalvageConsoleUiKey.Expedition: type: SalvageExpeditionConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SalvageExpeditionsComputerCircuitboard - type: PointLight @@ -954,6 +1098,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceCameraMonitorCircuitboard - type: DeviceNetwork @@ -972,6 +1118,8 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -989,6 +1137,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceWirelessCameraMonitorCircuitboard - type: DeviceNetwork @@ -1009,14 +1159,15 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity id: ComputerPalletConsole - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo sale computer description: Used to sell goods loaded onto cargo pallets components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1027,6 +1178,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Anchorable flags: - Anchorable @@ -1037,6 +1190,8 @@ interfaces: enum.CargoPalletConsoleUiKey.Sale: type: CargoPalletConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -1048,12 +1203,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMassMedia name: news manager console description: Write your message to the world! components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1064,6 +1218,8 @@ state: service - map: ["computerLayerKeys"] state: service_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ComputerMassMediaCircuitboard - type: DeviceNetworkRequiresPower @@ -1079,6 +1235,8 @@ interfaces: enum.NewsWriterUiKey.Key: type: NewsWriterBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -1099,6 +1257,8 @@ state: sensors - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -1112,6 +1272,8 @@ interfaces: enum.SensorMonitoringConsoleUiKey.Key: type: SensorMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: DeviceNetwork deviceNetId: AtmosDevices receiveFrequencyId: AtmosMonitor @@ -1124,12 +1286,11 @@ - type: AtmosDevice - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRoboticsControl name: robotics control console description: Used to remotely monitor, disable and destroy the station's cyborgs. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1140,6 +1301,8 @@ state: robot - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RoboticsConsole - type: ActiveRadio channels: @@ -1150,6 +1313,8 @@ interfaces: enum.RoboticsConsoleUiKey.Key: type: RoboticsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: DeviceNetwork @@ -1179,6 +1344,8 @@ state: aiupload - map: [ "computerLayerKeys" ] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 1000 - type: AccessReader 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 539c8a244a..7fe2892b63 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/Machines/chem_master.yml b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml index d78ed1182c..e3c740cf95 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml @@ -86,6 +86,7 @@ - type: SolutionContainerManager solutions: buffer: {} + pillBuffer: {} - type: DumpableSolution solution: buffer unlimited: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index 84ecb08553..234652ed40 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -16,7 +16,8 @@ - SubfloorMask layer: - LowImpassable - hard: false + - type: Physics + canCollide: False - type: ApcPowerReceiver powerLoad: 300 - type: StationAiVision @@ -90,7 +91,7 @@ - type: WiresVisuals - type: Wires boardName: wires-board-name-holopad - layoutId: Holopad + layoutId: Holopad - type: Destructible thresholds: - trigger: @@ -104,7 +105,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 +118,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." @@ -151,7 +152,7 @@ id: HolopadHologram name: hologram categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + suffix: DO NOT MAP components: - type: Transform anchored: true @@ -179,4 +180,4 @@ scrollRate: 0.125 - type: Tag tags: - - HideContextMenu \ No newline at end of file + - HideContextMenu diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 7355c3e5d1..c06f168144 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -200,6 +200,7 @@ - WeaponCapacitorRechargerCircuitboard - HandheldStationMap - ClothingHeadHatWelding + - ProgramDiskUnburnt # Arcadis - Modular Computer System - FauxTileAstroGrass - FauxTileMowedAstroGrass - FauxTileJungleAstroGrass @@ -574,6 +575,17 @@ - AutodocCircuitboard # Shitmed Change - OperatingTableCircuitboard # Shitmed Change - MaterialSiloCircuitboard + - GygaxCentralElectronics + - GygaxPeripheralsElectronics + - GygaxTargetingElectronics + - DurandCentralElectronics + - DurandPeripheralsElectronics + - DurandTargetingElectronics + - ClarkeCentralElectronics + - ClarkePeripheralsElectronics + - SMESAdvancedMachineCircuitboard + - BaseComputerModularCircuitBoard # Arcadis - Modular Computer System + - DiskBurnerMachineCircuitboard # Arcadis - Modular Computer System - type: EmagLatheRecipes emagDynamicRecipes: - ShuttleGunDusterCircuitboard @@ -672,6 +684,10 @@ - RightLegBorgService - HeadBorgService - TorsoBorgService + - MechAirTank # Goobstation + - MechThruster # Goobstation + - PowerCageMedium # Goobstation - Powercell to exosuit fab + - PowerCageSmall # Goobstation - Powercell to exosuit fab dynamicRecipes: - ProximitySensor - BorgModuleLightReplacer @@ -703,6 +719,8 @@ - RipleyRArm - RipleyLLeg - RipleyRLeg + - RipleyMKIIHarness + - RipleyUpgradeKit - MechEquipmentGrabber - HonkerHarness - HonkerLArm @@ -721,6 +739,49 @@ - JetpackBlue - JetpackMini # End Nyano additions + - ClarkeHarness + - ClarkeHead + - ClarkeLArm + - ClarkeRArm + - ClarkeTreads + - DurandHarness + - DurandArmor + - DurandHead + - DurandLArm + - DurandLLeg + - DurandRArm + - DurandRLeg + - GygaxHarness + - GygaxArmor + - GygaxHead + - GygaxLArm + - GygaxLLeg + - GygaxRArm + - GygaxRLeg + - MechEquipmentDrill + - MechEquipmentDrillDiamond + - MechEquipmentKineticAccelerator + - MechEquipmentHonkerBananaMortar + - MechEquipmentHonkerMousetrapMortar + # Goobstation - Modsuits + - ModsuitChestplate + - ModsuitBoots + - ModsuitHelmet + - ModsuitGauntlets + - ModsuitShell + - ModsuitPlatingExternal + - PowerCageHigh # Goobstation - Powercell to exosuit fab + - type: EmagLatheRecipes + emagDynamicRecipes: + - WeaponMechCombatImmolationGun + - WeaponMechCombatSolarisLaser + - WeaponMechCombatFiredartLaser + - WeaponMechCombatUltraRifle + - WeaponMechCombatShotgun + - WeaponMechCombatShotgunIncendiary + - WeaponMechCombatDisabler + - WeaponMechCombatFlashbangLauncher + - WeaponMechCombatMissileRack8 - type: MaterialStorage whitelist: tags: @@ -982,8 +1043,18 @@ - ClothingOuterHardsuitCombatMedical - ClothingOuterHardsuitCombatRiot - ClothingOuterHardsuitCombatAdvanced - - ClothingOuterHardsuitSyndieReverseEngineered + - ClothingOuterHardsuitShanlinUnpainted + - ClothingOuterHardsuitShiweiUnpainted - ClothingOuterHardsuitJuggernautReverseEngineered + - WeaponMechCombatImmolationGun + - WeaponMechCombatSolarisLaser + - WeaponMechCombatFiredartLaser + - WeaponMechCombatUltraRifle + - WeaponMechCombatShotgun + - WeaponMechCombatShotgunIncendiary + - WeaponMechCombatDisabler + - WeaponMechCombatFlashbangLauncher + - WeaponMechCombatMissileRack8 - type: MaterialStorage whitelist: tags: @@ -1126,6 +1197,7 @@ - ChemicalPayload # Nyano - SyringeCryostasis - ClothingEyesNightVisionMedicalGoggles + - EnvirosuitExtinguisherRefill # Shitmed Change - EnergyScalpel - EnergyCautery diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index f13d5af75c..65be5c545c 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -62,7 +62,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_pump.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator + - type: entity parent: GasBinaryBase id: GasVolumePump @@ -111,7 +113,9 @@ examinableAddress: true prefix: device-address-prefix-volume-pump - type: WiredNetworkConnection - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator + - type: entity parent: GasBinaryBase id: GasPassiveGate @@ -140,7 +144,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: GasValve @@ -188,7 +194,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: SignalControlledValve @@ -247,7 +255,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: GasPort @@ -276,7 +286,9 @@ - type: Construction graph: GasBinary node: port - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: GasVentPump id: GasDualPortVentPump @@ -331,7 +343,9 @@ pipeDirection: South - type: AmbientSound enabled: true - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: [ BaseMachine, ConstructibleMachine ] id: GasRecycler @@ -392,7 +406,9 @@ acts: ["Destruction"] - type: Machine board: GasRecyclerMachineCircuitboard - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: HeatExchanger @@ -432,3 +448,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 new file mode 100644 index 0000000000..22b56908ea --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml @@ -0,0 +1,87 @@ +- type: entity + parent: [AirSensorBase, GasPipeBase] + id: GasPipeSensor + name: gas pipe sensor + description: Reports on the status of the gas in the attached pipe network. + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Structures/Piping/Atmospherics/gas_pipe_sensor.rsi + drawdepth: BelowFloor + layers: + - sprite: Structures/Piping/Atmospherics/pipe.rsi + map: [ "enum.PipeVisualLayers.Pipe" ] + state: pipeStraight + - map: ["base"] + state: base + - map: [ "enum.PowerDeviceVisualLayers.Powered" ] + state: lights + shader: unshaded + - type: Appearance + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + False: { state: blank } + True: { state: lights } + - type: AtmosMonitor + monitorsPipeNet: true + - type: GasPipeSensor + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasPipeSensor + - type: ApcPowerReceiver + - type: ExtensionCableReceiver + - type: Construction + graph: GasPipeSensor + node: sensor + - type: NodeContainer + nodes: + monitored: + !type:PipeNode + nodeGroupID: Pipe + pipeDirection: Longitudinal + - type: Tag + tags: + - AirSensor + - Unstackable + +- type: entity + parent: GasPipeSensor + id: GasPipeSensorDistribution + suffix: Distribution + components: + - type: Label + currentLabel: gas-pipe-sensor-distribution-loop + +- type: entity + parent: GasPipeSensor + id: GasPipeSensorWaste + suffix: Waste + components: + - type: Label + currentLabel: gas-pipe-sensor-waste-loop + +- type: entity + parent: GasPipeSensor + id: GasPipeSensorMixedAir + suffix: Mixed air + components: + - type: Label + currentLabel: gas-pipe-sensor-mixed-air + +- type: entity + parent: GasPipeSensor + id: GasPipeSensorTEGHot + suffix: TEG hot + components: + - type: Label + currentLabel: gas-pipe-sensor-teg-hot-loop + +- type: entity + parent: GasPipeSensor + id: GasPipeSensorTEGCold + suffix: TEG cold + components: + - type: Label + currentLabel: gas-pipe-sensor-teg-cold-loop \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index 0025fc5ae1..1501b10b1f 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -53,6 +53,7 @@ - type: NodeContainer - type: AtmosUnsafeUnanchor - type: AtmosPipeColor + - type: AtmosMonitoringConsoleDevice - type: Tag tags: - Pipe diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index 4eec014f11..eff831fa9e 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -25,3 +25,32 @@ - type: Tag tags: - SpreaderIgnore + +- type: entity + id: AtmosDeviceFanDirectional + name: directional fan + description: A thin fan, stopping the movement of gases across it. + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: true + - type: Physics + bodyType: Static + - type: Sprite + sprite: Structures/Piping/Atmospherics/directionalfan.rsi + state: icon + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.48,-0.48,0.48,-0.40" + - type: Airtight + noAirWhenFullyAirBlocked: false + airBlockedDirection: + - South + - type: Clickable + - type: Tag + tags: + - SpreaderIgnore 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 5fe99b26ca..3914e10cab 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -21,7 +21,7 @@ - type: CollideOnAnchor - type: entity - parent: GasUnaryBase + parent: [GasUnaryBase, AirSensorBase] id: GasVentPump name: air vent description: Has a valve and a pump attached to it. @@ -31,28 +31,7 @@ - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork - deviceNetId: AtmosDevices - receiveFrequencyId: AtmosMonitor - transmitFrequencyId: AtmosMonitor prefix: device-address-prefix-vent - sendBroadcastAttemptEvent: true - examinableAddress: true - - type: WiredNetworkConnection - - type: DeviceNetworkRequiresPower - - type: AtmosDevice - - type: AtmosMonitor - temperatureThresholdId: stationTemperature - pressureThresholdId: stationPressure - gasThresholdPrototypes: - Oxygen: stationOxygen - Nitrogen: ignore - CarbonDioxide: stationCO2 - Plasma: stationPlasma # everything below is usually bad - Tritium: danger - WaterVapor: stationWaterVapor - Ammonia: stationAmmonia - NitrousOxide: stationNO - Frezon: danger - type: Tag tags: - GasVent @@ -89,7 +68,9 @@ sound: path: /Audio/Ambience/Objects/gas_vent.ogg - type: Weldable - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: GasUnaryBase id: GasPassiveVent @@ -115,9 +96,11 @@ - type: Construction graph: GasUnary node: passivevent - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity - parent: GasUnaryBase + parent: [GasUnaryBase, AirSensorBase] id: GasVentScrubber name: air scrubber description: Has a valve and pump attached to it. @@ -127,25 +110,7 @@ - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork - deviceNetId: AtmosDevices - receiveFrequencyId: AtmosMonitor - transmitFrequencyId: AtmosMonitor prefix: device-address-prefix-scrubber - examinableAddress: true - - type: DeviceNetworkRequiresPower - - type: AtmosMonitor - temperatureThresholdId: stationTemperature - pressureThresholdId: stationPressure - gasThresholdPrototypes: - Oxygen: stationOxygen - Nitrogen: ignore - CarbonDioxide: stationCO2 - Plasma: stationPlasma # everything below is usually bad - Tritium: danger - WaterVapor: stationWaterVapor - Ammonia: stationAmmonia - NitrousOxide: stationNO - Frezon: danger - type: Tag tags: - GasScrubber @@ -183,7 +148,9 @@ sound: path: /Audio/Ambience/Objects/gas_vent.ogg - type: Weldable - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentScrubber + - type: entity parent: GasUnaryBase id: GasOutletInjector @@ -222,7 +189,9 @@ visibleLayers: - enum.SubfloorLayers.FirstLayer - enum.LightLayers.Unshaded - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: [ BaseMachinePowered, ConstructibleMachine ] id: BaseGasThermoMachine @@ -265,7 +234,9 @@ examinableAddress: true - type: WiredNetworkConnection - type: PowerSwitch - + - type: AtmosMonitoringConsoleDevice + navMapBlip: Thermoregulator + - type: entity parent: BaseGasThermoMachine id: GasThermoMachineFreezer @@ -469,3 +440,5 @@ - type: ExaminableSolution solution: tank - type: PowerSwitch + - type: AtmosMonitoringConsoleDevice + navMapBlip: Thermoregulator diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index 3c1334169d..b61e14b1af 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -56,6 +56,9 @@ - type: ContainerContainer containers: DisposalTube: !type:Container + - type: Tag + tags: + - Disposal - type: StaticPrice price: 22 @@ -495,3 +498,4 @@ Anchored: { state: signal-router-flipped } - type: Construction node: signal_router_flipped + diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml index b8d66c61e3..24049ca075 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml @@ -17,11 +17,14 @@ - type: EventHorizon # To make the singularity consume things. radius: 0.5 canBreachContainment: false + inheritMomentum: true colliderFixtureId: EventHorizonCollider consumerFixtureId: EventHorizonConsumer - type: GravityWell # To make the singularity attract things. baseRadialAcceleration: 10 maxRange: 4 + applyCounterforce: true + staticAttraction: 0.3 - type: Fixtures fixtures: EventHorizonCollider: @@ -30,20 +33,20 @@ radius: 0.35 hard: true restitution: 0.8 - density: 99999 + density: 2000 mask: - - AllMask + - SingularityLayer layer: - - AllMask + - SingularityLayer EventHorizonConsumer: shape: !type:PhysShapeCircle radius: 0.35 hard: false mask: - - AllMask + - SingularityLayer layer: - - AllMask + - SingularityLayer - type: Singularity energy: 180 level: 1 @@ -52,6 +55,7 @@ - type: RandomWalk # To make the singularity move around. maxSpeed: 2.5 minSpeed: 1.875 + accumulatorRatio: 0.7 - type: SingularityDistortion falloffPower: 2.529822 intensity: 3645 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml index 1cfdb9256a..228285094d 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml @@ -46,7 +46,7 @@ radius: 0.55 hard: true restitution: 0.8 - density: 99999 + density: 2000 mask: - Opaque layer: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml index 382846938b..25b0f6d73f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml @@ -28,7 +28,7 @@ - MidImpassable, LowImpassable, BulletImpassable - type: Sprite sprite: Structures/Power/Generation/solar_panel.rsi - state: normal + state: solar_panel_glass - type: NodeContainer examinable: true nodes: @@ -39,7 +39,7 @@ group: Generator loadNode: output sprite: Structures/Power/Generation/solar_panel.rsi - state: static + state: solar_panel_glass collectionName: SolarPanel - type: Anchorable - type: Pullable @@ -51,6 +51,74 @@ highVoltageNode: output - type: RequireProjectileTarget +- type: entity + id: SolarPanelPlasma + parent: SolarPanelBasePhysSprite + name: solar panel plasma + description: A plasma solar panel that generates power. + components: + - type: PowerSupplier + supplyRampTolerance: 2000 + supplyRampRate: 2000 + - type: SolarPanel + maxSupply: 4000 + - type: Sprite + sprite: Structures/Power/Generation/solar_panel.rsi + state: solar_panel_plasma + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:ChangeConstructionNodeBehavior + node: solarpanelplasma_broken + - !type:DoActsBehavior + acts: ["Breakage"] + - type: Construction + graph: SolarPanel + node: solarpanelplasma + +- type: entity + id: SolarPanelUranium + parent: SolarPanelBasePhysSprite + name: solar panel uranium + description: A uranium solar panel that generates power. + components: + - type: PowerSupplier + supplyRampTolerance: 2000 + supplyRampRate: 2000 + - type: SolarPanel + maxSupply: 6000 + - type: Sprite + sprite: Structures/Power/Generation/solar_panel.rsi + state: solar_panel_uranium + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:ChangeConstructionNodeBehavior + node: solarpaneluranium_broken + - !type:DoActsBehavior + acts: ["Breakage"] + - type: Construction + graph: SolarPanel + node: solarpaneluranium + - type: entity id: SolarPanel parent: SolarPanelBasePhysSprite @@ -58,8 +126,8 @@ description: A solar panel that generates power. components: - type: PowerSupplier - supplyRampTolerance: 1000 - supplyRampRate: 1000 + supplyRampTolerance: 4000 + supplyRampRate: 4000 - type: SolarPanel - type: Damageable damageContainer: Inorganic @@ -89,7 +157,7 @@ suffix: Broken components: - type: Sprite - state: broken + state: solar_panel_glass_broken - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -113,6 +181,70 @@ graph: SolarPanel node: solarpanel_broken +- type: entity + id: SolarPanelPlasmaBroken + parent: SolarPanelBasePhysSprite + name: plasma solar panel + description: A broken plasma solar panel. + suffix: Broken + components: + - type: Sprite + state: solar_panel_plasma_broken + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardGlassPlasma: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Construction + graph: SolarPanel + node: solarpanelplasma_broken + +- type: entity + id: SolarPanelUraniumBroken + parent: SolarPanelBasePhysSprite + name: uranium solar panel + description: A broken uranium solar panel. + suffix: Broken + components: + - type: Sprite + state: solar_panel_uranium_broken + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardGlassUranium: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Construction + graph: SolarPanel + node: solarpaneluranium_broken + - type: entity id: SolarAssembly name: solar assembly diff --git a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml index cc33791174..e838b5cb9b 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml @@ -45,3 +45,11 @@ powerMV: !type:CableTerminalNode nodeGroupID: MVPower + +- type: entity + id: CableTerminalUncuttable + parent: CableTerminal + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index d064cc187c..75f9dd5f63 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -30,6 +30,9 @@ behaviors: - !type:DoActsBehavior acts: ["Destruction"] + - type: Tag + tags: + - Cable - type: SubFloorHide - type: CollideOnAnchor - type: Appearance @@ -98,6 +101,14 @@ sound: path: /Audio/Ambience/Objects/emf_buzz.ogg +- type: entity + id: CableHVUncuttable + parent: CableHV + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null + - type: entity parent: CableBase id: CableMV @@ -142,6 +153,14 @@ - type: CableVisualizer statePrefix: mvcable_ +- type: entity + id: CableMVUncuttable + parent: CableMV + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null + - type: entity parent: CableBase id: CableApcExtension @@ -188,3 +207,11 @@ acts: [ "Destruction" ] - type: CableVisualizer statePrefix: lvcable_ + +- type: entity + id: CableApcExtensionUncuttable + parent: CableApcExtension + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Power/chargers.yml b/Resources/Prototypes/Entities/Structures/Power/chargers.yml index ae8689bead..3ffe6d0ac4 100644 --- a/Resources/Prototypes/Entities/Structures/Power/chargers.yml +++ b/Resources/Prototypes/Entities/Structures/Power/chargers.yml @@ -246,6 +246,7 @@ components: - BorgChassis - Silicon # Parkstation IPCs + - Inventory # Goobstation - Modsuits - type: Construction containers: - machine_parts diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml index 762e8d375f..6b9cd36f89 100644 --- a/Resources/Prototypes/Entities/Structures/Power/smes.yml +++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml @@ -113,3 +113,48 @@ components: - type: Battery startingCharge: 0 + +- type: entity + parent: BaseSMES + id: SMESAdvanced + suffix: Advanced, 16MJ + name: advanced SMES + description: An even-higher-capacity superconducting magnetic energy storage (SMES) unit. + components: + - type: Sprite + sprite: Structures/Power/smes.rsi + snapCardinals: true + layers: + - state: advancedsmes + - map: [ "enum.SmesVisualLayers.Charge" ] + state: "smes-og1" # -og0 does not exist + shader: unshaded + visible: false + - map: [ "enum.SmesVisualLayers.Input" ] + state: "smes-oc0" + shader: unshaded + - map: [ "enum.SmesVisualLayers.Output" ] + state: "smes-op1" + shader: unshaded + - map: ["enum.WiresVisualLayers.MaintenancePanel"] + state: advancedsmes-open + - type: Machine + board: SMESAdvancedMachineCircuitboard + - type: Battery + maxCharge: 16000000 + startingCharge: 16000000 + - type: PowerMonitoringDevice + group: SMES + sourceNode: input + loadNode: output + collectionName: smes + sprite: Structures/Power/smes.rsi + state: advancedsmes-static + +- type: entity + parent: SMESAdvanced + id: SMESAdvancedEmpty + suffix: Empty + components: + - type: Battery + startingCharge: 0 diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml index 2df48a584c..b118b85c4d 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml @@ -1,7 +1,39 @@ +- type: entity + id: AirSensorBase + abstract: true + components: + - type: DeviceNetwork + deviceNetId: AtmosDevices + receiveFrequencyId: AtmosMonitor + transmitFrequencyId: AtmosMonitor + prefix: device-address-prefix-sensor + sendBroadcastAttemptEvent: true + examinableAddress: true + - type: WiredNetworkConnection + - type: DeviceNetworkRequiresPower + - type: AtmosDevice + - type: AtmosMonitor + temperatureThresholdId: stationTemperature + pressureThresholdId: stationPressure + gasThresholdPrototypes: + Oxygen: stationOxygen + Nitrogen: ignore + CarbonDioxide: stationCO2 + Plasma: stationPlasma + Tritium: stationTritium + WaterVapor: stationWaterVapor + Ammonia: stationAmmonia + NitrousOxide: stationNO + Frezon: danger + - type: Tag + tags: + - AirSensor + - type: entity id: AirSensor name: air sensor description: Air sensor. It senses air. + parent: AirSensorBase placement: mode: SnapgridCenter components: @@ -35,32 +67,6 @@ - type: InteractionOutline - type: ApcPowerReceiver - type: ExtensionCableReceiver - - type: DeviceNetwork - deviceNetId: AtmosDevices - receiveFrequencyId: AtmosMonitor - transmitFrequencyId: AtmosMonitor - prefix: device-address-prefix-sensor - sendBroadcastAttemptEvent: true - examinableAddress: true - - type: WiredNetworkConnection - - type: DeviceNetworkRequiresPower - - type: AtmosDevice - - type: AtmosMonitor - temperatureThresholdId: stationTemperature - pressureThresholdId: stationPressure - gasThresholdPrototypes: - Oxygen: stationOxygen - Nitrogen: ignore - CarbonDioxide: stationCO2 - Plasma: stationPlasma # everything below is usually bad - Tritium: danger - WaterVapor: stationWaterVapor - Ammonia: stationAmmonia - NitrousOxide: stationNO - Frezon: danger - - type: Tag - tags: - - AirSensor - type: AccessReader access: [ [ "Atmospherics" ] ] - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/vox.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/vox.yml new file mode 100644 index 0000000000..a13d376042 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/vox.yml @@ -0,0 +1,50 @@ +- type: entity + abstract: true + parent: AirSensorBase + id: AirSensorVoxBase + suffix: Vox Atmosphere + components: + - type: AtmosMonitor + gasThresholdPrototypes: + Oxygen: voxOxygen + Nitrogen: voxNitrogen + CarbonDioxide: stationCO2 + Plasma: stationPlasma + Tritium: stationTritium + WaterVapor: stationWaterVapor + Ammonia: stationAmmonia + NitrousOxide: stationNO + Frezon: danger + +- type: entity + parent: [AirSensorVoxBase, AirSensor] + id: AirSensorVox + +- type: entity + parent: [AirSensorVoxBase, GasVentPump] + id: GasVentPumpVox + +- type: entity + parent: [AirSensorVoxBase, GasVentScrubber] + id: GasVentScrubberVox + components: + - type: GasVentScrubber + wideNet: true # Air alarm with auto mode overrides filters with hardcoded defaults so default to widenet + filterGases: + - Oxygen # filter out oxygen as well as regular harmful gases + - CarbonDioxide + - Plasma + - Tritium + - WaterVapor + - Ammonia + - NitrousOxide + - Frezon + +# use this to prevent overriding filters with hardcoded defaults +- type: entity + parent: AirAlarm + id: AirAlarmVox + suffix: Vox Atmosphere, auto mode disabled + components: + - type: AirAlarm + autoMode: false diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml index 1953ecd146..283599e617 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml @@ -1060,6 +1060,25 @@ - type: Sprite state: poster51_legit +- type: entity + parent: PosterBase + id: PosterLegitSafetyMothSSD + name: "Safety Moth - Space Sleep Disorder" + description: "This informational poster uses Safety Moth™ to tell the viewer about Space Sleep Disorder (SSD), a condition where the person stops reacting to things. \"Treat SSD crew with care! They might wake up at any time!\"" + components: + - type: Sprite + state: poster52_legit + +- type: entity + parent: PosterBase + id: PosterLegitOppenhopper + name: "Oppenhopper" + description: "A poster for a long-forgotten movie. It follows a group of tenacious greenhorns from the Grasshopper Sector as they defend against onslaughts of the infamous Nuclear Operatives. The tagline reads: \"Nuke Ops will continue until robustness improves.\"" + components: + - type: Sprite + state: poster53_legit + + #maps - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index 35df7765a6..43161a43ba 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -316,6 +316,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/EstacaoPirata/Catalog/uplink_catalog.yml b/Resources/Prototypes/EstacaoPirata/Catalog/uplink_catalog.yml new file mode 100644 index 0000000000..c972f35f38 --- /dev/null +++ b/Resources/Prototypes/EstacaoPirata/Catalog/uplink_catalog.yml @@ -0,0 +1,9 @@ +- type: listing + id: UplinkSyndicateDeck + name: uplink-syndicate-deck-name + description: uplink-syndicate-deck-desc + productEntity: CardBoxSyndicate + cost: + Telecrystal: 1 + categories: + - UplinkPointless diff --git a/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/black_cards.yml b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/black_cards.yml new file mode 100644 index 0000000000..eddc820e21 --- /dev/null +++ b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/black_cards.yml @@ -0,0 +1,780 @@ +- type: entity + parent: [ BoxCardboard, BaseBagOpenClose ] + id: CardBoxBase + name: deck box + categories: [ HideSpawnMenu ] + components: + - type: Item + size: Small + shape: + - 0,0,1,1 + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + layers: + - state: black_box + - state: black_box_open + map: [ "openLayer" ] + visible: false + - type: Storage + maxItemSize: Normal + grid: + - 0,0,1,1 + whitelist: + components: + - CardDeck + - type: OpenTriggeredStorageFill + contents: + - id: CardDeckBase + amount: 1 + - type: Appearance + +# Frontier: base stack for card stack component +- type: entity + parent: [BaseItem] + id: CardStackBase + name: stack of cards + abstract: true + components: + - type: Item + size: Small + - type: CardStack + - type: StripMenuHidden + - type: ContainerContainer # Frontier + containers: # Frontier + cardstack-container: !type:Container # Frontier +# End Frontier + +- type: entity + parent: CardStackBase + id: CardHandBase + categories: [ HideSpawnMenu ] + name: hand of cards + components: + - type: CardHand + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: singlecard_down_black + - type: UserInterface + interfaces: + enum.CardUiKey.Key: + type: CardHandMenuBoundUserInterface + # - type: ActivatableUI # Frontier + # key: enum.CardUiKey.Key # Frontier + +- type: entity + parent: CardStackBase + id: CardDeckBase + categories: [ HideSpawnMenu ] + name: deck of cards + components: + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: deck_black_full + - type: Item + size: Normal + - type: CardDeck + + +- type: entity + parent: CardBoxBase + id: CardBoxBlack + name: black deck box + components: + - type: Item + size: Small + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + layers: + - state: black_box + - state: black_box_open + map: [ "openLayer" ] + visible: false + - type: OpenTriggeredStorageFill + contents: + - id: CardDeckBlack + amount: 1 + +- type: entity + parent: CardDeckBase + id: CardDeckBlack + name: deck of cards + components: + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: deck_black_full + - type: CardStack + initialContent: + # Clubs + - CardScAceOfClubsBlack + - CardSc2OfClubsBlack + - CardSc3OfClubsBlack + - CardSc4OfClubsBlack + - CardSc5OfClubsBlack + - CardSc6OfClubsBlack + - CardSc7OfClubsBlack + - CardSc8OfClubsBlack + - CardSc9OfClubsBlack + - CardSc10OfClubsBlack + - CardScJackOfClubsBlack + - CardScQueenOfClubsBlack + - CardScKingOfClubsBlack + # Diamonds + - CardScAceOfDiamondsBlack + - CardSc2OfDiamondsBlack + - CardSc3OfDiamondsBlack + - CardSc4OfDiamondsBlack + - CardSc5OfDiamondsBlack + - CardSc6OfDiamondsBlack + - CardSc7OfDiamondsBlack + - CardSc8OfDiamondsBlack + - CardSc9OfDiamondsBlack + - CardSc10OfDiamondsBlack + - CardScJackOfDiamondsBlack + - CardScQueenOfDiamondsBlack + - CardScKingOfDiamondsBlack + # Hearts + - CardScAceOfHeartsBlack + - CardSc2OfHeartsBlack + - CardSc3OfHeartsBlack + - CardSc4OfHeartsBlack + - CardSc5OfHeartsBlack + - CardSc6OfHeartsBlack + - CardSc7OfHeartsBlack + - CardSc8OfHeartsBlack + - CardSc9OfHeartsBlack + - CardSc10OfHeartsBlack + - CardScJackOfHeartsBlack + - CardScQueenOfHeartsBlack + - CardScKingOfHeartsBlack + # Spades + - CardScAceOfSpadesBlack + - CardSc2OfSpadesBlack + - CardSc3OfSpadesBlack + - CardSc4OfSpadesBlack + - CardSc5OfSpadesBlack + - CardSc6OfSpadesBlack + - CardSc7OfSpadesBlack + - CardSc8OfSpadesBlack + - CardSc9OfSpadesBlack + - CardSc10OfSpadesBlack + - CardScJackOfSpadesBlack + - CardScQueenOfSpadesBlack + - CardScKingOfSpadesBlack + # Joker + - CardScJokerBlack + +- type: entity + parent: BaseItem + id: CardBase + name: card + categories: [ HideSpawnMenu ] + components: + - type: EmitSoundOnLand + sound: + collection: cardShove + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: singlecard_down_black + - type: Rotatable + - type: Item + size: Small + - type: UseDelay + delay: 0.5 + - type: Card + backSprite: + - sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: singlecard_down_black + flipped: true + - type: StripMenuHidden + +# region Black Cards + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc2OfClubsBlack + components: + - type: Card + name: card-sc-2-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc3OfClubsBlack + components: + - type: Card + name: card-sc-3-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc4OfClubsBlack + components: + - type: Card + name: card-sc-4-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc5OfClubsBlack + components: + - type: Card + name: card-sc-5-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc6OfClubsBlack + components: + - type: Card + name: card-sc-6-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc7OfClubsBlack + components: + - type: Card + name: card-sc-7-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc8OfClubsBlack + components: + - type: Card + name: card-sc-8-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc9OfClubsBlack + components: + - type: Card + name: card-sc-9-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc10OfClubsBlack + components: + - type: Card + name: card-sc-10-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScAceOfClubsBlack + components: + - type: Card + name: card-sc-ace-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Clubs_black + + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScJackOfClubsBlack + components: + - type: Card + name: card-sc-jack-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScKingOfClubsBlack + components: + - type: Card + name: card-sc-king-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Clubs_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScQueenOfClubsBlack + components: + - type: Card + name: card-sc-queen-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Clubs_black + + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScJackOfDiamondsBlack + components: + - type: Card + name: card-sc-jack-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScQueenOfDiamondsBlack + components: + - type: Card + name: card-sc-queen-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScKingOfDiamondsBlack + components: + - type: Card + name: card-sc-king-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScAceOfDiamondsBlack + components: + - type: Card + name: card-sc-ace-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc2OfDiamondsBlack + components: + - type: Card + name: card-sc-2-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc3OfDiamondsBlack + components: + - type: Card + name: card-sc-3-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc4OfDiamondsBlack + components: + - type: Card + name: card-sc-4-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc5OfDiamondsBlack + components: + - type: Card + name: card-sc-5-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc6OfDiamondsBlack + components: + - type: Card + name: card-sc-6-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc7OfDiamondsBlack + components: + - type: Card + name: card-sc-7-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc8OfDiamondsBlack + components: + - type: Card + name: card-sc-8-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc9OfDiamondsBlack + components: + - type: Card + name: card-sc-9-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Diamonds_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc10OfDiamondsBlack + components: + - type: Card + name: card-sc-10-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Diamonds_black + + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc2OfHeartsBlack + components: + - type: Card + name: card-sc-2-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc3OfHeartsBlack + components: + - type: Card + name: card-sc-3-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc4OfHeartsBlack + components: + - type: Card + name: card-sc-4-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc5OfHeartsBlack + components: + - type: Card + name: card-sc-5-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc6OfHeartsBlack + components: + - type: Card + name: card-sc-6-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc7OfHeartsBlack + components: + - type: Card + name: card-sc-7-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc8OfHeartsBlack + components: + - type: Card + name: card-sc-8-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc9OfHeartsBlack + components: + - type: Card + name: card-sc-9-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc10OfHeartsBlack + components: + - type: Card + name: card-sc-10-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScKingOfHeartsBlack + components: + - type: Card + name: card-sc-king-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScQueenOfHeartsBlack + components: + - type: Card + name: card-sc-queen-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScJackOfHeartsBlack + components: + - type: Card + name: card-sc-jack-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Hearts_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScAceOfHeartsBlack + components: + - type: Card + name: card-sc-ace-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Hearts_black + + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc2OfSpadesBlack + components: + - type: Card + name: card-sc-2-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc3OfSpadesBlack + components: + - type: Card + name: card-sc-3-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc4OfSpadesBlack + components: + - type: Card + name: card-sc-4-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc5OfSpadesBlack + components: + - type: Card + name: card-sc-5-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc6OfSpadesBlack + components: + - type: Card + name: card-sc-6-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc7OfSpadesBlack + components: + - type: Card + name: card-sc-7-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc8OfSpadesBlack + components: + - type: Card + name: card-sc-8-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc9OfSpadesBlack + components: + - type: Card + name: card-sc-9-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Spades_black + + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardSc10OfSpadesBlack + components: + - type: Card + name: card-sc-10-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScKingOfSpadesBlack + components: + - type: Card + name: card-sc-king-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScQueenOfSpadesBlack + components: + - type: Card + name: card-sc-queen-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScJackOfSpadesBlack + components: + - type: Card + name: card-sc-jack-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScAceOfSpadesBlack + components: + - type: Card + name: card-sc-ace-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Spades_black + +- type: entity + parent: CardBase + categories: [ HideSpawnMenu ] + id: CardScJokerBlack + components: + - type: Card + name: card-sc-joker + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: black_joker + +# endregion Black Cards diff --git a/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/nt_cards.yml b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/nt_cards.yml new file mode 100644 index 0000000000..be802ea5ee --- /dev/null +++ b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/nt_cards.yml @@ -0,0 +1,690 @@ + +- type: entity + parent: CardBase + id: CardBaseNanotrasen + name: card + components: + - type: Card + backSprite: + - sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: singlecard_down_nanotrasen + +- type: entity + parent: CardBoxBase + id: CardBoxNanotrasen + name: nanotrasen deck box + components: + - type: Item + size: Small + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + layers: + - state: nanotrasen_box + - state: nanotrasen_box_open + map: [ "openLayer" ] + visible: false + - type: OpenTriggeredStorageFill + contents: + - id: CardDeckNanotrasen + amount: 1 + +- type: entity + parent: CardDeckBase + id: CardDeckNanotrasen + name: deck of cards + components: + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: deck_nanotrasen_full + - type: CardStack + initialContent: + # Clubs + - CardScAceOfClubsNanotrasen + - CardSc2OfClubsNanotrasen + - CardSc3OfClubsNanotrasen + - CardSc4OfClubsNanotrasen + - CardSc5OfClubsNanotrasen + - CardSc6OfClubsNanotrasen + - CardSc7OfClubsNanotrasen + - CardSc8OfClubsNanotrasen + - CardSc9OfClubsNanotrasen + - CardSc10OfClubsNanotrasen + - CardScJackOfClubsNanotrasen + - CardScQueenOfClubsNanotrasen + - CardScKingOfClubsNanotrasen + # Diamonds + - CardScAceOfDiamondsNanotrasen + - CardSc2OfDiamondsNanotrasen + - CardSc3OfDiamondsNanotrasen + - CardSc4OfDiamondsNanotrasen + - CardSc5OfDiamondsNanotrasen + - CardSc6OfDiamondsNanotrasen + - CardSc7OfDiamondsNanotrasen + - CardSc8OfDiamondsNanotrasen + - CardSc9OfDiamondsNanotrasen + - CardSc10OfDiamondsNanotrasen + - CardScJackOfDiamondsNanotrasen + - CardScQueenOfDiamondsNanotrasen + - CardScKingOfDiamondsNanotrasen + # Hearts + - CardScAceOfHeartsNanotrasen + - CardSc2OfHeartsNanotrasen + - CardSc3OfHeartsNanotrasen + - CardSc4OfHeartsNanotrasen + - CardSc5OfHeartsNanotrasen + - CardSc6OfHeartsNanotrasen + - CardSc7OfHeartsNanotrasen + - CardSc8OfHeartsNanotrasen + - CardSc9OfHeartsNanotrasen + - CardSc10OfHeartsNanotrasen + - CardScJackOfHeartsNanotrasen + - CardScQueenOfHeartsNanotrasen + - CardScKingOfHeartsNanotrasen + # Spades + - CardScAceOfSpadesNanotrasen + - CardSc2OfSpadesNanotrasen + - CardSc3OfSpadesNanotrasen + - CardSc4OfSpadesNanotrasen + - CardSc5OfSpadesNanotrasen + - CardSc6OfSpadesNanotrasen + - CardSc7OfSpadesNanotrasen + - CardSc8OfSpadesNanotrasen + - CardSc9OfSpadesNanotrasen + - CardSc10OfSpadesNanotrasen + - CardScJackOfSpadesNanotrasen + - CardScQueenOfSpadesNanotrasen + - CardScKingOfSpadesNanotrasen + # Joker + - CardScJokerNanotrasen + +# region Nanotrasen Cards + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc2OfClubsNanotrasen + components: + - type: Card + name: card-sc-2-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc3OfClubsNanotrasen + components: + - type: Card + name: card-sc-3-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc4OfClubsNanotrasen + components: + - type: Card + name: card-sc-4-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc5OfClubsNanotrasen + components: + - type: Card + name: card-sc-5-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc6OfClubsNanotrasen + components: + - type: Card + name: card-sc-6-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc7OfClubsNanotrasen + components: + - type: Card + name: card-sc-7-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc8OfClubsNanotrasen + components: + - type: Card + name: card-sc-8-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc9OfClubsNanotrasen + components: + - type: Card + name: card-sc-9-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc10OfClubsNanotrasen + components: + - type: Card + name: card-sc-10-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScAceOfClubsNanotrasen + components: + - type: Card + name: card-sc-ace-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Clubs_nanotrasen + + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScJackOfClubsNanotrasen + components: + - type: Card + name: card-sc-jack-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScKingOfClubsNanotrasen + components: + - type: Card + name: card-sc-king-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Clubs_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScQueenOfClubsNanotrasen + components: + - type: Card + name: card-sc-queen-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Clubs_nanotrasen + + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScJackOfDiamondsNanotrasen + components: + - type: Card + name: card-sc-jack-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScQueenOfDiamondsNanotrasen + components: + - type: Card + name: card-sc-queen-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScKingOfDiamondsNanotrasen + components: + - type: Card + name: card-sc-king-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScAceOfDiamondsNanotrasen + components: + - type: Card + name: card-sc-ace-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc2OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-2-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc3OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-3-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc4OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-4-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc5OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-5-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc6OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-6-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc7OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-7-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc8OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-8-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc9OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-9-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Diamonds_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc10OfDiamondsNanotrasen + components: + - type: Card + name: card-sc-10-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Diamonds_nanotrasen + + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc2OfHeartsNanotrasen + components: + - type: Card + name: card-sc-2-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc3OfHeartsNanotrasen + components: + - type: Card + name: card-sc-3-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc4OfHeartsNanotrasen + components: + - type: Card + name: card-sc-4-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc5OfHeartsNanotrasen + components: + - type: Card + name: card-sc-5-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc6OfHeartsNanotrasen + components: + - type: Card + name: card-sc-6-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc7OfHeartsNanotrasen + components: + - type: Card + name: card-sc-7-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc8OfHeartsNanotrasen + components: + - type: Card + name: card-sc-8-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc9OfHeartsNanotrasen + components: + - type: Card + name: card-sc-9-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc10OfHeartsNanotrasen + components: + - type: Card + name: card-sc-10-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScKingOfHeartsNanotrasen + components: + - type: Card + name: card-sc-king-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScQueenOfHeartsNanotrasen + components: + - type: Card + name: card-sc-queen-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScJackOfHeartsNanotrasen + components: + - type: Card + name: card-sc-jack-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Hearts_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScAceOfHeartsNanotrasen + components: + - type: Card + name: card-sc-ace-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Hearts_nanotrasen + + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc2OfSpadesNanotrasen + components: + - type: Card + name: card-sc-2-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc3OfSpadesNanotrasen + components: + - type: Card + name: card-sc-3-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc4OfSpadesNanotrasen + components: + - type: Card + name: card-sc-4-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc5OfSpadesNanotrasen + components: + - type: Card + name: card-sc-5-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc6OfSpadesNanotrasen + components: + - type: Card + name: card-sc-6-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc7OfSpadesNanotrasen + components: + - type: Card + name: card-sc-7-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc8OfSpadesNanotrasen + components: + - type: Card + name: card-sc-8-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc9OfSpadesNanotrasen + components: + - type: Card + name: card-sc-9-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Spades_nanotrasen + + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardSc10OfSpadesNanotrasen + components: + - type: Card + name: card-sc-10-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScKingOfSpadesNanotrasen + components: + - type: Card + name: card-sc-king-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScQueenOfSpadesNanotrasen + components: + - type: Card + name: card-sc-queen-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScJackOfSpadesNanotrasen + components: + - type: Card + name: card-sc-jack-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScAceOfSpadesNanotrasen + components: + - type: Card + name: card-sc-ace-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Spades_nanotrasen + +- type: entity + parent: CardBaseNanotrasen + categories: [ HideSpawnMenu ] + id: CardScJokerNanotrasen + components: + - type: Card + name: card-sc-joker + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: nanotrasen_joker + +# endregion Nanotrasen Cards diff --git a/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/syndicate_cards.yml b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/syndicate_cards.yml new file mode 100644 index 0000000000..9f8f93cb6a --- /dev/null +++ b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/syndicate_cards.yml @@ -0,0 +1,690 @@ + +- type: entity + parent: CardBase + id: CardBaseSyndicate + name: card + components: + - type: Card + backSprite: + - sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: singlecard_down_syndicate + +- type: entity + parent: CardBoxBase + id: CardBoxSyndicate + name: syndicate deck box + components: + - type: Item + size: Small + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + layers: + - state: syndicate_box + - state: syndicate_box_open + map: [ "openLayer" ] + visible: false + - type: OpenTriggeredStorageFill + contents: + - id: CardDeckSyndicate + amount: 1 + +- type: entity + parent: CardDeckBase + id: CardDeckSyndicate + name: deck of cards + components: + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: deck_syndicate_full + - type: CardStack + initialContent: + # Clubs + - CardScAceOfClubsSyndicate + - CardSc2OfClubsSyndicate + - CardSc3OfClubsSyndicate + - CardSc4OfClubsSyndicate + - CardSc5OfClubsSyndicate + - CardSc6OfClubsSyndicate + - CardSc7OfClubsSyndicate + - CardSc8OfClubsSyndicate + - CardSc9OfClubsSyndicate + - CardSc10OfClubsSyndicate + - CardScJackOfClubsSyndicate + - CardScQueenOfClubsSyndicate + - CardScKingOfClubsSyndicate + # Diamonds + - CardScAceOfDiamondsSyndicate + - CardSc2OfDiamondsSyndicate + - CardSc3OfDiamondsSyndicate + - CardSc4OfDiamondsSyndicate + - CardSc5OfDiamondsSyndicate + - CardSc6OfDiamondsSyndicate + - CardSc7OfDiamondsSyndicate + - CardSc8OfDiamondsSyndicate + - CardSc9OfDiamondsSyndicate + - CardSc10OfDiamondsSyndicate + - CardScJackOfDiamondsSyndicate + - CardScQueenOfDiamondsSyndicate + - CardScKingOfDiamondsSyndicate + # Hearts + - CardScAceOfHeartsSyndicate + - CardSc2OfHeartsSyndicate + - CardSc3OfHeartsSyndicate + - CardSc4OfHeartsSyndicate + - CardSc5OfHeartsSyndicate + - CardSc6OfHeartsSyndicate + - CardSc7OfHeartsSyndicate + - CardSc8OfHeartsSyndicate + - CardSc9OfHeartsSyndicate + - CardSc10OfHeartsSyndicate + - CardScJackOfHeartsSyndicate + - CardScQueenOfHeartsSyndicate + - CardScKingOfHeartsSyndicate + # Spades + - CardScAceOfSpadesSyndicate + - CardSc2OfSpadesSyndicate + - CardSc3OfSpadesSyndicate + - CardSc4OfSpadesSyndicate + - CardSc5OfSpadesSyndicate + - CardSc6OfSpadesSyndicate + - CardSc7OfSpadesSyndicate + - CardSc8OfSpadesSyndicate + - CardSc9OfSpadesSyndicate + - CardSc10OfSpadesSyndicate + - CardScJackOfSpadesSyndicate + - CardScQueenOfSpadesSyndicate + - CardScKingOfSpadesSyndicate + # Joker + - CardScJokerSyndicate + +# region Syndicate Cards + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc2OfClubsSyndicate + components: + - type: Card + name: card-sc-2-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc3OfClubsSyndicate + components: + - type: Card + name: card-sc-3-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc4OfClubsSyndicate + components: + - type: Card + name: card-sc-4-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc5OfClubsSyndicate + components: + - type: Card + name: card-sc-5-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc6OfClubsSyndicate + components: + - type: Card + name: card-sc-6-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc7OfClubsSyndicate + components: + - type: Card + name: card-sc-7-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc8OfClubsSyndicate + components: + - type: Card + name: card-sc-8-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc9OfClubsSyndicate + components: + - type: Card + name: card-sc-9-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc10OfClubsSyndicate + components: + - type: Card + name: card-sc-10-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScAceOfClubsSyndicate + components: + - type: Card + name: card-sc-ace-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Clubs_syndicate + + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScJackOfClubsSyndicate + components: + - type: Card + name: card-sc-jack-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScKingOfClubsSyndicate + components: + - type: Card + name: card-sc-king-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Clubs_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScQueenOfClubsSyndicate + components: + - type: Card + name: card-sc-queen-clubs + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Clubs_syndicate + + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScJackOfDiamondsSyndicate + components: + - type: Card + name: card-sc-jack-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScQueenOfDiamondsSyndicate + components: + - type: Card + name: card-sc-queen-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScKingOfDiamondsSyndicate + components: + - type: Card + name: card-sc-king-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScAceOfDiamondsSyndicate + components: + - type: Card + name: card-sc-ace-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc2OfDiamondsSyndicate + components: + - type: Card + name: card-sc-2-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc3OfDiamondsSyndicate + components: + - type: Card + name: card-sc-3-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc4OfDiamondsSyndicate + components: + - type: Card + name: card-sc-4-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc5OfDiamondsSyndicate + components: + - type: Card + name: card-sc-5-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc6OfDiamondsSyndicate + components: + - type: Card + name: card-sc-6-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc7OfDiamondsSyndicate + components: + - type: Card + name: card-sc-7-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc8OfDiamondsSyndicate + components: + - type: Card + name: card-sc-8-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc9OfDiamondsSyndicate + components: + - type: Card + name: card-sc-9-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Diamonds_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc10OfDiamondsSyndicate + components: + - type: Card + name: card-sc-10-diamonds + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Diamonds_syndicate + + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc2OfHeartsSyndicate + components: + - type: Card + name: card-sc-2-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc3OfHeartsSyndicate + components: + - type: Card + name: card-sc-3-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc4OfHeartsSyndicate + components: + - type: Card + name: card-sc-4-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc5OfHeartsSyndicate + components: + - type: Card + name: card-sc-5-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc6OfHeartsSyndicate + components: + - type: Card + name: card-sc-6-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc7OfHeartsSyndicate + components: + - type: Card + name: card-sc-7-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc8OfHeartsSyndicate + components: + - type: Card + name: card-sc-8-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc9OfHeartsSyndicate + components: + - type: Card + name: card-sc-9-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc10OfHeartsSyndicate + components: + - type: Card + name: card-sc-10-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScKingOfHeartsSyndicate + components: + - type: Card + name: card-sc-king-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScQueenOfHeartsSyndicate + components: + - type: Card + name: card-sc-queen-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScJackOfHeartsSyndicate + components: + - type: Card + name: card-sc-jack-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Hearts_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScAceOfHeartsSyndicate + components: + - type: Card + name: card-sc-ace-hearts + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Hearts_syndicate + + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc2OfSpadesSyndicate + components: + - type: Card + name: card-sc-2-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_2_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc3OfSpadesSyndicate + components: + - type: Card + name: card-sc-3-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_3_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc4OfSpadesSyndicate + components: + - type: Card + name: card-sc-4-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_4_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc5OfSpadesSyndicate + components: + - type: Card + name: card-sc-5-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_5_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc6OfSpadesSyndicate + components: + - type: Card + name: card-sc-6-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_6_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc7OfSpadesSyndicate + components: + - type: Card + name: card-sc-7-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_7_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc8OfSpadesSyndicate + components: + - type: Card + name: card-sc-8-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_8_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc9OfSpadesSyndicate + components: + - type: Card + name: card-sc-9-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_9_of_Spades_syndicate + + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardSc10OfSpadesSyndicate + components: + - type: Card + name: card-sc-10-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_10_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScKingOfSpadesSyndicate + components: + - type: Card + name: card-sc-king-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_King_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScQueenOfSpadesSyndicate + components: + - type: Card + name: card-sc-queen-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Queen_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScJackOfSpadesSyndicate + components: + - type: Card + name: card-sc-jack-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Jack_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScAceOfSpadesSyndicate + components: + - type: Card + name: card-sc-ace-spades + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: sc_Ace_of_Spades_syndicate + +- type: entity + parent: CardBaseSyndicate + categories: [ HideSpawnMenu ] + id: CardScJokerSyndicate + components: + - type: Card + name: card-sc-joker + - type: Sprite + sprite: EstacaoPirata/Objects/Misc/cards.rsi + state: syndicate_joker + +# endregion Syndicate Cards diff --git a/Resources/Prototypes/EstacaoPirata/SoundCollections/cards.yml b/Resources/Prototypes/EstacaoPirata/SoundCollections/cards.yml new file mode 100644 index 0000000000..5a7084630c --- /dev/null +++ b/Resources/Prototypes/EstacaoPirata/SoundCollections/cards.yml @@ -0,0 +1,50 @@ +- type: soundCollection + id: cardFan + files: + - /Audio/EstacaoPirata/Effects/Cards/cardFan1.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardFan2.ogg + +- type: soundCollection + id: cardOpenPackage + files: + - /Audio/EstacaoPirata/Effects/Cards/cardOpenPackage1.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardOpenPackage2.ogg + +- type: soundCollection + id: cardPlace + files: + - /Audio/EstacaoPirata/Effects/Cards/cardPlace1.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardPlace2.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardPlace3.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardPlace4.ogg + +- type: soundCollection + id: cardShove + files: + - /Audio/EstacaoPirata/Effects/Cards/cardShove1.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardShove2.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardShove3.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardShove4.ogg + +- type: soundCollection + id: cardShuffle + files: + - /Audio/EstacaoPirata/Effects/Cards/cardShuffle.ogg + +- type: soundCollection + id: cardSlide + files: + - /Audio/EstacaoPirata/Effects/Cards/cardSlide1.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide2.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide3.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide4.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide5.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide6.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide7.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardSlide8.ogg + +- type: soundCollection + id: cardTakeOutPackage + files: + - /Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage1.ogg + - /Audio/EstacaoPirata/Effects/Cards/cardTakeOutPackage2.ogg diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 7534a8cdc6..bebc40fcc1 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -1133,3 +1133,8 @@ id: compressed-meat flavorType: Complex description: flavor-complex-compressed-meat + +- type: flavor + id: plasma + flavorType: Complex + description: flavor-complex-plasma diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 50864930b0..39fbab580f 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -19,10 +19,8 @@ agentName: thief-round-end-agent-name definitions: - prefRoles: [ Thief ] - maxRange: - min: 1 - max: 3 - playerRatio: 1 + max: 3 + playerRatio: 15 lateJoinAdditional: true allowNonHumans: true multiAntagSetting: All diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index f7b77b7ec6..1ecf3ff02d 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -13,6 +13,9 @@ - IPCs - Harpy - Shadowkin + - Plasmaman + - Chitinid + - Tajaran - type: guideEntry id: Arachnid @@ -58,8 +61,18 @@ id: Harpy name: species-name-harpy text: "/ServerInfo/Guidebook/Mobs/Harpy.xml" - + - type: guideEntry id: Shadowkin name: species-name-shadowkin text: "/ServerInfo/Guidebook/Mobs/Shadowkin.xml" + +- type: guideEntry + id: Tajaran + name: species-name-tajaran + text: "/ServerInfo/Guidebook/Mobs/Tajaran.xml" + +- type: guideEntry + id: Plasmaman + name: species-name-plasmaman + text: "/ServerInfo/Guidebook/Mobs/Plasmaman.xml" diff --git a/Resources/Prototypes/InventoryTemplates/digitigrade_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/digitigrade_inventory_template.yml index fc7dbda932..917dc4ed32 100644 --- a/Resources/Prototypes/InventoryTemplates/digitigrade_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/digitigrade_inventory_template.yml @@ -8,9 +8,6 @@ uiWindowPos: 0,1 strippingWindowPos: 0,2 displayName: Jumpsuit - whitelist: - tags: - - Skirt - name: outerClothing slotTexture: suit slotFlags: OUTERCLOTHING diff --git a/Resources/Prototypes/InventoryTemplates/gladiabot_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/gladiabot_inventory_template.yml new file mode 100644 index 0000000000..c7f0e44fe3 --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/gladiabot_inventory_template.yml @@ -0,0 +1,10 @@ +- type: inventoryTemplate + id: gladiabot + slots: + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 0,1 + strippingWindowPos: 0,0 + displayName: Head + offset: 0.1, -0.15 diff --git a/Resources/Prototypes/InventoryTemplates/plasmaman_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/plasmaman_inventory_template.yml new file mode 100644 index 0000000000..c295cf120b --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/plasmaman_inventory_template.yml @@ -0,0 +1,129 @@ +- type: inventoryTemplate + id: plasmaman + slots: + - name: shoes + slotTexture: shoes + slotFlags: FEET + stripTime: 3 + uiWindowPos: 1,0 + strippingWindowPos: 1,3 + displayName: Shoes + - name: jumpsuit + slotTexture: uniform + slotFlags: INNERCLOTHING + stripTime: 6 + uiWindowPos: 0,1 + strippingWindowPos: 0,2 + displayName: Jumpsuit + spawnWhitelist: + tags: + - PlasmamanSafe + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + stripTime: 6 + uiWindowPos: 1,1 + strippingWindowPos: 1,2 + displayName: Suit + - name: gloves + slotTexture: gloves + slotFlags: GLOVES + uiWindowPos: 2,1 + strippingWindowPos: 2,2 + displayName: Gloves + - name: neck + slotTexture: neck + slotFlags: NECK + uiWindowPos: 0,2 + strippingWindowPos: 0,1 + displayName: Neck + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 1,2 + strippingWindowPos: 1,1 + displayName: Mask + - name: eyes + slotTexture: glasses + slotFlags: EYES + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,0 + displayName: Eyes + - name: ears + slotTexture: ears + slotFlags: EARS + stripTime: 3 + uiWindowPos: 2,2 + strippingWindowPos: 2,0 + displayName: Ears + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,3 + strippingWindowPos: 1,0 + displayName: Head + spawnWhitelist: + tags: + - PlasmamanSafe + - name: pocket1 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,4 + dependsOn: jumpsuit + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 1,4 + dependsOn: jumpsuit + displayName: Pocket 2 + stripHidden: true + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,5 + dependsOn: outerClothing + dependsOnComponents: + - type: AllowSuitStorage + displayName: Suit Storage + - name: id + slotTexture: id + fullTextureName: template_small + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + dependsOn: jumpsuit + displayName: ID + - name: belt + slotTexture: belt + fullTextureName: template_small + slotFlags: BELT + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 1,5 + displayName: Belt + - name: back + slotTexture: back + fullTextureName: template_small + slotFlags: BACK + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,0 + strippingWindowPos: 0,5 + displayName: Back diff --git a/Resources/Prototypes/Language/Species-Specific/chittin.yml b/Resources/Prototypes/Language/Species-Specific/chittin.yml new file mode 100644 index 0000000000..e6de43d5a3 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/chittin.yml @@ -0,0 +1,16 @@ +# Spoken by Chitinids. +- type: language + id: Chittin + isVisibleLanguage: true + speech: + color: "#7d7d7d" + fontId: Only_You + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 # Replacements are really short + maxSyllables: 2 + replacement: + - click + - clack + - buzz + - bizz \ No newline at end of file diff --git a/Resources/Prototypes/Language/Species-Specific/marish.yml b/Resources/Prototypes/Language/Species-Specific/marish.yml index 20b42a80d1..55b59b68e6 100644 --- a/Resources/Prototypes/Language/Species-Specific/marish.yml +++ b/Resources/Prototypes/Language/Species-Specific/marish.yml @@ -5,13 +5,13 @@ speech: color: "#be3cc5" fontId: Lymphatic - empathySpeech: true + empathySpeech: false speechVerbOverrides: - chat-speech-verb-marish obfuscation: !type:SyllableObfuscation - minSyllables: 1 # Replacements are really short - maxSyllables: 2 + minSyllables: 2 + maxSyllables: 5 replacement: - mar - mwrrr @@ -19,3 +19,20 @@ - aarrr - wrurrl - mmar + - mwar + - mlar + - mlwar + - mwaarr + - mAaAr + - lmwar + - wlurrl + - wlmwar + - arrmaw + - mwAlwar + - wrlurll + - wlarrul + - wlAmur + - AlwuRm + - mrrrAw + - wurlMur + - uuRlmmr diff --git a/Resources/Prototypes/Language/Species-Specific/skeleton.yml b/Resources/Prototypes/Language/Species-Specific/skeleton.yml new file mode 100644 index 0000000000..840f00850e --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/skeleton.yml @@ -0,0 +1,59 @@ +- type: language + id: Calcic + isVisibleLanguage: true + speech: + fontId: LDFComicSans + color: "#e3dac9" + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 4 + replacement: + - k + - ck + - ack + - ick + - cl + - tk + - sk + - isk + - tak + - kl + - hs + - ss + - ks + - lk + - dk + - gk + - ka + - ska + - la + - pk + - wk + - ak + - ik + - ip + - ski + - bk + - kb + - ta + - is + - it + - li + - di + - ds + - ya + - sck + - crk + - hs + - ws + - mk + - aaa + - skraa + - skee + - hss + - raa + - klk + - tk + - stk + - clk diff --git a/Resources/Prototypes/Loadouts/Generic/hands.yml b/Resources/Prototypes/Loadouts/Generic/hands.yml index af5559ee3b..ec2aec9070 100644 --- a/Resources/Prototypes/Loadouts/Generic/hands.yml +++ b/Resources/Prototypes/Loadouts/Generic/hands.yml @@ -10,6 +10,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutGloves + - !type:CharacterSpeciesRequirement # Use the envirogloves that use the same sprite instead. + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutHandsColorYellowBudget @@ -71,6 +75,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutGloves + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutHandsGlovesEvening @@ -83,3 +91,7 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutGloves + - !type:CharacterSpeciesRequirement # Use the evening envirogloves that use the same sprite instead. + inverted: true + species: + - Plasmaman diff --git a/Resources/Prototypes/Loadouts/Generic/items.yml b/Resources/Prototypes/Loadouts/Generic/items.yml index 24d343c239..84889d7ca9 100644 --- a/Resources/Prototypes/Loadouts/Generic/items.yml +++ b/Resources/Prototypes/Loadouts/Generic/items.yml @@ -311,6 +311,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutAirTank + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutItemsExtendedEmergencyOxygenTank @@ -321,6 +325,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutAirTank + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutItemsDoubleEmergencyOxygenTank @@ -331,6 +339,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutAirTank + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutItemClothingMaskBreath @@ -433,6 +445,11 @@ cost: 1 items: - DrinkWaterBottleFull + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutItemLunchboxGenericFilledRandom @@ -440,6 +457,11 @@ cost: 3 items: - LunchboxGenericFilledRandom + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman - type: loadout id: LoadoutItemDrinkMREFlask @@ -447,6 +469,11 @@ cost: 2 items: - DrinkMREFlask + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman # Survival boxes - type: loadout @@ -818,3 +845,28 @@ group: LoadoutPets functions: - !type:LoadoutMakeFollower + +- type: loadout + id: LoadoutItemBlackDeck + category: Items + cost: 3 + canBeHeirloom: false + items: + - CardBoxBlack + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutCards + +- type: loadout + id: LoadoutItemNTDeck + category: Items + cost: 3 + canBeHeirloom: false + items: + - CardBoxNanotrasen + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutCards + - !type:CharacterDepartmentRequirement + departments: + - Command diff --git a/Resources/Prototypes/Loadouts/Generic/plasmaman.yml b/Resources/Prototypes/Loadouts/Generic/plasmaman.yml new file mode 100644 index 0000000000..a3dbd169f8 --- /dev/null +++ b/Resources/Prototypes/Loadouts/Generic/plasmaman.yml @@ -0,0 +1,723 @@ +# Equipment + +- type: loadout + id: LoadoutSpeciesEnvirosuitExtinguisherRefill + category: Species + cost: 5 + requirements: + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - EnvirosuitExtinguisherRefill + +- type: loadout + id: LoadoutSpeciesDoubleEmergencyPlasmaTank + category: Species + cost: 6 + canBeHeirloom: true + requirements: + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - DoubleEmergencyPlasmaTankFilled + +- type: loadout + id: LoadoutSpeciesDrinkMilkCartonAndSyringe + category: Species + cost: 3 + canBeHeirloom: true + requirements: + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - DrinkMilkCarton + - Syringe + +# Envirogloves + +- type: loadout + id: LoadoutHandsGlovesEnviroglovesColor + category: Hands + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGloves + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - ClothingHandsGlovesEnviroglovesColor + +- type: loadout + id: LoadoutHandsGlovesEnviroglovesEvening + category: Hands + cost: 0 + exclusive: true + customColorTint: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGloves + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - ClothingHandsGlovesEnviroglovesEvening + +# Envirosuits with paired envirohelms + +- type: loadout + id: LoadoutUniformEnvirosuit + category: Uniform + cost: 0 + exclusive: true + canBeHeirloom: true + guideEntry: Plasmaman + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuit + - ClothingHeadEnvirohelm + +- type: loadout + id: LoadoutUniformEnvirosuitBlackPink + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitBlackPink + - ClothingHeadEnvirohelmBlackPink + +- type: loadout + id: LoadoutUniformEnvirosuitBlackPinkAlt + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitBlackPinkAlt + - ClothingHeadEnvirohelmBlackPinkAlt + +- type: loadout + id: LoadoutUniformEnvirosuitMartialGi + category: Uniform + cost: 1 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitMartialGi + - ClothingHeadEnvirohelmMartialGi + +- type: loadout + id: LoadoutUniformEnvirosuitSafari + category: Uniform + cost: 1 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitSafari + - ClothingHeadEnvirohelmSafari + +- type: loadout + id: LoadoutUniformEnvirosuitTrans + category: Uniform + cost: 0 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitTrans + - ClothingHeadEnvirohelmTrans + +- type: loadout + id: LoadoutUniformEnvirosuitAncientVoid + category: Uniform + cost: 2 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + - !type:CharacterJobRequirement + inverted: true + jobs: + - Librarian # Librarian already starts with this envirosuit + items: + - ClothingUniformEnvirosuitAncientVoid + - ClothingHeadEnvirohelmAncientVoid + +# Colored envirosuits +- type: loadout + id: LoadoutUniformEnvirosuitColorWhite + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorWhite + - ClothingHeadEnvirohelmColorWhite + +- type: loadout + id: LoadoutUniformEnvirosuitColorGrey + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorGrey + - ClothingHeadEnvirohelmColorGrey + +- type: loadout + id: LoadoutUniformEnvirosuitColorBlack + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitColorBlack + - ClothingHeadEnvirohelmColorBlack + +- type: loadout + id: LoadoutUniformEnvirosuitColorRed + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitColorRed + - ClothingHeadEnvirohelmColorRed + +- type: loadout + id: LoadoutUniformEnvirosuitColorGreen + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorGreen + - ClothingHeadEnvirohelmColorGreen + +- type: loadout + id: LoadoutUniformEnvirosuitColorDarkGreen + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorDarkGreen + - ClothingHeadEnvirohelmColorDarkGreen + +- type: loadout + id: LoadoutUniformEnvirosuitColorBlue + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorBlue + - ClothingHeadEnvirohelmColorBlue + +- type: loadout + id: LoadoutUniformEnvirosuitColorDarkBlue + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorDarkBlue + - ClothingHeadEnvirohelmColorDarkBlue + +- type: loadout + id: LoadoutUniformEnvirosuitColorTeal + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorTeal + - ClothingHeadEnvirohelmColorTeal + +- type: loadout + id: LoadoutUniformEnvirosuitColorMaroon + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorMaroon + - ClothingHeadEnvirohelmColorMaroon + +- type: loadout + id: LoadoutUniformEnvirosuitColorPink + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorPink + - ClothingHeadEnvirohelmColorPink + +- type: loadout + id: LoadoutUniformEnvirosuitColorYellow + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorYellow + - ClothingHeadEnvirohelmColorYellow + +- type: loadout + id: LoadoutUniformEnvirosuitColorPurple + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorPurple + - ClothingHeadEnvirohelmColorPurple + +- type: loadout + id: LoadoutUniformEnvirosuitColorOrange + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorOrange + - ClothingHeadEnvirohelmColorOrange + +- type: loadout + id: LoadoutUniformEnvirosuitColorLightBrown + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorLightBrown + - ClothingHeadEnvirohelmColorLightBrown + +- type: loadout + id: LoadoutUniformEnvirosuitColorBrown + category: Uniform + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitColorBrown + - ClothingHeadEnvirohelmColorBrown + +# Enviroslacks +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacks + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitEnviroslacks + - ClothingHeadEnvirohelmColorWhite + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksNegative + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksNegative + - ClothingHeadEnvirohelmColorBlack + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorRed + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksColorRed + - ClothingHeadEnvirohelmEnviroslacksColorRed + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorOrange + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksColorOrange + - ClothingHeadEnvirohelmEnviroslacksColorOrange + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorGreen + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Security + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksColorGreen + - ClothingHeadEnvirohelmEnviroslacksColorGreen + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorBlue + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksColorBlue + - ClothingHeadEnvirohelmEnviroslacksColorBlue + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksColorBrown + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksColorBrown + - ClothingHeadEnvirohelmColorWhite + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksMNK + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksMNK + - ClothingHeadEnvirohelmEnviroslacksMNK + +- type: loadout + id: LoadoutUniformEnvirosuitEnviroslacksMNKAlt + category: Uniform + cost: 1 + exclusive: true + canBeHeirloom: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsCivilian + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command + items: + - ClothingUniformEnvirosuitEnviroslacksMNKAlt + - ClothingHeadEnvirohelmEnviroslacksMNKAlt diff --git a/Resources/Prototypes/Loadouts/Generic/shoes.yml b/Resources/Prototypes/Loadouts/Generic/shoes.yml index cf3cbfb074..22e18c2527 100644 --- a/Resources/Prototypes/Loadouts/Generic/shoes.yml +++ b/Resources/Prototypes/Loadouts/Generic/shoes.yml @@ -248,6 +248,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutShoes + - !type:CharacterSpeciesRequirement # Due to a visual bug with envirosuits and heels they are disabled for now. + inverted: true + species: + - Plasmaman items: - ClothingShoesHighheelBoots # Socks @@ -295,6 +299,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutShoes + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman items: - ClothingShoesHighHeels @@ -308,6 +316,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutShoes + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Plasmaman items: - ClothingShoesHighHeelsLong diff --git a/Resources/Prototypes/Loadouts/Generic/uniform.yml b/Resources/Prototypes/Loadouts/Generic/uniform.yml index 3af5f79d8f..ea4287b0b1 100644 --- a/Resources/Prototypes/Loadouts/Generic/uniform.yml +++ b/Resources/Prototypes/Loadouts/Generic/uniform.yml @@ -551,6 +551,7 @@ - Command # Kimono + - type: loadout id: LoadoutClothingJumpsuitKimono category: Uniform diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml index 47dd7507c7..337f9701bb 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml @@ -14,6 +14,34 @@ items: - ClothingBackpackBlueshield +- type: loadout + id: LoadoutClothingSatchelBlueshield + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerBackpacks + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBackpackSatchelBlueshield + +- type: loadout + id: LoadoutClothingDuffelBlueshield + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerBackpacks + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBackpackDuffelBlueshield + # Belt # Ears @@ -25,6 +53,47 @@ # Gloves # Head +- type: loadout + id: LoadoutClothingBlueshieldBeretNavy + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerHats + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingHeadHatBeretNavy + +- type: loadout + id: LoadoutClothingBlueshieldBeretOfficer + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerHats + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingHeadHatBeretOfficer + +- type: loadout + id: LoadoutClothingBlueshieldCowboyHat + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerHats + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingHeadHatCowboyBlueshield # Id @@ -61,6 +130,76 @@ items: - ClothingBlueshieldArmoredCowboyJacket +- type: loadout + id: LoadoutClothingBlueshieldArmorVest + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmourVest + +- type: loadout + id: LoadoutClothingBlueshieldArmoredMarine + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmoredMarine + +- type: loadout + id: LoadoutClothingBlueshieldArmoredVest + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmoredVest + +- type: loadout + id: LoadoutClothingBlueshieldArmoredKimono + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmoredKimono + +- type: loadout + id: LoadoutClothingBlueshieldArmoredCoat + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmoredCoat + # Shoes # Uniforms @@ -90,4 +229,4 @@ jobs: - BlueshieldOfficer items: - - ClothingUniformJumpsuitBlueshieldOfficer \ No newline at end of file + - ClothingUniformJumpsuitBlueshieldOfficer diff --git a/Resources/Prototypes/Loadouts/Jobs/Epistemics/cataloger.yml b/Resources/Prototypes/Loadouts/Jobs/Epistemics/cataloger.yml index 811ae5e2f0..4eb0ba6973 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Epistemics/cataloger.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Epistemics/cataloger.yml @@ -60,6 +60,33 @@ - PillCanisterSpaceDrugs # Eyes +- type: loadout + id: LoadoutCatalogerEyesEpiHUD + category: JobsEpistemicsCataloger + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutCatalogerEquipment + - !type:CharacterJobRequirement + jobs: + - Librarian + items: + - ClothingEyesHudEpistemics + +- type: loadout + id: LoadoutCatalogerEyesEpiGlasses + category: JobsEpistemicsCataloger + cost: 3 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutCatalogerEquipment + - !type:CharacterJobRequirement + jobs: + - Librarian + items: + - ClothingEyesGlassesEpistemics # Gloves diff --git a/Resources/Prototypes/Loadouts/Jobs/Epistemics/chaplain.yml b/Resources/Prototypes/Loadouts/Jobs/Epistemics/chaplain.yml index 970d697014..7a4527cd7a 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Epistemics/chaplain.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Epistemics/chaplain.yml @@ -75,6 +75,33 @@ - PillCanisterSpaceDrugs # Eyes +- type: loadout + id: LoadoutChaplainEyesEpiHUD + category: JobsEpistemicsChaplain + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutChaplainEquipment + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingEyesHudEpistemics + +- type: loadout + id: LoadoutChaplainEyesEpiGlasses + category: JobsEpistemicsChaplain + cost: 3 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutChaplainEquipment + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingEyesGlassesEpistemics # Gloves diff --git a/Resources/Prototypes/Loadouts/Jobs/Epistemics/mystagogue.yml b/Resources/Prototypes/Loadouts/Jobs/Epistemics/mystagogue.yml index f36ca4f660..eaa7821a17 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Epistemics/mystagogue.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Epistemics/mystagogue.yml @@ -88,6 +88,33 @@ - PillCanisterSpaceDrugs # Eyes +- type: loadout + id: LoadoutMystagogueEyesEpiHUD + category: JobsEpistemicsMystagogue + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMystagogueEquipment + - !type:CharacterJobRequirement + jobs: + - ResearchDirector + items: + - ClothingEyesHudEpistemics + +- type: loadout + id: LoadoutMystagogueEyesEpiGlasses + category: JobsEpistemicsMystagogue + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMystagogueEquipment + - !type:CharacterJobRequirement + jobs: + - ResearchDirector + items: + - ClothingEyesGlassesEpistemics # Gloves diff --git a/Resources/Prototypes/Loadouts/Jobs/Epistemics/psionicMantis.yml b/Resources/Prototypes/Loadouts/Jobs/Epistemics/psionicMantis.yml index 6df1d8ef1f..d5f731c948 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Epistemics/psionicMantis.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Epistemics/psionicMantis.yml @@ -61,6 +61,34 @@ - PillCanisterCryptobiolin # Eyes +- type: loadout + id: LoadoutPsionicMantisEyesEpiHUD + category: JobsEpistemicsPsionicMantis + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutPsionicMantisEquipment + - !type:CharacterJobRequirement + jobs: + - ForensicMantis + items: + - ClothingEyesHudEpistemics + +- type: loadout + id: LoadoutPsionicMantisEyesEpiGlasses + category: JobsEpistemicsPsionicMantis + cost: 3 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutPsionicMantisEquipment + - !type:CharacterJobRequirement + jobs: + - ForensicMantis + items: + - ClothingEyesGlassesEpistemics + # Gloves diff --git a/Resources/Prototypes/Loadouts/Jobs/Logistics/courier.yml b/Resources/Prototypes/Loadouts/Jobs/Logistics/courier.yml index 2af937ef1a..ae89a2f422 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Logistics/courier.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Logistics/courier.yml @@ -105,3 +105,21 @@ - MailCarrier items: - ClothingUniformSkirtMailCarrier + +- type: loadout + id: LoadoutCourierUniformEnvirosuitMailCarrier + category: JobsLogisticsCourier + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutCourierUniforms + - !type:CharacterJobRequirement + jobs: + - MailCarrier + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - ClothingUniformEnvirosuitMailCarrier + - ClothingHeadEnvirohelmMailCarrier diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml b/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml index 73bb1b571b..bba1e6d064 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml @@ -644,6 +644,24 @@ items: - Truncheon +- type: loadout + id: LoadoutSecurityEquipmentEnergySword + category: JobsSecurityAUncategorized + cost: 4 + canBeHeirloom: true + guideEntry: SecurityWeapons + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 18000 # 5 hours + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityWeapons + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - EnergyCutlassSecurity + - type: loadout id: LoadoutSecurityPistolSvalin category: JobsSecurityAUncategorized @@ -926,6 +944,25 @@ items: - WeaponRevolverArgentiNonLethalSecurity +- type: loadout + id: LoadoutSecurityEnergyRevolver + category: JobsSecurityAUncategorized + cost: 10 + canBeHeirloom: true + guideEntry: SecurityWeapons + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityWeapons + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 18000 # 5 hours + - !type:CharacterDepartmentRequirement + departments: + - Security + - !type:CharacterAgeRequirement + min: 21 + items: + - WeaponEnergyRevolverSecurity # Eyes - type: loadout @@ -1292,3 +1329,39 @@ - Security items: - ClothingUniformJumpsuitSecSummer + +- type: loadout + id: LoadoutSecurityUniformEnvirosuitBlue + category: JobsSecurityAUncategorized + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityUniforms + - !type:CharacterDepartmentRequirement + departments: + - Security + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - ClothingUniformEnvirosuitSecBlue + - ClothingHeadEnvirohelmSecBlue + +- type: loadout + id: LoadoutSecurityUniformEnvirosuitGrey + category: JobsSecurityAUncategorized + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityUniforms + - !type:CharacterDepartmentRequirement + departments: + - Security + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + items: + - ClothingUniformEnvirosuitSecGrey + - ClothingHeadEnvirohelmSecGrey diff --git a/Resources/Prototypes/Mapping/mapping_templates.yml b/Resources/Prototypes/Mapping/mapping_templates.yml new file mode 100644 index 0000000000..69c81105a7 --- /dev/null +++ b/Resources/Prototypes/Mapping/mapping_templates.yml @@ -0,0 +1,1160 @@ +- type: mappingTemplate + id: Common + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: RandomPosterContraband + - !type:MappingTemplatePrototype + id: RandomPosterLegit + - !type:MappingTemplatePrototype + id: RandomPosterAny + - !type:MappingTemplatePrototype + id: FireAlarm + - !type:MappingTemplatePrototype + id: Firelock + - !type:MappingTemplatePrototype + id: AirAlarm + - !type:MappingTemplatePrototype + id: GasVentScrubber + - !type:MappingTemplatePrototype + id: AirSensor + - !type:MappingTemplatePrototype + id: APCBasic + - !type:MappingTemplatePrototype + id: CableApcExtension + - !type:MappingTemplatePrototype + id: CableMV + - !type:MappingTemplatePrototype + id: CableHV + - !type:MappingTemplatePrototype + id: WarpPointBombing + - !type:MappingTemplatePrototype + id: DisposalUnit + - !type:MappingTemplatePrototype + id: RandomVending + - !type:MappingTemplatePrototype + id: RandomVendingDrinks + - !type:MappingTemplatePrototype + id: RandomVendingSnacks + - !type:MappingTemplatePrototype + id: VendingMachineCigs + - !type:MappingTemplatePrototype + id: PottedPlantRandom + - !type:MappingTemplatePrototype + id: PottedPlantRandomPlastic + - !type:MappingTemplatePrototype + id: ClosetEmergencyFilledRandom + - !type:MappingTemplatePrototype + id: ClosetEmergencyN2FilledRandom + - !type:MappingTemplatePrototype + id: WallmountTelevision + - !type:MappingTemplatePrototype + id: Screen + - !type:MappingTemplatePrototype + id: Poweredlight + - !type:MappingTemplatePrototype + id: EmergencyLight + - !type:MappingTemplatePrototype + id: JanitorServiceLight + - !type:MappingTemplatePrototype + id: SpawnMobMouse + - !type:MappingTemplatePrototype + id: MouseTimedSpawner + - !type:MappingTemplatePrototype + id: SpawnMobCockroach + - !type:MappingTemplatePrototype + id: DefibrillatorCabinetFilled + - !type:MappingTemplatePrototype + id: StationMap + - !type:MappingTemplatePrototype + id: SurveillanceCameraGeneral + +- type: mappingTemplate + id: Service + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: Bar + children: + - !type:MappingTemplatePrototype + id: BoozeDispenser + - !type:MappingTemplatePrototype + id: SodaDispenser + - !type:MappingTemplatePrototype + id: VendingMachineBooze + - !type:MappingTemplatePrototype + id: DefaultStationBeaconBar + - !type:MappingTemplatePrototype + id: SurveillanceCameraService + - !type:MappingTemplatePrototype + id: Sink + - !type:MappingTemplatePrototype + id: Jukebox + - !type:MappingTemplatePrototype + id: KitchenReagentGrinder + - !type:MappingTemplatePrototype + id: RandomDrinkBottle + - !type:MappingTemplatePrototype + id: RandomDrinkGlass + - !type:MappingTemplatePrototype + id: SpawnMobMonkeyPunpun + - !type:MappingTemplatePrototype + id: VendingBarDrobe + - !type:MappingTemplatePrototype + id: LockerBoozeFilled + - !type:MappingTemplatePrototype + id: SpawnPointBartender + - !type:MappingTemplatePrototype + id: NuclearBombKeg + - !type:MappingTemplatePrototype + id: Kitchen + children: + - !type:MappingTemplatePrototype + id: KitchenMicrowave + - !type:MappingTemplatePrototype + id: VendingMachineDinnerware + - !type:MappingTemplatePrototype + id: Sink + - !type:MappingTemplatePrototype + id: KitchenReagentGrinder + - !type:MappingTemplatePrototype + id: VendingMachineChefDrobe + - !type:MappingTemplatePrototype + id: ClosetChefFilled + - !type:MappingTemplatePrototype + id: VendingMachineCondiments + - !type:MappingTemplatePrototype + id: SpawnMobAlexander + - !type:MappingTemplatePrototype + id: RandomFoodMeal + - !type:MappingTemplatePrototype + id: RandomFoodSingle + - !type:MappingTemplatePrototype + id: Fridge + children: + - !type:MappingTemplatePrototype + id: AtmosFixFreezerMarker + - !type:MappingTemplatePrototype + id: FloorDrain + - !type:MappingTemplatePrototype + id: KitchenSpike + - !type:MappingTemplatePrototype + id: CrateNPCCow + - !type:MappingTemplatePrototype + id: FoodCartCold + - !type:MappingTemplatePrototype + id: FoodCartHot + - !type:MappingTemplatePrototype + id: Hydroponics + children: + - !type:MappingTemplatePrototype + id: SpawnPointBotanist + - !type:MappingTemplatePrototype + id: hydroponicsTray + - !type:MappingTemplatePrototype + id: SeedExtractor + - !type:MappingTemplatePrototype + id: VendingMachineSeeds + - !type:MappingTemplatePrototype + id: VendingMachineNutri + - !type:MappingTemplatePrototype + id: WaterTankHighCapacity + - !type:MappingTemplatePrototype + id: DefaultStationBeaconBotany + - !type:MappingTemplatePrototype + id: VendingMachineHydrobe + - !type:MappingTemplatePrototype + id: WardrobeBotanistFilled + - !type:MappingTemplatePrototype + id: SpawnMobBandito + - !type:MappingTemplatePrototype + id: JanitorsCloset + children: + - !type:MappingTemplatePrototype + id: SpawnPointJanitor + - !type:MappingTemplatePrototype + id: VendingMachineJaniDrobe + - !type:MappingTemplatePrototype + id: JanitorialTrolley + - !type:MappingTemplatePrototype + id: ClosetJanitorFilled + - !type:MappingTemplatePrototype + id: CleanerDispenser + - !type:MappingTemplatePrototype + id: DefaultStationBeaconJanitorsCloset + - !type:MappingTemplatePrototype + id: ClosetL3JanitorFilled + - !type:MappingTemplatePrototype + id: SpawnMobRaccoonMorticia + - !type:MappingTemplatePrototype + id: Theater + children: + - !type:MappingTemplatePrototype + id: VendingMachineTheater + - !type:MappingTemplatePrototype + id: RandomInstruments + - !type:MappingTemplatePrototype + id: DefaultStationBeaconTheater + - !type:MappingTemplatePrototype + id: VendingMachineHappyHonk + - !type:MappingTemplatePrototype + id: SpawnPointClown + - !type:MappingTemplatePrototype + id: FoodPieBananaCream + - !type:MappingTemplatePrototype + id: BedsheetClown + - !type:MappingTemplatePrototype + id: LauncherCreamPie + - !type:MappingTemplatePrototype + id: SpawnPointMime + - !type:MappingTemplatePrototype + id: LockerMime + - !type:MappingTemplatePrototype + id: DrinkBottleOfNothingFull + - !type:MappingTemplatePrototype + id: BedsheetMime + - !type:MappingTemplatePrototype + id: FoodTartMime + - !type:MappingTemplatePrototype + id: SpawnPointMusician + - !type:MappingTemplatePrototype + id: ReportersOffice + children: + - !type:MappingTemplatePrototype + id: ComputerSurveillanceWirelessCameraMonitor + - !type:MappingTemplatePrototype + id: ComputerMassMedia + - !type:MappingTemplatePrototype + id: SurveillanceWirelessCameraMovableConstructed + - !type:MappingTemplatePrototype + id: SurveillanceWirelessCameraAnchoredConstructed + - !type:MappingTemplatePrototype + id: SpawnPointReporter + - !type:MappingTemplatePrototype + id: Church + children: + - !type:MappingTemplatePrototype + id: VendingMachineChapel + - !type:MappingTemplatePrototype + id: SpawnPointChaplain + - !type:MappingTemplatePrototype + id: WardrobeChapelFilled + - !type:MappingTemplatePrototype + id: Crematorium + - !type:MappingTemplatePrototype + id: CrateCoffin + - !type:MappingTemplatePrototype + id: AltarSpawner + - !type:MappingTemplatePrototype + id: DefaultStationBeaconChapel + - !type:MappingTemplatePrototype + id: CarpetChapel + +- type: mappingTemplate + id: Cargo + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: ComputerCargoOrders + - !type:MappingTemplatePrototype + id: Autolathe + - !type:MappingTemplatePrototype + id: IntercomSupply + - !type:MappingTemplatePrototype + id: VendingMachineChefDrobe + - !type:MappingTemplatePrototype + id: ComputerShuttleCargo + - !type:MappingTemplatePrototype + id: ComputerCargoBounty + - !type:MappingTemplatePrototype + id: SpawnPointCargoTechnician + - !type:MappingTemplatePrototype + id: DefaultStationBeaconSupply + - !type:MappingTemplatePrototype + id: SurveillanceCameraSupply + - !type:MappingTemplatePrototype + id: ConveyorBelt + - !type:MappingTemplatePrototype + id: MailingUnit + - !type:MappingTemplatePrototype + id: QMRoom + children: + - !type:MappingTemplatePrototype + id: SpawnPointQuartermaster + - !type:MappingTemplatePrototype + id: DresserQuarterMasterFilled + - !type:MappingTemplatePrototype + id: LockerQuarterMasterFilled + - !type:MappingTemplatePrototype + id: BedsheetQM + - !type:MappingTemplatePrototype + id: DefaultStationBeaconQMRoom + - !type:MappingTemplatePrototype + id: Salvage + children: + - !type:MappingTemplatePrototype + id: LockerSalvageSpecialistFilled + - !type:MappingTemplatePrototype + id: SuitStorageSalv + - !type:MappingTemplatePrototype + id: VendingMachineSalvage + - !type:MappingTemplatePrototype + id: OreProcessor + - !type:MappingTemplatePrototype + id: SpawnPointSalvageSpecialist + - !type:MappingTemplatePrototype + id: DefaultStationBeaconSalvage + - !type:MappingTemplatePrototype + id: WardrobeSalvageFilled + - !type:MappingTemplatePrototype + id: ComputerRadar + +- type: mappingTemplate + id: Command + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: Bridge + children: + - !type:MappingTemplatePrototype + id: ComputerComms + - !type:MappingTemplatePrototype + id: ComputerId + - !type:MappingTemplatePrototype + id: ComputerStationRecords + - !type:MappingTemplatePrototype + id: ComputerCriminalRecords + - !type:MappingTemplatePrototype + id: ComputerPowerMonitoring + - !type:MappingTemplatePrototype + id: ComputerCrewMonitoring + - !type:MappingTemplatePrototype + id: ComputerCargoOrders + - !type:MappingTemplatePrototype + id: DefaultStationBeaconBridge + - !type:MappingTemplatePrototype + id: SurveillanceCameraCommand + - !type:MappingTemplatePrototype + id: IntercomCommand + - !type:MappingTemplatePrototype + id: CaptainsQuarters + children: + - !type:MappingTemplatePrototype + id: SpawnPointCaptain + - !type:MappingTemplatePrototype + id: LockerCaptainFilled + - !type:MappingTemplatePrototype + id: LockerCaptainFilledNoLaser + - !type:MappingTemplatePrototype + id: DresserCaptainFilled + - !type:MappingTemplatePrototype + id: CaptainIDCard + - !type:MappingTemplatePrototype + id: ToiletGoldenEmpty + - !type:MappingTemplatePrototype + id: DefaultStationBeaconCaptainsQuarters + - !type:MappingTemplatePrototype + id: PinpointerNuclear + - !type:MappingTemplatePrototype + id: SpawnMobFoxRenault + - !type:MappingTemplatePrototype + id: DrinkFlask + - !type:MappingTemplatePrototype + id: HOPOffice + children: + - !type:MappingTemplatePrototype + id: LockerHeadOfPersonnelFilled + - !type:MappingTemplatePrototype + id: DresserHeadOfPersonnelFilled + - !type:MappingTemplatePrototype + id: SpawnMobCorgi + - !type:MappingTemplatePrototype + id: VendingMachineCart + - !type:MappingTemplatePrototype + id: CrateServicePersonnel + - !type:MappingTemplatePrototype + id: SpawnPointHeadOfPersonnel + - !type:MappingTemplatePrototype + id: DefaultStationBeaconHOPOffice + - !type:MappingTemplatePrototype + id: RubberStampApproved + - !type:MappingTemplatePrototype + id: RubberStampDenied + - !type:MappingTemplatePrototype + id: MaterialCloth + - !type:MappingTemplatePrototype + id: MaterialDurathread + - !type:MappingTemplatePrototype + id: BoxID + - !type:MappingTemplatePrototype + id: BoxPDA + +- type: mappingTemplate + id: Medical + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: Chemistry + children: + - !type:MappingTemplatePrototype + id: ChemMaster + - !type:MappingTemplatePrototype + id: ChemDispenser + - !type:MappingTemplatePrototype + id: LockerChemistryFilled + - !type:MappingTemplatePrototype + id: VendingMachineChemicals + - !type:MappingTemplatePrototype + id: FloorDrain + - !type:MappingTemplatePrototype + id: KitchenReagentGrinder + - !type:MappingTemplatePrototype + id: DefaultStationBeaconChemistry + - !type:MappingTemplatePrototype + id: VendingMachineChemDrobe + - !type:MappingTemplatePrototype + id: ChemistryHotplate + - !type:MappingTemplatePrototype + id: BoxBeaker + - !type:MappingTemplatePrototype + id: LargeBeaker + - !type:MappingTemplatePrototype + id: Beaker + - !type:MappingTemplatePrototype + id: MachineElectrolysisUnit + - !type:MappingTemplatePrototype + id: MachineCentrifuge + - !type:MappingTemplatePrototype + id: BaseGasCondenser + - !type:MappingTemplatePrototype + id: FuelDispenser + - !type:MappingTemplatePrototype + id: SmartFridge + - !type:MappingTemplatePrototype + id: HandLabeler + - !type:MappingTemplatePrototype + id: SpawnMobWalter + - !type:MappingTemplatePrototype + id: Medbay + children: + - !type:MappingTemplatePrototype + id: MedicalTechFab + - !type:MappingTemplatePrototype + id: DefibrillatorCabinetFilled + - !type:MappingTemplatePrototype + id: VendingMachineMediDrobe + - !type:MappingTemplatePrototype + id: LockerMedicineFilled + - !type:MappingTemplatePrototype + id: LockerMedicalFilled + - !type:MappingTemplatePrototype + id: LockerParamedicFilled + - !type:MappingTemplatePrototype + id: DefaultStationBeaconMedbay + - !type:MappingTemplatePrototype + id: SurveillanceCameraMedical + - !type:MappingTemplatePrototype + id: IntercomMedical + - !type:MappingTemplatePrototype + id: VendingMachineWallMedical + - !type:MappingTemplatePrototype + id: VendingMachineMedical + - !type:MappingTemplatePrototype + id: EmergencyRollerBed + - !type:MappingTemplatePrototype + id: CheapRollerBedSpawnFolded + - !type:MappingTemplatePrototype + id: CheapRollerBed + - !type:MappingTemplatePrototype + id: RollerBedSpawnFolded + - !type:MappingTemplatePrototype + id: RollerBed + - !type:MappingTemplatePrototype + id: Brutepack + - !type:MappingTemplatePrototype + id: Ointment + - !type:MappingTemplatePrototype + id: Gauze + - !type:MappingTemplatePrototype + id: Bloodpack + - !type:MappingTemplatePrototype + id: MedkitFilled + - !type:MappingTemplatePrototype + id: MedkitOxygenFilled + - !type:MappingTemplatePrototype + id: MedkitBruteFilled + - !type:MappingTemplatePrototype + id: MedkitToxinFilled + - !type:MappingTemplatePrototype + id: MedkitBurnFilled + - !type:MappingTemplatePrototype + id: ClothingHandsGlovesColorWhite + - !type:MappingTemplatePrototype + id: BoxPillCanister + - !type:MappingTemplatePrototype + id: PillCanister + - !type:MappingTemplatePrototype + id: PillCanisterRandom + - !type:MappingTemplatePrototype + id: WardrobeMedicalDoctorFilled + - !type:MappingTemplatePrototype + id: CrateMedical + - !type:MappingTemplatePrototype + id: BannerMedical + - !type:MappingTemplatePrototype + id: MedicalBed + - !type:MappingTemplatePrototype + id: StasisBed + - !type:MappingTemplatePrototype + id: MedkitFilled + - !type:MappingTemplatePrototype + id: MedkitOxygenFilled + - !type:MappingTemplatePrototype + id: MedkitBruteFilled + - !type:MappingTemplatePrototype + id: MedkitToxinFilled + - !type:MappingTemplatePrototype + id: MedkitBurnFilled + - !type:MappingTemplatePrototype + id: HospitalCurtains + - !type:MappingTemplatePrototype + id: HospitalCurtainsOpen + - !type:MappingTemplatePrototype + id: MorgueRoom + children: + - !type:MappingTemplatePrototype + id: Morgue + - !type:MappingTemplatePrototype + id: FloorDrain + - !type:MappingTemplatePrototype + id: BiomassReclaimer + - !type:MappingTemplatePrototype + id: DefaultStationBeaconMorgue + - !type:MappingTemplatePrototype + id: BoxBodyBag + - !type:MappingTemplatePrototype + id: SmartFridge + - !type:MappingTemplatePrototype + id: OperatingTable + - !type:MappingTemplatePrototype + id: CMORoom + children: + - !type:MappingTemplatePrototype + id: LockerChiefMedicalOfficerFilled + - !type:MappingTemplatePrototype + id: DresserChiefMedicalOfficerFilled + - !type:MappingTemplatePrototype + id: SuitStorageCMO + - !type:MappingTemplatePrototype + id: SpawnPointChiefMedicalOfficer + - !type:MappingTemplatePrototype + id: DefaultStationBeaconCMORoom + - !type:MappingTemplatePrototype + id: ComputerCrewMonitoring + - !type:MappingTemplatePrototype + id: BedsheetCMO + - !type:MappingTemplatePrototype + id: SpawnMobCatSpace + - !type:MappingTemplatePrototype + id: SpawnMobCat + - !type:MappingTemplatePrototype + id: SpawnMobCatBingus + - !type:MappingTemplatePrototype + id: SpawnMobCatRuntime + - !type:MappingTemplatePrototype + id: SpawnMobCatException + - !type:MappingTemplatePrototype + id: SpawnMobCatGeneric + - !type:MappingTemplatePrototype + id: SpawnMobCatKitten + - !type:MappingTemplatePrototype + id: Cryonics + children: + - !type:MappingTemplatePrototype + id: CryoPod + - !type:MappingTemplatePrototype + id: GasThermoMachineFreezer + - !type:MappingTemplatePrototype + id: GasThermoMachineFreezerEnabled + - !type:MappingTemplatePrototype + id: DefaultStationBeaconCryonics + - !type:MappingTemplatePrototype + id: CryoxadoneBeakerSmall + - !type:MappingTemplatePrototype + id: OperatingRoom + children: + - !type:MappingTemplatePrototype + id: OperatingTable + - !type:MappingTemplatePrototype + id: Drill + - !type:MappingTemplatePrototype + id: Hemostat + - !type:MappingTemplatePrototype + id: Scalpel + - !type:MappingTemplatePrototype + id: Saw + - !type:MappingTemplatePrototype + id: Cautery + - !type:MappingTemplatePrototype + id: Retractor + - !type:MappingTemplatePrototype + id: computerBodyScanner + - !type:MappingTemplatePrototype + id: DefaultStationBeaconSurgery + - !type:MappingTemplatePrototype + id: ClothingBackpackDuffelSurgeryFilled + - !type:MappingTemplatePrototype + id: CrateFreezer + - !type:MappingTemplatePrototype + id: CrateMedicalSurgery + - !type:MappingTemplatePrototype + id: CrateSurgery + - !type:MappingTemplatePrototype + id: ClothingHeadHatSurgcapBlue + - !type:MappingTemplatePrototype + id: ClothingHeadHatSurgcapPurple + - !type:MappingTemplatePrototype + id: ClothingHeadHatSurgcapGreen + - !type:MappingTemplatePrototype + id: Virology + children: + - !type:MappingTemplatePrototype + id: DiseaseDiagnoser + - !type:MappingTemplatePrototype + id: Vaccinator + - !type:MappingTemplatePrototype + id: VendingMachineViroDrobe + - !type:MappingTemplatePrototype + id: BoxMouthSwab + - !type:MappingTemplatePrototype + id: ClothingHandsGlovesNitrile + - !type:MappingTemplatePrototype + id: WardrobeVirologyFilled + +- type: mappingTemplate + id: Science + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: VendingMachineSciDrobe + - !type:MappingTemplatePrototype + id: LockerScienceFilled + - !type:MappingTemplatePrototype + id: SpawnPointScientist + - !type:MappingTemplatePrototype + id: SpawnPointResearchAssistant + - !type:MappingTemplatePrototype + id: SurveillanceCameraScience + - !type:MappingTemplatePrototype + id: IntercomScience + - !type:MappingTemplatePrototype + id: WardrobeScienceFilled + - !type:MappingTemplatePrototype + id: BannerScience + - !type:MappingTemplatePrototype + id: ResearchAndDevelopmentServer + - !type:MappingTemplatePrototype + id: DefaultStationBeaconServerRoom + - !type:MappingTemplatePrototype + id: CrewMonitoringServer + - !type:MappingTemplatePrototype + id: AnomalyGenerator + children: + - !type:MappingTemplatePrototype + id: MachineAnomalyGenerator + - !type:MappingTemplatePrototype + id: MachineAnomalyVessel + - !type:MappingTemplatePrototype + id: MachineAPE + - !type:MappingTemplatePrototype + id: AnomalyScanner + - !type:MappingTemplatePrototype + id: DefaultStationBeaconAnomalyGenerator + - !type:MappingTemplatePrototype + id: SheetPlasma + - !type:MappingTemplatePrototype + id: Robotics + children: + - !type:MappingTemplatePrototype + id: VendingMachineRoboDrobe + - !type:MappingTemplatePrototype + id: VendingMachineRobotics + - !type:MappingTemplatePrototype + id: BorgCharger + - !type:MappingTemplatePrototype + id: DefaultStationBeaconRobotics + - !type:MappingTemplatePrototype + id: ExosuitFabricator + - !type:MappingTemplatePrototype + id: ArtifactLab + children: + - !type:MappingTemplatePrototype + id: MachineArtifactAnalyzer + - !type:MappingTemplatePrototype + id: ComputerAnalysisConsole + - !type:MappingTemplatePrototype + id: CrateArtifactContainer + - !type:MappingTemplatePrototype + id: DefaultStationBeaconArtifactLab + - !type:MappingTemplatePrototype + id: RandomArtifactSpawner + - !type:MappingTemplatePrototype + id: ClosetRadiationSuitFilled + - !type:MappingTemplatePrototype + id: ClosetBombFilled + - !type:MappingTemplatePrototype + id: ClosetL3ScienceFilled + - !type:MappingTemplatePrototype + id: RDRoom + children: + - !type:MappingTemplatePrototype + id: SpawnPointResearchDirector + - !type:MappingTemplatePrototype + id: DresserResearchDirectorFilled + - !type:MappingTemplatePrototype + id: SuitStorageRD + - !type:MappingTemplatePrototype + id: LockerResearchDirectorFilled + - !type:MappingTemplatePrototype + id: ComputerRoboticsControl + - !type:MappingTemplatePrototype + id: DefaultStationBeaconRDRoom + - !type:MappingTemplatePrototype + id: BedsheetRD + - !type:MappingTemplatePrototype + id: SpawnMobSmile + - !type:MappingTemplatePrototype + id: PottedPlantRD + - !type:MappingTemplatePrototype + id: RnD + children: + - !type:MappingTemplatePrototype + id: ComputerResearchAndDevelopment + - !type:MappingTemplatePrototype + id: Protolathe + - !type:MappingTemplatePrototype + id: Autolathe + - !type:MappingTemplatePrototype + id: CircuitImprinter + - !type:MappingTemplatePrototype + id: DefaultStationBeaconRND + - !type:MappingTemplatePrototype + id: CapacitorStockPart + - !type:MappingTemplatePrototype + id: MicroManipulatorStockPart + - !type:MappingTemplatePrototype + id: MatterBinStockPart + +- type: mappingTemplate + id: Engineering + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: CERoom + children: + - !type:MappingTemplatePrototype + id: DresserChiefEngineerFilled + - !type:MappingTemplatePrototype + id: SuitStorageCE + - !type:MappingTemplatePrototype + id: LockerChiefEngineerFilled + - !type:MappingTemplatePrototype + id: DefaultStationBeaconCERoom + - !type:MappingTemplatePrototype + id: BedsheetCE + - !type:MappingTemplatePrototype + id: Atmos + children: + - !type:MappingTemplatePrototype + id: GasThermoMachineFreezer + - !type:MappingTemplatePrototype + id: GasThermoMachineHeater + - !type:MappingTemplatePrototype + id: PortableScrubber + - !type:MappingTemplatePrototype + id: DefaultStationBeaconAtmospherics + - !type:MappingTemplatePrototype + id: TegCirculator + - !type:MappingTemplatePrototype + id: TegCenter + - !type:MappingTemplatePrototype + id: HeatExchanger + - !type:MappingTemplatePrototype + id: LockerAtmosphericsFilled + - !type:MappingTemplatePrototype + id: SuitStorageAtmos + - !type:MappingTemplatePrototype + id: VendingMachineAtmosDrobe + - !type:MappingTemplatePrototype + id: WardrobeAtmosphericsFilled + - !type:MappingTemplatePrototype + id: SpawnMobCrabAtmos + - !type:MappingTemplatePrototype + id: NitrogenCanister + - !type:MappingTemplatePrototype + id: OxygenCanister + - !type:MappingTemplatePrototype + id: CarbonDioxideCanister + - !type:MappingTemplatePrototype + id: WaterVaporCanister + - !type:MappingTemplatePrototype + id: StorageCanister + - !type:MappingTemplatePrototype + id: PlasmaCanister + - !type:MappingTemplatePrototype + id: NitrousOxideCanister + - !type:MappingTemplatePrototype + id: Common + children: + - !type:MappingTemplatePrototype + id: SpawnPointBorg + - !type:MappingTemplatePrototype + id: GravityGenerator + - !type:MappingTemplatePrototype + id: DefaultStationBeaconAnomalyGenerator + - !type:MappingTemplatePrototype + id: SMESBasic + - !type:MappingTemplatePrototype + id: ComputerPowerMonitoring + - !type:MappingTemplatePrototype + id: DefaultStationBeaconPowerBank + - !type:MappingTemplatePrototype + id: Materials + children: + - !type:MappingTemplatePrototype + id: CableMVStack + - !type:MappingTemplatePrototype + id: CableApcStack + - !type:MappingTemplatePrototype + id: CableApcStack + - !type:MappingTemplatePrototype + id: SheetSteel + - !type:MappingTemplatePrototype + id: SheetGlass + - !type:MappingTemplatePrototype + id: SheetPlastic + - !type:MappingTemplatePrototype + id: PartRodMetal + - !type:MappingTemplatePrototype + id: SheetRPGlass + - !type:MappingTemplatePrototype + id: SheetRGlass + - !type:MappingTemplatePrototype + id: ClothingHandsGlovesColorYellow + - !type:MappingTemplatePrototype + id: ClothingEyesGlassesMeson + - !type:MappingTemplatePrototype + id: WeldingFuelTankFull + - !type:MappingTemplatePrototype + id: VendingMachineEngiDrobe + - !type:MappingTemplatePrototype + id: VendingMachineEngivend + - !type:MappingTemplatePrototype + id: LockerEngineerFilled + - !type:MappingTemplatePrototype + id: VendingMachineYouTool + - !type:MappingTemplatePrototype + id: CutterMachine + - !type:MappingTemplatePrototype + id: DefaultStationBeaconEngineering + - !type:MappingTemplatePrototype + id: SurveillanceCameraEngineering + - !type:MappingTemplatePrototype + id: IntercomEngineering + - !type:MappingTemplatePrototype + id: BoxMesonScanners + - !type:MappingTemplatePrototype + id: VendingMachineTankDispenserEngineering + - !type:MappingTemplatePrototype + id: ToolboxEmergencyFilled + - !type:MappingTemplatePrototype + id: ToolboxMechanicalFilled + - !type:MappingTemplatePrototype + id: ToolboxElectricalFilled + - !type:MappingTemplatePrototype + id: ClothingBeltUtilityEngineering + - !type:MappingTemplatePrototype + id: BoxLightbulb + - !type:MappingTemplatePrototype + id: BoxLighttube + - !type:MappingTemplatePrototype + id: BoxLightMixed + - !type:MappingTemplatePrototype + id: LightReplacer + - !type:MappingTemplatePrototype + id: Autolathe + - !type:MappingTemplatePrototype + id: WardrobeEngineeringFilled + - !type:MappingTemplatePrototype + id: BannerEngineering + - !type:MappingTemplatePrototype + id: ClothingEyesHudDiagnostic + - !type:MappingTemplatePrototype + id: ClothingHeadHatBeretEngineering + - !type:MappingTemplatePrototype + id: Telecoms + children: + - !type:MappingTemplatePrototype + id: TelecomServerFilledEngineering + - !type:MappingTemplatePrototype + id: TelecomServerFilledCommand + - !type:MappingTemplatePrototype + id: TelecomServerFilledMedical + - !type:MappingTemplatePrototype + id: TelecomServerFilledScience + - !type:MappingTemplatePrototype + id: TelecomServerFilledCommon + - !type:MappingTemplatePrototype + id: TelecomServerFilledService + - !type:MappingTemplatePrototype + id: TelecomServerFilledSecurity + - !type:MappingTemplatePrototype + id: TelecomServerFilledCargo + - !type:MappingTemplatePrototype + id: DefaultStationBeaconTelecoms + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterEngineering + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterSupply + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterCommand + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterMedical + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterService + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterSecurity + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterGeneral + - !type:MappingTemplatePrototype + id: SurveillanceCameraRouterScience + - !type:MappingTemplatePrototype + id: SurveillanceCameraWirelessRouterEntertainment + - !type:MappingTemplatePrototype + id: SolarPanels + children: + - !type:MappingTemplatePrototype + id: SolarAssembly + - !type:MappingTemplatePrototype + id: SolarPanel + - !type:MappingTemplatePrototype + id: SolarPanelBroken + - !type:MappingTemplatePrototype + id: SolarTracker + - !type:MappingTemplatePrototype + id: ComputerSolarControl + - !type:MappingTemplatePrototype + id: DefaultStationBeaconSolars + - !type:MappingTemplatePrototype + id: AME + children: + - !type:MappingTemplatePrototype + id: DefaultStationBeaconAME + - !type:MappingTemplatePrototype + id: CrateEngineeringAMEShielding + - !type:MappingTemplatePrototype + id: CrateEngineeringAMEJar + - !type:MappingTemplatePrototype + id: CrateEngineeringAMEControl + - !type:MappingTemplatePrototype + id: AmeController + - !type:MappingTemplatePrototype + id: PARoom + children: + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEmitterPortUnfinished + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEmitterPort + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEmitterStarboard + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEmitterStarboardUnfinished + - !type:MappingTemplatePrototype + id: ParticleAcceleratorPowerBox + - !type:MappingTemplatePrototype + id: ParticleAcceleratorPowerBoxUnfinished + - !type:MappingTemplatePrototype + id: ParticleAcceleratorFuelChamber + - !type:MappingTemplatePrototype + id: ParticleAcceleratorFuelChamberUnfinished + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEndCapUnfinished + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEndCap + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEmitterForeUnfinished + - !type:MappingTemplatePrototype + id: ParticleAcceleratorEmitterFore + - !type:MappingTemplatePrototype + id: DefaultStationBeaconSingularity + +- type: mappingTemplate + id: Security + rootType: Entity + children: + - !type:MappingTemplatePrototype + id: HOSRoom + children: + - !type:MappingTemplatePrototype + id: SpawnPointHeadOfSecurity + - !type:MappingTemplatePrototype + id: LockerHeadOfSecurityFilled + - !type:MappingTemplatePrototype + id: SuitStorageHOS + - !type:MappingTemplatePrototype + id: DresserHeadOfSecurityFilled + - !type:MappingTemplatePrototype + id: BedsheetHOS + - !type:MappingTemplatePrototype + id: DefaultStationBeaconHOSRoom + - !type:MappingTemplatePrototype + id: SpawnMobShiva + - !type:MappingTemplatePrototype + id: Brig + children: + - !type:MappingTemplatePrototype + id: VendingMachineSecDrobe + - !type:MappingTemplatePrototype + id: VendingMachineSec + - !type:MappingTemplatePrototype + id: LockerSecurityFilled + - !type:MappingTemplatePrototype + id: Stunbaton + - !type:MappingTemplatePrototype + id: LampInterrogator + - !type:MappingTemplatePrototype + id: BoxMRE + - !type:MappingTemplatePrototype + id: Handcuffs + - !type:MappingTemplatePrototype + id: ComputerCriminalRecords + - !type:MappingTemplatePrototype + id: ComputerSurveillanceCameraMonitor + - !type:MappingTemplatePrototype + id: SpawnPointSecurityCadet + - !type:MappingTemplatePrototype + id: SpawnPointSecurityOfficer + - !type:MappingTemplatePrototype + id: DefaultStationBeaconBrig + - !type:MappingTemplatePrototype + id: SurveillanceCameraSecurity + - !type:MappingTemplatePrototype + id: IntercomSecurity + - !type:MappingTemplatePrototype + id: LockerEvidence + - !type:MappingTemplatePrototype + id: BannerSecurity + - !type:MappingTemplatePrototype + id: WardrobePrisonFilled + - !type:MappingTemplatePrototype + id: BrigTimer + - !type:MappingTemplatePrototype + id: WardensOffice + children: + - !type:MappingTemplatePrototype + id: DresserWardenFilled + - !type:MappingTemplatePrototype + id: SuitStorageWarden + - !type:MappingTemplatePrototype + id: LockerWardenFilled + - !type:MappingTemplatePrototype + id: SpawnPointWarden + - !type:MappingTemplatePrototype + id: DefaultStationBeaconWardensOffice + - !type:MappingTemplatePrototype + id: ComputerCriminalRecords + - !type:MappingTemplatePrototype + id: Armory + children: + - !type:MappingTemplatePrototype + id: SecurityTechFab + - !type:MappingTemplatePrototype + id: SuitStorageSec + - !type:MappingTemplatePrototype + id: WeaponSubMachineGunDrozd + - !type:MappingTemplatePrototype + id: WeaponShotgunKammerer + - !type:MappingTemplatePrototype + id: WeaponShotgunEnforcer + - !type:MappingTemplatePrototype + id: WeaponShotgunEnforcerRubber + - !type:MappingTemplatePrototype + id: WeaponShotgunDoubleBarreledRubber + - !type:MappingTemplatePrototype + id: WeaponShotgunDoubleBarreled + - !type:MappingTemplatePrototype + id: WeaponPistolMk58 + - !type:MappingTemplatePrototype + id: WeaponSubMachineGunWt550 + - !type:MappingTemplatePrototype + id: WeaponRifleLecter + - !type:MappingTemplatePrototype + id: WeaponLaserCannon + - !type:MappingTemplatePrototype + id: WeaponLaserCarbine + - !type:MappingTemplatePrototype + id: WeaponLaserGun + - !type:MappingTemplatePrototype + id: WeaponDisabler + - !type:MappingTemplatePrototype + id: WeaponCapacitorRecharger + - !type:MappingTemplatePrototype + id: DefaultStationBeaconArmory + - !type:MappingTemplatePrototype + id: PortableFlasher + - !type:MappingTemplatePrototype + id: DeployableBarrier + - !type:MappingTemplatePrototype + id: ClothingOuterArmorRiot + - !type:MappingTemplatePrototype + id: ClothingOuterArmorBulletproof + - !type:MappingTemplatePrototype + id: RiotLaserShield + - !type:MappingTemplatePrototype + id: RiotBulletShield + - !type:MappingTemplatePrototype + id: RiotShield + - !type:MappingTemplatePrototype + id: LootSpawnerArmoryArmorOnly + - !type:MappingTemplatePrototype + id: LootSpawnerArmoryGunsOnly + - !type:MappingTemplatePrototype + id: LootSpawnerArmory + - !type:MappingTemplatePrototype + id: PermaBrig + children: + - !type:MappingTemplatePrototype + id: VendingMachineSustenance + - !type:MappingTemplatePrototype + id: DefaultStationBeaconPermaBrig + - !type:MappingTemplatePrototype + id: SuitStorageEVAPrisoner + - !type:MappingTemplatePrototype + id: DetectiveRoom + children: + - !type:MappingTemplatePrototype + id: VendingMachineDetDrobe + - !type:MappingTemplatePrototype + id: SpawnPointDetective + - !type:MappingTemplatePrototype + id: LockerDetectiveFilled + - !type:MappingTemplatePrototype + id: DefaultStationBeaconDetectiveRoom + - !type:MappingTemplatePrototype + id: BoxForensicPad + - !type:MappingTemplatePrototype + id: Gunnery + children: + - !type:MappingTemplatePrototype + id: TargetClown + - !type:MappingTemplatePrototype + id: TargetSyndicate + - !type:MappingTemplatePrototype + id: TargetHuman + - !type:MappingTemplatePrototype + id: TargetStrange + - !type:MappingTemplatePrototype + id: WeaponLaserCarbinePractice + - !type:MappingTemplatePrototype + id: WeaponDisablerPractice + diff --git a/Resources/Prototypes/Maps/CentralCommand/harmony.yml b/Resources/Prototypes/Maps/CentralCommand/harmony.yml new file mode 100644 index 0000000000..808ade12e8 --- /dev/null +++ b/Resources/Prototypes/Maps/CentralCommand/harmony.yml @@ -0,0 +1,14 @@ +- type: gameMap + id: CentCommHarmony + mapName: 'Central Command' + mapPath: /Maps/CentralCommand/harmony.yml + minPlayers: 0 + stations: + centcomm: + stationProto: NanotrasenCentralCommand + components: + - type: StationNameSetup + mapNameTemplate: '{0} Central Command {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'HM' \ No newline at end of file diff --git a/Resources/Prototypes/Maps/centcomm.yml b/Resources/Prototypes/Maps/CentralCommand/main.yml similarity index 72% rename from Resources/Prototypes/Maps/centcomm.yml rename to Resources/Prototypes/Maps/CentralCommand/main.yml index 47dc5ca1f3..2c83c2d11b 100644 --- a/Resources/Prototypes/Maps/centcomm.yml +++ b/Resources/Prototypes/Maps/CentralCommand/main.yml @@ -1,8 +1,8 @@ - type: gameMap - id: CentComm + id: CentCommMain mapName: 'Central Command' - mapPath: /Maps/centcomm.yml - minPlayers: 10 + mapPath: /Maps/CentralCommand/main.yml + minPlayers: 0 stations: centcomm: stationProto: NanotrasenCentralCommand @@ -11,4 +11,4 @@ mapNameTemplate: '{0} Central Command {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'TG' + prefixCreator: 'TG' \ No newline at end of file diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 6e8a3ab389..6907a180a8 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -17,4 +17,5 @@ - Gax - Rad - Meta + - Box # - Europa diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml new file mode 100644 index 0000000000..accdb67753 --- /dev/null +++ b/Resources/Prototypes/Maps/box.yml @@ -0,0 +1,81 @@ +- type: gameMap + id: Box + mapName: 'Box Station' + mapPath: /Maps/box.yml + minPlayers: 15 # + maxPlayers: 85 # + stations: + Boxstation: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Box Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml + - type: StationJobs + availableJobs: + #service + Captain: [ 1, 1 ] + NanotrasenRepresentative: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] + Magistrate: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 2, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 3 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 4, 4 ] + SeniorEngineer: [ 1, 1 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 4, 4 ] + Paramedic: [ 1, 1 ] + MedicalIntern: [ 4, 4 ] + Psychologist: [ 1, 1 ] + SeniorPhysician: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + Roboticist: [ 1, 2 ] + ResearchAssistant: [ 4, 4 ] + ForensicMantis: [ 1, 1 ] + SeniorResearcher: [ 1, 1 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 5, 5 ] + Brigmedic: [ 1, 1 ] + Prisoner: [ 1, 3 ] + PrisonGuard: [ 1, 2 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + SeniorOfficer: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 3, 5 ] + MailCarrier: [ 1, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 2 ] + Reporter: [ 1, 1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] + MedicalBorg: [ 2, 2 ] + diff --git a/Resources/Prototypes/Mood/genericPositiveEffects.yml b/Resources/Prototypes/Mood/genericPositiveEffects.yml index c3d3acc8a5..4b30007611 100644 --- a/Resources/Prototypes/Mood/genericPositiveEffects.yml +++ b/Resources/Prototypes/Mood/genericPositiveEffects.yml @@ -1,4 +1,4 @@ -- type: moodEffect +- type: moodEffect id: BeingHugged moodChange: 3 timeout: 120 @@ -52,3 +52,13 @@ moodChange: 5 timeout: 60 # A bit of time before they realize it's gone moodletOnEnd: HeirloomNeutral + +- type: moodEffect + id: PlasmamanIngestMilk + moodChange: 7 + timeout: 60 + +- type: moodEffect + id: PlasmamanIngestPlasma + moodChange: 14 + timeout: 60 diff --git a/Resources/Prototypes/NPCs/batonbot.yml b/Resources/Prototypes/NPCs/batonbot.yml new file mode 100644 index 0000000000..9169f2a324 --- /dev/null +++ b/Resources/Prototypes/NPCs/batonbot.yml @@ -0,0 +1,12 @@ +- type: htnCompound + id: BatonbotCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:UtilityOperator + proto: NearbyMeleeTargets + - !type:HTNCompoundTask + task: MeleeAttackTargetCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/NPCs/disablerbot.yml b/Resources/Prototypes/NPCs/disablerbot.yml new file mode 100644 index 0000000000..6e0ce231d2 --- /dev/null +++ b/Resources/Prototypes/NPCs/disablerbot.yml @@ -0,0 +1,9 @@ +- type: htnCompound + id: DisablerbotCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: InnateRangedCombatCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/NPCs/gladiabot.yml b/Resources/Prototypes/NPCs/gladiabot.yml new file mode 100644 index 0000000000..5e7170ee27 --- /dev/null +++ b/Resources/Prototypes/NPCs/gladiabot.yml @@ -0,0 +1,12 @@ +- type: htnCompound + id: GladiabotCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:UtilityOperator + proto: NearbyMeleeTargets + - !type:HTNCompoundTask + task: MeleeAttackTargetCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml index e27a7f8be1..33e45980da 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml @@ -4,7 +4,7 @@ id: FelinidEarsBasic bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: basic_outer @@ -15,7 +15,7 @@ id: FelinidEarsCurled bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: curled_outer @@ -26,7 +26,7 @@ id: FelinidEarsDroopy bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: droopy_outer @@ -37,7 +37,7 @@ id: FelinidEarsFuzzy bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: basic_outer @@ -48,7 +48,7 @@ id: FelinidEarsStubby bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: stubby_outer @@ -59,7 +59,7 @@ id: FelinidEarsTall bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: tall_outer @@ -72,7 +72,7 @@ id: FelinidEarsTorn bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: torn_outer @@ -83,7 +83,7 @@ id: FelinidEarsWide bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Humans get felinid markings, Tajaran directly use felinid tails sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: wide_outer @@ -96,7 +96,7 @@ id: FelinidTailBasic bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Humans get felinid markings sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip @@ -109,7 +109,7 @@ id: FelinidTailBasicWithBow bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Humans get felinid markings, Tajaran directly use felinid tails sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip @@ -124,7 +124,7 @@ id: FelinidTailBasicWithBell bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Humans get felinid markings, Tajaran directly use felinid tails sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip @@ -139,7 +139,7 @@ id: FelinidTailBasicWithBowAndBell bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human, Tajaran] # Einstein Engines - Humans get felinid markings, Tajaran directly use felinid tails sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml index f2a16126b9..af0eb5f0f5 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml @@ -122,3 +122,4 @@ - NewsReaderCartridge - GlimmerMonitorCartridge - NanoChatCartridge + - PsiWatchCartridge diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml index 5a90e77a58..ca4d55c2f8 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml @@ -13,6 +13,8 @@ - type: startingGear id: MailCarrierGear + subGear: + - MailCarrierPlasmamanGear equipment: head: ClothingHeadMailCarrier jumpsuit: ClothingUniformMailCarrier @@ -24,3 +26,11 @@ innerClothingSkirt: ClothingUniformSkirtMailCarrier satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: MailCarrierPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMailCarrier + head: ClothingHeadEnvirohelmMailCarrier + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml index 6a143a78b1..3769017469 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml @@ -18,6 +18,14 @@ - !type:CharacterTraitRequirement traits: - AnomalousPositronics + - !type:CharacterTraitRequirement + inverted: true + traits: + - Pacifist + - !type:CharacterTraitRequirement + inverted: true + traits: + - ShadowkinBlackeye startingGear: ForensicMantisGear icon: "JobIconForensicMantis" supervisors: job-supervisors-rd @@ -43,6 +51,8 @@ - type: startingGear id: ForensicMantisGear + subGear: + - ForensicMantisPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitMantis back: ClothingBackpackMantisFilled @@ -58,3 +68,11 @@ innerClothingSkirt: ClothingUniformSkirtMantis satchel: ClothingBackpackSatchelMantisFilled duffelbag: ClothingBackpackDuffelMantisFilled + +- type: startingGear + id: ForensicMantisPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMantis + head: ClothingHeadEnvirohelmMantis + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml index b82178a936..0ff1a63238 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml @@ -3,12 +3,6 @@ name: job-name-guard description: job-description-guard playTimeTracker: JobPrisonGuard - requirements: - - !type:CharacterOverallTimeRequirement - min: 18000 - - !type:CharacterDepartmentTimeRequirement - department: Security - min: 14400 startingGear: PrisonGuardGear alwaysUseSpawner: true canBeAntag: false @@ -23,10 +17,16 @@ special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] - + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: PrisonGuardGear + subGear: + - PrisonGuardPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitPrisonGuard back: ClothingBackpackSecurityFilled @@ -39,3 +39,11 @@ innerClothingSkirt: ClothingUniformJumpsuitPrisonGuard satchel: ClothingBackpackSatchelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled + +- type: startingGear + id: PrisonGuardPlasmamanGear + parent: BasePlasmamanSecurityGear + equipment: + jumpsuit: ClothingUniformEnvirosuitPrisonGuard + head: ClothingHeadEnvirohelmPrisonGuard + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml index b2d54651e4..6b1c809c46 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml @@ -18,9 +18,16 @@ - !type:AddTraitSpecial traits: - MartialArtist + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 3 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellPotato - type: startingGear id: NyanoGladiatorGear + subGear: + - GladiatorPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitGladiator outerClothing: ClothingOuterArmorGladiator @@ -28,3 +35,11 @@ ears: ClothingHeadsetGrey innerClothingSkirt: UniformShortsRedWithTop #any other possessions, spawn in cell + +- type: startingGear + id: GladiatorPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitGladiator + head: ClothingHeadEnvirohelmGladiator + gloves: ClothingHandsGlovesEnviroglovesGladiator diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml index de6212dacf..9f1bbc24e9 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml @@ -3,9 +3,6 @@ name: job-name-martialartist description: job-description-martialartist playTimeTracker: JobMartialArtist - requirements: - - !type:CharacterOverallTimeRequirement - min: 7200 #2 hours startingGear: MartialArtistGear icon: "JobIconMartialArtist" supervisors: job-supervisors-hop @@ -22,6 +19,8 @@ - type: startingGear id: MartialArtistGear + subGear: + - MartialArtistPlasmamanGear equipment: jumpsuit: ClothingUniformMartialGi belt: ClothingBeltMartialBlack @@ -32,3 +31,12 @@ gloves: ClothingHandsGlovesBoxingRed satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: MartialArtistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMartialGi + head: ClothingHeadEnvirohelmMartialGi + # No envirogloves, use the boxing gloves instead + shoes: ClothingShoesColorBlack diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml index e892a48041..f6cf47ac04 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml @@ -13,16 +13,40 @@ - !type:CharacterDepartmentTimeRequirement department: Security min: 21600 + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Shadowkin + - !type:CharacterTraitRequirement + traits: + - ShadowkinBlackeye special: - !type:AddComponentSpecial components: - type: Pacified + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 3 # Poor prisoners with not a lot of self-extinguishes. + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellPotato - type: startingGear id: PrisonerGear + subGear: + - PrisonerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitPrisoner shoes: ClothingShoesColorBlack id: PrisonerPDA ears: ClothingHeadsetPrison #deltaV innerClothingSkirt: ClothingUniformJumpsuitPrisoner + +- type: startingGear + id: PrisonerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitPrisoner + head: ClothingHeadEnvirohelmPrisoner + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Nyanotrasen/Species/felinid.yml b/Resources/Prototypes/Nyanotrasen/Species/felinid.yml index 2bb8d02c47..a476dfd9ef 100644 --- a/Resources/Prototypes/Nyanotrasen/Species/felinid.yml +++ b/Resources/Prototypes/Nyanotrasen/Species/felinid.yml @@ -1,7 +1,7 @@ - type: species id: Felinid name: species-name-felinid - roundStart: true + roundStart: false prototype: MobFelinid sprites: MobHumanSprites defaultSkinTone: "#c0967f" diff --git a/Resources/Prototypes/Nyanotrasen/metempsychoticHumanoids.yml b/Resources/Prototypes/Nyanotrasen/metempsychoticHumanoids.yml index 891067b1c1..ea8cc1ae4c 100644 --- a/Resources/Prototypes/Nyanotrasen/metempsychoticHumanoids.yml +++ b/Resources/Prototypes/Nyanotrasen/metempsychoticHumanoids.yml @@ -7,7 +7,9 @@ Arachnid: 1 Harpy: 1 Moth: 1 + Tajaran: 1 # Einstein Engines Diona: 0.5 Reptilian: 0.5 SlimePerson: 0.5 Vulpkanin: 0.5 + Plasmaman: 0.25 diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 16dc7c6d31..6722fbe8de 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -32,6 +32,7 @@ id: TraitorObjectiveGroupKill weights: KillRandomPersonObjective: 1 + TeachLessonRandomPersonObjective: 0.25 KillRandomHeadObjective: 0.25 - type: weightedRandom @@ -46,7 +47,7 @@ weights: RandomTraitorAliveObjective: 1 RandomTraitorProgressObjective: 1 - RaiseGlimmerObjective: 0.5 # Nyanotrasen - Raise glimmer to a target amount, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml + # RaiseGlimmerObjective: 0.5 # Nyanotrasen - Raise glimmer to a target amount, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml #Thief groups - type: weightedRandom diff --git a/Resources/Prototypes/Palettes/atmos.yml b/Resources/Prototypes/Palettes/atmos.yml new file mode 100644 index 0000000000..f608a82a05 --- /dev/null +++ b/Resources/Prototypes/Palettes/atmos.yml @@ -0,0 +1,9 @@ +- type: palette + id: Atmos + name: Atmos + colors: + waste: '#990000' + distro: '#0055CC' + air: '#03FCD3' + mix: '#947507' + diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 3f9fb7b53d..52b6533153 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -266,6 +266,25 @@ effects: - !type:SatiateThirst factor: 4 + - !type:HealthChange + conditions: + - !type:OrganType + type: Plasmaman + damage: + groups: + Brute: -0.90 + types: + Heat: -0.30 + Shock: -0.30 + Caustic: -0.30 + - !type:ChemAddMoodlet + conditions: + - !type:OrganType + type: Plasmaman + - !type:ReagentThreshold + reagent: Milk + min: 4 + moodPrototype: PlasmamanIngestMilk - type: reagent id: MilkGoat diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index caa2e5acdc..b81b639b8b 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -32,6 +32,9 @@ - !type:OrganType type: Vox shouldHave: false + - !type:OrganType + type: Plasmaman + shouldHave: false ratios: CarbonDioxide: 1.0 Oxygen: -1.0 @@ -46,7 +49,7 @@ Poison: 7 - !type:AdjustAlert - alertType: Toxins + alertType: HighOxygen conditions: - !type:ReagentThreshold min: 0.5 @@ -54,6 +57,25 @@ type: Vox clear: true time: 5 + - !type:HealthChange + conditions: + - !type:OrganType + type: Plasmaman + scaleByQuantity: true + ignoreResistances: true + damage: + types: + Poison: + 7 + - !type:AdjustAlert + alertType: HighOxygen + conditions: + - !type:ReagentThreshold + min: 0.5 + - !type:OrganType + type: Plasmaman + clear: true + time: 5 - type: reagent id: Plasma @@ -72,15 +94,27 @@ Poison: effects: - !type:HealthChange + conditions: + - !type:OrganType + type: Plasmaman + shouldHave: false damage: types: Poison: 3 - !type:AdjustReagent + conditions: + - !type:OrganType + type: Plasmaman + shouldHave: false reagent: Inaprovaline amount: -2.0 Gas: effects: - !type:HealthChange + conditions: + - !type:OrganType + type: Plasmaman + shouldHave: false scaleByQuantity: true ignoreResistances: true damage: @@ -91,10 +125,48 @@ - !type:AdjustAlert alertType: Toxins conditions: + - !type:OrganType + type: Plasmaman + shouldHave: false - !type:ReagentThreshold min: 1.5 clear: True time: 5 + - !type:Oxygenate + factor: 4 + conditions: + - !type:OrganType + type: Plasmaman + - !type:ModifyLungGas + conditions: + - !type:OrganType + type: Plasmaman + ratios: + Nitrogen: 1.0 # Interesting exhale for plasmamen + Plasma: -1.0 + Medicine: + effects: + - !type:HealthChange + conditions: + - !type:OrganType + type: Plasmaman + damage: + groups: + Brute: -2 + types: + Heat: -0.66 + Shock: -0.66 + Caustic: -0.66 + Asphyxiation: -0.66 + Poison: -0.66 + - !type:ChemAddMoodlet + conditions: + - !type:OrganType + type: Plasmaman + - !type:ReagentThreshold + reagent: Plasma + min: 4 + moodPrototype: PlasmamanIngestPlasma reactiveEffects: Flammable: methods: [ Touch ] diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml index 4792bb216f..b3c9cac926 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml @@ -117,15 +117,15 @@ amount: 2 steps: - tool: Prying + doAfter: 1 - node: computer entity: !type:BoardNodeEntity { container: board } edges: - to: monitorUnsecured - conditions: - - !type:AllWiresCut {} steps: - - tool: Screwing + - tool: Prying + doAfter: 1 - node: monitorBroken entity: ComputerBroken diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/gas_pipe_sensor.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/gas_pipe_sensor.yml new file mode 100644 index 0000000000..bda6d036e9 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/gas_pipe_sensor.yml @@ -0,0 +1,29 @@ +- type: constructionGraph + id: GasPipeSensor + start: start + graph: + - node: start + edges: + - to: sensor + steps: + - material: Steel + amount: 2 + doAfter: 1 + + - node: sensor + entity: GasPipeSensor + actions: + - !type:SetAnchor + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 2 + - !type:DeleteEntity + conditions: + - !type:EntityAnchored + anchored: false + steps: + - tool: Welding + doAfter: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml index 922e8857c9..2f232877c5 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml @@ -25,6 +25,24 @@ steps: - tool: Screwing doAfter: 2 + - to: solarpanelplasma + conditions: + - !type:EntityAnchored + steps: + - material: PlasmaGlass + amount: 2 + doAfter: 0.5 + completed: + - !type:SnapToGrid + - to: solarpaneluranium + conditions: + - !type:EntityAnchored + steps: + - material: UraniumGlass + amount: 2 + doAfter: 0.5 + completed: + - !type:SnapToGrid - to: solarpanel conditions: - !type:EntityAnchored @@ -42,7 +60,7 @@ name: Solar Tracker Electronics icon: sprite: Objects/Misc/module.rsi - state: id_mod + state: engineering doAfter: 1 - material: Glass amount: 2 @@ -50,6 +68,40 @@ completed: - !type:SnapToGrid + - node: solarpanelplasma + entity: SolarPanelPlasma + edges: + - to: solarassembly + completed: + - !type:SnapToGrid + southRotation: true + - !type:SpawnPrototype + prototype: SheetPGlass1 + amount: 2 + conditions: + - !type:EntityAnchored + anchored: true + steps: + - tool: Prying + doAfter: 0.5 + + - node: solarpaneluranium + entity: SolarPanelUranium + edges: + - to: solarassembly + completed: + - !type:SnapToGrid + southRotation: true + - !type:SpawnPrototype + prototype: SheetUGlass1 + amount: 2 + conditions: + - !type:EntityAnchored + anchored: true + steps: + - tool: Prying + doAfter: 0.5 + - node: solarpanel entity: SolarPanel edges: @@ -84,6 +136,40 @@ - tool: Prying doAfter: 0.5 + - node: solarpanelplasma_broken + entity: SolarPanelPlasmaBroken + edges: + - to: solarassembly + completed: + - !type:SnapToGrid + southRotation: true + - !type:SpawnPrototype + prototype: ShardGlassPlasma + amount: 2 + conditions: + - !type:EntityAnchored + anchored: true + steps: + - tool: Prying + doAfter: 0.5 + + - node: solarpaneluranium_broken + entity: SolarPanelUraniumBroken + edges: + - to: solarassembly + completed: + - !type:SnapToGrid + southRotation: true + - !type:SpawnPrototype + prototype: ShardGlassUranium + amount: 2 + conditions: + - !type:EntityAnchored + anchored: true + steps: + - tool: Prying + doAfter: 0.5 + - node: solartracker entity: SolarTracker edges: diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index 82c16de7b6..1044821800 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -384,6 +384,21 @@ objectType: Structure canRotate: true +- type: construction + name: gas pipe sensor + id: GasPipeSensor + graph: GasPipeSensor + startNode: start + targetNode: sensor + category: construction-category-structures + description: Reports on the status of the gas within the attached pipe network. + icon: + sprite: Structures/Piping/Atmospherics/gas_pipe_sensor.rsi + state: icon + placementMode: SnapgridCenter + objectType: Structure + canRotate: true + # ATMOS PIPES - type: construction name: gas pipe half diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/batonbot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/batonbot.yml new file mode 100644 index 0000000000..a5bbdc322f --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/batonbot.yml @@ -0,0 +1,28 @@ +- type: constructionGraph + id: BatonBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: proximity sensor + doAfter: 2 + - tag: Stunbaton + icon: + sprite: Objects/Weapons/Melee/stunbaton.rsi + state: stunbaton_on + name: stunbaton + doAfter: 2 + - tag: ClothingHeadHelmetBasic + icon: + sprite: DeltaV/Clothing/Head/Helmets/security.rsi + state: icon + name: Security Helmet + doAfter: 2 + - node: bot + entity: MobBatonBot diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/disablerbot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/disablerbot.yml new file mode 100644 index 0000000000..e56c37d31f --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/disablerbot.yml @@ -0,0 +1,28 @@ +- type: constructionGraph + id: DisablerBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: Proximity sensor + doAfter: 2 + - tag: WeaponDisabler + icon: + sprite: Objects/Weapons/Guns/Battery/disabler.rsi + state: base + name: Disabler + doAfter: 2 + - tag: ClothingHeadHelmetBasic + icon: + sprite: DeltaV/Clothing/Head/Helmets/security.rsi + state: icon + name: Security Helmet + doAfter: 2 + - node: bot + entity: MobDisablerBot diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/gladiabot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/gladiabot.yml new file mode 100644 index 0000000000..ddcfceaef4 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/gladiabot.yml @@ -0,0 +1,25 @@ +- type: constructionGraph + id: GladiaBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - material: Cardboard + amount: 1 + doAfter: 2 + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: proximity sensor + doAfter: 2 + - tag: Shiv + icon: + sprite: Objects/Weapons/Melee/shiv.rsi + state: icon + name: shiv + doAfter: 2 + - node: bot + entity: MobGladiaBot diff --git a/Resources/Prototypes/Recipes/Crafting/bots.yml b/Resources/Prototypes/Recipes/Crafting/bots.yml index 3031f4a780..26c0a44e33 100644 --- a/Resources/Prototypes/Recipes/Crafting/bots.yml +++ b/Resources/Prototypes/Recipes/Crafting/bots.yml @@ -75,3 +75,42 @@ icon: sprite: Mobs/Silicon/Bots/supplybot.rsi state: supplybot + +- type: construction + name: gladiabot + id: gladiabot + graph: GladiaBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: This bot fights for honour and glory! + icon: + sprite: Mobs/Silicon/Bots/gladiabot.rsi + state: GladiabotFFA + +- type: construction + name: batonbot + id: batonbot + graph: BatonBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: Defends the station from hostile wildlife. + icon: + sprite: Mobs/Silicon/Bots/batonbot.rsi + state: batonbot + +- type: construction + name: disablerbot + id: disablerbot + graph: DisablerBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: Defends the station from hostile wildlife. + icon: + sprite: Mobs/Silicon/Bots/disablerbot.rsi + state: disablerbot diff --git a/Resources/Prototypes/Recipes/Lathes/categories.yml b/Resources/Prototypes/Recipes/Lathes/categories.yml index 3788373255..98205eb4d0 100644 --- a/Resources/Prototypes/Recipes/Lathes/categories.yml +++ b/Resources/Prototypes/Recipes/Lathes/categories.yml @@ -10,10 +10,6 @@ id: Lights name: lathe-category-lights -- type: latheCategory - id: Mech - name: lathe-category-mechs - - type: latheCategory id: Parts name: lathe-category-parts diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 494f2aff77..dd7178f0d1 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -1,3 +1,64 @@ +- type: latheRecipe + abstract: true + id: BaseElectronicsRecipe + category: Circuitry + completetime: 2 + materials: + Steel: 100 + Plastic: 300 + +- type: latheRecipe + abstract: true + parent: BaseElectronicsRecipe + id: BaseCheapElectronicsRecipe + materials: + Steel: 50 + Plastic: 50 + +- type: latheRecipe + abstract: true + parent: BaseElectronicsRecipe + id: BaseCheapCircuitboardRecipe + materials: + Steel: 50 + Glass: 250 + +- type: latheRecipe + abstract: true + parent: BaseElectronicsRecipe + id: BaseCircuitboardRecipe + completetime: 4 + materials: + Steel: 100 + Glass: 500 + +- type: latheRecipe + abstract: true + parent: BaseCircuitboardRecipe + id: BaseGoldCircuitboardRecipe + materials: + Steel: 100 + Glass: 500 + Gold: 100 + +- type: latheRecipe + abstract: true + parent: BaseCircuitboardRecipe + id: BaseSilverCircuitboardRecipe + materials: + Steel: 100 + Glass: 500 + Silver: 100 + +- type: latheRecipe + abstract: true + parent: BaseCircuitboardRecipe + id: BaseBananiumCircuitboardRecipe + materials: + Steel: 100 + Glass: 500 + Bananium: 100 + - type: latheRecipe id: FirelockElectronics result: FirelockElectronics @@ -626,6 +687,12 @@ Glass: 500 - type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: SMESAdvancedMachineCircuitboard + result: SMESAdvancedMachineCircuitboard + +- type: latheRecipe + parent: BaseCircuitboardRecipe id: PortableGeneratorPacmanMachineCircuitboard result: PortableGeneratorPacmanMachineCircuitboard category: Circuitry diff --git a/Resources/Prototypes/Recipes/Lathes/hardsuits.yml b/Resources/Prototypes/Recipes/Lathes/hardsuits.yml index 061ece47c1..77ca2c5b87 100644 --- a/Resources/Prototypes/Recipes/Lathes/hardsuits.yml +++ b/Resources/Prototypes/Recipes/Lathes/hardsuits.yml @@ -63,8 +63,8 @@ # TODO: I still need to make these "Unpainted" - type: latheRecipe - id: ClothingOuterHardsuitSyndieReverseEngineered - result: ClothingOuterHardsuitSyndieReverseEngineered + id: ClothingOuterHardsuitShanlinUnpainted + result: ClothingOuterHardsuitShanlinUnpainted category: Tacsuits completetime: 180 materials: @@ -76,20 +76,19 @@ Plasma: 800 Gold: 600 -# This one's an IOU. -# - type: latheRecipe -# id: ClothingOuterHardsuitCybersunEliteUnpainted -# result: ClothingOuterHardsuitCybersunEliteUnpainted -# category: Tacsuits -# completetime: 120 -# materials: -# Plasteel: 8000 -# WebSilk: 3000 -# ReinforcedGlass: 1500 -# Plastic: 1500 -# Uranium: 800 -# Plasma: 800 -# Gold: 600 +- type: latheRecipe + id: ClothingOuterHardsuitShiweiUnpainted + result: ClothingOuterHardsuitShiweiUnpainted + category: Tacsuits + completetime: 120 + materials: + Plasteel: 10000 + WebSilk: 3000 + ReinforcedPlasmaGlass: 1500 + Plastic: 1500 + Uranium: 1000 + Plasma: 1000 + Gold: 800 # TODO: IOU one "Unpainted" juggsuit sprite. - type: latheRecipe diff --git a/Resources/Prototypes/Recipes/Lathes/mech_parts.yml b/Resources/Prototypes/Recipes/Lathes/mech_parts.yml index 4f9f84d0dc..3f457ef8af 100644 --- a/Resources/Prototypes/Recipes/Lathes/mech_parts.yml +++ b/Resources/Prototypes/Recipes/Lathes/mech_parts.yml @@ -2,7 +2,7 @@ - type: latheRecipe id: RipleyHarness result: RipleyHarness - category: Mech + category: Ripley # Goobstation completetime: 10 materials: Steel: 1500 @@ -11,7 +11,7 @@ - type: latheRecipe id: RipleyLArm result: RipleyLArm - category: Mech + category: Ripley # Goobstation completetime: 10 materials: Steel: 1000 @@ -20,7 +20,7 @@ - type: latheRecipe id: RipleyLLeg result: RipleyLLeg - category: Mech + category: Ripley # Goobstation completetime: 10 materials: Steel: 1000 @@ -29,7 +29,7 @@ - type: latheRecipe id: RipleyRLeg result: RipleyRLeg - category: Mech + category: Ripley # Goobstation completetime: 10 materials: Steel: 1000 @@ -38,7 +38,7 @@ - type: latheRecipe id: RipleyRArm result: RipleyRArm - category: Mech + category: Ripley completetime: 10 materials: Steel: 1000 @@ -47,17 +47,18 @@ - type: latheRecipe id: MechEquipmentGrabber result: MechEquipmentGrabber - category: Mech + category: MechEquipment completetime: 10 materials: - Steel: 500 - Plastic: 200 + Steel: 1000 + Glass: 750 + # H.O.N.K. - type: latheRecipe id: HonkerHarness result: HonkerHarness - category: Mech + category: Honker # Goobstation completetime: 10 materials: Steel: 3000 @@ -67,7 +68,7 @@ - type: latheRecipe id: HonkerLArm result: HonkerLArm - category: Mech + category: Honker # Goobstation completetime: 10 materials: Steel: 3000 @@ -77,7 +78,7 @@ - type: latheRecipe id: HonkerLLeg result: HonkerLLeg - category: Mech + category: Honker # Goobstation completetime: 10 materials: Steel: 3000 @@ -87,7 +88,7 @@ - type: latheRecipe id: HonkerRLeg result: HonkerRLeg - category: Mech + category: Honker # Goobstation completetime: 10 materials: Steel: 3000 @@ -97,7 +98,7 @@ - type: latheRecipe id: HonkerRArm result: HonkerRArm - category: Mech + category: Honker # Goobstation completetime: 10 materials: Steel: 3000 @@ -107,17 +108,18 @@ - type: latheRecipe id: MechEquipmentHorn result: MechEquipmentHorn - category: Mech + category: MechEquipment completetime: 10 materials: - Steel: 500 - Bananium: 200 + Steel: 3000 + Glass: 1200 + Bananium: 500 # HAMTR - type: latheRecipe id: HamtrHarness result: HamtrHarness - category: Mech + category: Hamptr # Goobstation completetime: 10 materials: Steel: 1200 @@ -126,7 +128,7 @@ - type: latheRecipe id: HamtrLArm result: HamtrLArm - category: Mech + category: Hamptr # Goobstation completetime: 10 materials: Steel: 800 @@ -135,7 +137,7 @@ - type: latheRecipe id: HamtrLLeg result: HamtrLLeg - category: Mech + category: Hamptr # Goobstation completetime: 10 materials: Steel: 800 @@ -144,7 +146,7 @@ - type: latheRecipe id: HamtrRLeg result: HamtrRLeg - category: Mech + category: Hamptr # Goobstation completetime: 10 materials: Steel: 800 @@ -153,7 +155,7 @@ - type: latheRecipe id: HamtrRArm result: HamtrRArm - category: Mech + category: Hamptr # Goobstation completetime: 10 materials: Steel: 800 @@ -162,18 +164,14 @@ - type: latheRecipe id: MechEquipmentGrabberSmall result: MechEquipmentGrabberSmall - category: Mech + category: MechEquipment # Goobstation completetime: 10 materials: Steel: 400 Plastic: 100 -# Vim - type: latheRecipe id: VimHarness result: VimHarness - category: Mech - completetime: 5 - materials: - Steel: 500 - Glass: 200 + category: MechEquipment + completetime: 5 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index 29f3fed247..37b400802c 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -262,3 +262,11 @@ Silver: 100 Gold: 100 Plasma: 200 + +- type: latheRecipe + id: EnvirosuitExtinguisherRefill + result: EnvirosuitExtinguisherRefill + completetime: 3 + materials: + Steel: 200 + Plasma: 50 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index a45c77ec2a..5d286bd2e2 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -15,6 +15,7 @@ - WeaponProtoKineticAccelerator - ShuttleGunKineticCircuitboard - WeaponLaserCarbine + - WeaponMechCombatFiredartLaser # Goobstation - WeaponEnergyGun - WeaponEnergyGunMini - WeaponLaserSvalinn @@ -22,6 +23,8 @@ - WeaponDisablerSMG - Truncheon #- WeaponPistolMk58 #todo: Add a bunch of basic ballistic guns to the list and make lathe recipes for them. + - MechEquipmentKineticAccelerator # Goobstation + # These are roundstart but not replenishable for salvage - type: technology id: DraconicMunitions @@ -84,6 +87,7 @@ - MagazineBoxPistolRubber # Frontier - MagazineBoxRifleRubber # Frontier - SpeedLoaderRifleHeavyRubber + - WeaponMechCombatDisabler # Goobstation - type: technology id: UraniumMunitions @@ -167,6 +171,8 @@ - WeaponXrayCannon - WeaponLaserCannon - WeaponGunLaserCarbineAutomatic + - WeaponLaserCannon + - WeaponMechCombatSolarisLaser # Goobstation technologyPrerequisites: - BasicWeapons @@ -183,7 +189,8 @@ cost: 25000 recipeUnlocks: - ClothingOuterHardsuitCombatAdvanced - - ClothingOuterHardsuitSyndieReverseEngineered + - ClothingOuterHardsuitShanlinUnpainted + - ClothingOuterHardsuitShiweiUnpainted - ClothingOuterHardsuitJuggernautReverseEngineered #- ClothingOuterHardsuitCybersunEliteUnpainted # IOU technologyPrerequisites: @@ -205,6 +212,7 @@ - GrenadeEMP - PowerCageHigh - ShuttleGunDusterCircuitboard + - WeaponMechCombatImmolationGun # Goobstation #- EnergySword # TODO: Add a bunch of stupidly exotic energy weapons to act as a reaaaaaally nice incentive for research to consider this. # Make the energy sword for instance include bananium and bluespace in its recipe. :) softCapContribution: 1.5 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 0aa31a5f6e..dd4ea9f163 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -105,6 +105,7 @@ - CloningConsoleComputerCircuitboard - MedicalScannerMachineCircuitboard - MetempsychoticMachineCircuitboard + - EnvirosuitExtinguisherRefill - type: technology id: HONKMech diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 4ca60df5b9..67246789ca 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -14,6 +14,7 @@ - WeaponGrapplingGun - BorgModuleMining - BorgModuleGrapplingGun + - MechEquipmentDrill # Goobstation - OreProcessorIndustrialMachineCircuitboard - ClothingMaskWeldingGas - SalvageExpeditionsComputerCircuitboard @@ -30,6 +31,7 @@ recipeUnlocks: - PowerCellHigh - TurboItemRechargerCircuitboard + - SMESAdvancedMachineCircuitboard - type: technology id: MechanicalCompression @@ -182,19 +184,44 @@ recipeUnlocks: - OreBagOfHolding - MiningDrillDiamond + - MechEquipmentDrillDiamond - type: technology - id: MechanizedSalvaging - name: research-technology-mechanized-salvaging + id: Ripley2 + name: research-technology-ripley-mkii icon: - sprite: Mobs/Silicon/chassis.rsi - state: miner + sprite: Objects/Specific/Mech/mecha.rsi + state: ripleymkii + discipline: Industrial + tier: 2 + cost: 8000 + recipeUnlocks: + - RipleyMKIIHarness + - RipleyUpgradeKit + technologyPrerequisites: + - RipleyAPLU + +- type: technology + id: Clarke + name: research-technology-clarke + icon: + sprite: Objects/Specific/Mech/mecha.rsi + state: clarke discipline: Industrial tier: 2 cost: 10000 recipeUnlocks: - BorgModulePka - BorgModuleJetpack + - ClarkeHarness + - ClarkeHead + - ClarkeLArm + - ClarkeRArm + - ClarkeTreads + - ClarkeCentralElectronics + - ClarkePeripheralsElectronics + technologyPrerequisites: + - Ripley2 # Tier 3 diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index 63d859ec93..85bcf24802 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -22,6 +22,8 @@ #Lone Operative Gear - type: startingGear id: SyndicateLoneOperativeGearFull + subGear: + - SyndicatePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index 504b638483..f7d4a78401 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -23,6 +23,8 @@ # Syndicate Operative Outfit - Barratry - type: startingGear id: SyndicateOperativeGearExtremelyBasic + subGear: + - SyndicatePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackSyndicate diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index accec02e2b..7bcdb5f890 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -21,6 +21,8 @@ - type: startingGear id: CargoTechGear + subGear: + - CargoTechPlasmamanGear equipment: head: ClothingHeadHatCargosoft jumpsuit: ClothingUniformJumpsuitCargo @@ -32,3 +34,11 @@ innerClothingSkirt: ClothingUniformJumpskirtCargo satchel: ClothingBackpackSatchelCargoFilled duffelbag: ClothingBackpackDuffelCargoFilled + +- type: startingGear + id: CargoTechPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitCargo + head: ClothingHeadEnvirohelmCargo + gloves: ClothingHandsGlovesEnviroglovesCargo diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index df3c399bf3..d42ebbb22d 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -17,6 +17,11 @@ - Mk3LoyaltyImplant - !type:CharacterOverallTimeRequirement min: 3600 #1 hrs + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" @@ -38,9 +43,14 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 - type: startingGear id: QuartermasterGear + subGear: + - QuartermasterPlasmamanGear equipment: head: ClothingHeadHatBeretLogi jumpsuit: ClothingUniformJumpsuitQM @@ -53,3 +63,11 @@ innerClothingSkirt: ClothingUniformJumpskirtQM satchel: ClothingBackpackSatchelQuartermasterFilled duffelbag: ClothingBackpackDuffelQuartermasterFilled + +- type: startingGear + id: QuartermasterPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitQM + head: ClothingHeadEnvirohelmQM + gloves: ClothingHandsGlovesEnviroglovesCargo diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml index d4159f2dcf..d67a1b6aec 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml @@ -22,6 +22,8 @@ - type: startingGear id: SalvageSpecialistGear + subGear: + - SalvageSpecialistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitSalvageSpecialist back: ClothingBackpackSalvageFilled @@ -30,3 +32,12 @@ ears: ClothingHeadsetCargo satchel: ClothingBackpackSatchelSalvageFilled duffelbag: ClothingBackpackDuffelSalvageFilled + +- type: startingGear + id: SalvageSpecialistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitSalvage + head: ClothingHeadEnvirohelmSalvage + gloves: ClothingHandsGlovesEnviroglovesSalvage + mask: ClothingMaskGasExplorer diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml index 5cf4fd9449..dce7969682 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml @@ -11,6 +11,8 @@ - type: startingGear id: PassengerGear + subGear: + - PassengerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorGrey back: ClothingBackpackFilled @@ -20,3 +22,11 @@ innerClothingSkirt: ClothingUniformJumpskirtColorGrey satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: PassengerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitColorGrey + head: ClothingHeadEnvirohelmColorGrey + gloves: ClothingHandsGlovesEnviroglovesColorDarkGrey diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index 8af3f2ee92..265925ef3e 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -16,6 +16,8 @@ - type: startingGear id: BartenderGear + subGear: + - BartenderPlasmamanGear equipment: head: ClothingHeadHatTophat jumpsuit: ClothingUniformJumpsuitBartender @@ -27,3 +29,11 @@ innerClothingSkirt: ClothingUniformJumpskirtBartender satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: BartenderPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitEnviroslacks + head: ClothingHeadEnvirohelmColorWhite + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index 35b858fb38..77e9ec491b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -16,6 +16,8 @@ - type: startingGear id: BotanistGear + subGear: + - BotanistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitHydroponics back: ClothingBackpackHydroponicsFilled @@ -27,3 +29,11 @@ innerClothingSkirt: ClothingUniformJumpskirtHydroponics satchel: ClothingBackpackSatchelHydroponicsFilled duffelbag: ClothingBackpackDuffelHydroponicsFilled + +- type: startingGear + id: BotanistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitHydroponics + head: ClothingHeadEnvirohelmHydroponics + gloves: ClothingHandsGlovesEnviroglovesLeather diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index f73f9565bc..31dc758ef4 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -16,9 +16,12 @@ - !type:CharacterLogicOrRequirement requirements: - !type:CharacterSpeciesRequirement - inverted: true species: - Shadowkin + - !type:CharacterTraitRequirement + inverted: true + traits: + - ShadowkinBlackeye startingGear: ChaplainGear icon: "JobIconChaplain" supervisors: job-supervisors-rd @@ -40,6 +43,8 @@ - type: startingGear id: ChaplainGear + subGear: + - ChaplainPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitChaplain back: ClothingBackpack @@ -50,3 +55,11 @@ innerClothingSkirt: ClothingUniformJumpskirtChaplain satchel: ClothingBackpackSatchelChaplainFilled duffelbag: ClothingBackpackDuffelChaplainFilled + +- type: startingGear + id: ChaplainPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitChaplain + head: ClothingHeadEnvirohelmChaplain + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index 4188970105..7938fad093 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -20,6 +20,8 @@ - type: startingGear id: ChefGear + subGear: + - ChefPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitChef head: ClothingHeadHatChef @@ -33,3 +35,11 @@ innerClothingSkirt: ClothingUniformJumpskirtChef satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: ChefPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitChef + head: ClothingHeadEnvirohelmColorWhite + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml index 5bf14c23ed..e9c7551433 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml @@ -29,6 +29,8 @@ - type: startingGear id: ClownGear + subGear: + - ClownPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitClown back: ClothingBackpackClownFilled @@ -40,3 +42,12 @@ ears: ClothingHeadsetService satchel: ClothingBackpackSatchelClownFilled duffelbag: ClothingBackpackDuffelClownFilled + +- type: startingGear + id: ClownPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitClown + head: ClothingHeadEnvirohelmClown + gloves: ClothingHandsGlovesEnviroglovesClown + mask: ClothingMaskClown # Parent sets mask to breath mask so set it again here diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index bf11532ddb..ac097e7e30 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -17,6 +17,8 @@ - type: startingGear id: JanitorGear + subGear: + - JanitorPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitJanitor back: ClothingBackpackFilled @@ -30,6 +32,14 @@ satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled +- type: startingGear + id: JanitorPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitJanitor + head: ClothingHeadEnvirohelmJanitor + gloves: ClothingHandsGlovesEnviroglovesJanitor + - type: startingGear id: JanitorMaidGear equipment: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index da54e23753..d093361569 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -4,9 +4,6 @@ description: job-description-lawyer playTimeTracker: JobLawyer antagAdvantage: 2 # DeltaV - Reduced TC: Security Radio and Access - requirements: - - !type:CharacterOverallTimeRequirement - min: 60 startingGear: LawyerGear icon: "JobIconLawyer" supervisors: job-supervisors-cj # Delta V - Change supervisor to chief justice @@ -17,6 +14,8 @@ - type: startingGear id: LawyerGear + subGear: + - LawyerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitLawyerBlack # TODO change jumpsuit to randomiser of the 4 variants back: ClothingBackpackLawyerFilled #DeltaV - stamp included @@ -29,3 +28,11 @@ innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack satchel: ClothingBackpackSatchelLawyerFilled #DeltaV - stamp included duffelbag: ClothingBackpackDuffelLawyerFilled #DeltaV - stamp included + +- type: startingGear + id: LawyerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitEnviroslacks + head: ClothingHeadEnvirohelmColorWhite + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index d54d0f8b76..b4fc7c0ee7 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -15,12 +15,10 @@ - !type:CharacterTraitRequirement traits: - AnomalousPositronics - - !type:CharacterLogicOrRequirement - requirements: - - !type:CharacterSpeciesRequirement - inverted: true - species: - - Shadowkin + - !type:CharacterTraitRequirement + inverted: true + traits: + - ShadowkinBlackeye startingGear: LibrarianGear icon: "JobIconLibrarian" supervisors: job-supervisors-rd @@ -40,6 +38,8 @@ - type: startingGear id: LibrarianGear + subGear: + - LibrarianPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitLibrarian back: ClothingBackpackLibrarianFilled @@ -52,3 +52,11 @@ innerClothingSkirt: ClothingUniformJumpskirtLibrarian satchel: ClothingBackpackSatchelLibrarianFilled duffelbag: ClothingBackpackDuffelLibrarianFilled + +- type: startingGear + id: LibrarianPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitAncientVoid + head: ClothingHeadEnvirohelmAncientVoid + gloves: ClothingHandsGlovesEnviroglovesPrototype diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index ab576c78e2..b71660c1a0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -18,6 +18,8 @@ - type: startingGear id: MimeGear + subGear: + - MimePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitMime back: ClothingBackpackMimeFilled @@ -34,6 +36,15 @@ satchel: ClothingBackpackSatchelMimeFilled duffelbag: ClothingBackpackDuffelMimeFilled +- type: startingGear + id: MimePlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMime + head: ClothingHeadEnvirohelmMime + gloves: ClothingHandsGlovesEnviroglovesWhite + mask: ClothingMaskMime # Parent sets mask to breath mask so set it again here + - type: entity id: ActionMimeInvisibleWall name: Create Invisible Wall diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml index 36d8839529..113b0fccac 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml @@ -17,6 +17,8 @@ - type: startingGear id: MusicianGear + subGear: + - MusicianPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitMusician back: ClothingBackpackMusicianFilled @@ -26,3 +28,11 @@ ears: ClothingHeadsetService satchel: ClothingBackpackSatchelMusicianFilled duffelbag: ClothingBackpackDuffelMusicianFilled + +- type: startingGear + id: MusicianPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMusician + head: ClothingHeadEnvirohelmMusician + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index 7ee1076a8b..ca7c796283 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -1,4 +1,4 @@ -- type: job +- type: job id: ServiceWorker name: job-name-serviceworker description: job-description-serviceworker @@ -18,6 +18,8 @@ - type: startingGear id: ServiceWorkerGear + subGear: + - ServiceWorkerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorDarkGreen # DeltaV back: ClothingBackpackFilled @@ -27,3 +29,11 @@ innerClothingSkirt: ClothingUniformJumpskirtColorDarkGreen # DeltaV satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: ServiceWorkerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitColorDarkGreen + head: ClothingHeadEnvirohelmColorDarkGreen + gloves: ClothingHandsGlovesEnviroglovesColorDarkGreen diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index 799a7f6269..f33243af1e 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -21,9 +21,15 @@ species: - Shadowkin - IPC + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Pacifist weight: 20 startingGear: CaptainGear - icon: JobIconCaptain + icon: "JobIconCaptain" requireAdminNotify: true joinNotifyCrew: true supervisors: job-supervisors-centcom @@ -36,9 +42,16 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: CaptainGear + subGear: + - CaptainPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitCaptain back: ClothingBackpackCaptainFilled @@ -48,3 +61,11 @@ innerClothingSkirt: ClothingUniformJumpskirtCaptain satchel: ClothingBackpackSatchelCaptainFilled duffelbag: ClothingBackpackDuffelCaptainFilled + +- type: startingGear + id: CaptainPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitCaptain + head: ClothingHeadEnvirohelmCaptain + gloves: ClothingHandsGlovesCaptain diff --git a/Resources/Prototypes/Roles/Jobs/Command/centcom_official.yml b/Resources/Prototypes/Roles/Jobs/Command/centcom_official.yml index 37c73f38e0..c14ee7e283 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/centcom_official.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/centcom_official.yml @@ -12,9 +12,16 @@ - AllAccess access: - CentralCommand + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 10 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: CentcomGear + subGear: + - CentcomPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitCentcomOfficial shoes: ClothingShoesBootsCombatFilled @@ -27,3 +34,11 @@ belt: WeaponPistolN1984 pocket1: BoxFolderBlack pocket2: PenCentcom + +- type: startingGear + id: CentcomPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitCentcomOfficial + head: ClothingHeadEnvirohelmCentcomOfficial + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 6443877a21..f795c2eff8 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -3,7 +3,6 @@ name: job-name-hop description: job-description-hop playTimeTracker: JobHeadOfPersonnel - antagAdvantage: 6 # DeltaV - Reduced TC: Head of Staff requirements: - !type:CharacterOverallTimeRequirement min: 3600 @@ -22,6 +21,12 @@ species: - Shadowkin - IPC + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + antagAdvantage: 6 # DeltaV - Reduced TC: Head of Staff weight: 10 # DeltaV - Changed HoP weight from 20 to 10 due to them not being more important than other Heads startingGear: HoPGear icon: "JobIconHeadOfPersonnel" @@ -69,9 +74,16 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: HoPGear + subGear: + - HoPPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitHoP back: ClothingBackpackHOPFilled @@ -81,3 +93,11 @@ innerClothingSkirt: ClothingUniformJumpskirtHoP satchel: ClothingBackpackSatchelHOPFilled duffelbag: ClothingBackpackDuffelHOPFilled + +- type: startingGear + id: HoPPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitHoP + head: ClothingHeadEnvirohelmHoP + gloves: ClothingHandsGlovesEnviroglovesHoP diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index 355cc548f7..68a975528e 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -21,7 +21,9 @@ - Atmospherics - type: startingGear - id: AtmosphericTechnicianGear + id: AtmosphericTechnicianGear + subGear: + - AtmosphericTechnicianPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitAtmos back: ClothingBackpackAtmospherics @@ -31,3 +33,11 @@ innerClothingSkirt: ClothingUniformJumpskirtAtmos satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled + +- type: startingGear + id: AtmosphericTechnicianPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitAtmos + head: ClothingHeadEnvirohelmAtmos + gloves: ClothingHandsGlovesEnviroglovesAtmos diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index c7c41ed7bc..7e8ebc9f01 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -21,6 +21,11 @@ species: - Shadowkin - IPC + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight weight: 10 startingGear: ChiefEngineerGear icon: "JobIconChiefEngineer" @@ -41,9 +46,16 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellPotato - type: startingGear id: ChiefEngineerGear + subGear: + - ChiefEngineerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitChiefEngineer back: ClothingBackpackChiefEngineerFilled @@ -53,3 +65,11 @@ innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer satchel: ClothingBackpackSatchelChiefEngineerFilled duffelbag: ClothingBackpackDuffelChiefEngineerFilled + +- type: startingGear + id: ChiefEngineerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitChiefEngineer + head: ClothingHeadEnvirohelmChiefEngineer + gloves: ClothingHandsGlovesEnviroglovesChiefEngineer diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml index 7be9272f71..fc585f5b48 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml @@ -28,6 +28,8 @@ - type: startingGear id: SeniorEngineerGear + subGear: + - StationEngineerPlasmamanGear equipment: head: ClothingHeadHatBeretEngineering jumpsuit: ClothingUniformJumpsuitSeniorEngineer diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml index fa61bc69cb..eb5da4c303 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml @@ -21,6 +21,8 @@ - type: startingGear id: StationEngineerGear + subGear: + - StationEngineerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitEngineering back: ClothingBackpackEngineeringFilled @@ -32,3 +34,11 @@ innerClothingSkirt: ClothingUniformJumpskirtEngineering satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled + +- type: startingGear + id: StationEngineerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitEngineering + head: ClothingHeadEnvirohelmEngineering + gloves: ClothingHandsGlovesEnviroglovesEngineering diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 8b3241e326..4ee6d86482 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -20,6 +20,8 @@ - type: startingGear id: TechnicalAssistantGear + subGear: + - StationEngineerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorYellow back: ClothingBackpackEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml index f1e8fc9cf8..7dd2aa1e92 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml @@ -16,6 +16,8 @@ - type: startingGear id: ERTLeaderGear + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTLeader back: ClothingBackpackERTLeaderFilled @@ -32,6 +34,8 @@ - type: startingGear id: ERTLeaderGearEVA + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTLeader back: ClothingBackpackERTLeaderFilled @@ -49,6 +53,9 @@ - type: startingGear id: ERTLeaderGearEVALecter + subGear: + - InhandTankGear + - ERTPlasmamanGearNoTank equipment: jumpsuit: ClothingUniformJumpsuitERTLeader back: ClothingBackpackERTLeaderFilled @@ -63,8 +70,6 @@ belt: ClothingBeltSecurityFilled pocket1: MagazineRifle pocket2: MagazineRifle - inhand: - - AirTankFilled # Chaplain - type: job @@ -88,6 +93,8 @@ - type: startingGear id: ERTChaplainGear + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTChaplain back: ClothingBackpackERTChaplainFilled @@ -105,6 +112,8 @@ - type: startingGear id: ERTChaplainGearEVA + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTChaplain back: ClothingBackpackERTChaplainFilled @@ -139,6 +148,8 @@ - type: startingGear id: ERTEngineerGear + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTEngineer back: ClothingBackpackERTEngineerFilled @@ -155,6 +166,8 @@ - type: startingGear id: ERTEngineerGearEVA + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTEngineer back: ClothingBackpackERTEngineerFilled @@ -188,6 +201,8 @@ - type: startingGear id: ERTSecurityGear + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTSecurity back: ClothingBackpackERTSecurityFilled @@ -204,6 +219,8 @@ - type: startingGear id: ERTSecurityGearEVA + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTSecurity back: ClothingBackpackERTSecurityFilled @@ -221,6 +238,9 @@ - type: startingGear id: ERTSecurityGearEVALecter + subGear: + - InhandTankGear + - ERTPlasmamanGearNoTank equipment: jumpsuit: ClothingUniformJumpsuitERTSecurity back: ClothingBackpackERTSecurityFilled @@ -235,8 +255,6 @@ belt: ClothingBeltSecurityFilled pocket1: MagazineRifle pocket2: MagazineRifle - inhand: - - AirTankFilled # Medical - type: job @@ -256,6 +274,8 @@ - type: startingGear id: ERTMedicalGear + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTMedic back: ClothingBackpackERTMedicalFilled @@ -271,6 +291,8 @@ - type: startingGear id: ERTMedicalGearEVA + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTMedic back: ClothingBackpackERTMedicalFilled @@ -303,6 +325,8 @@ - type: startingGear id: ERTJanitorGear + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTJanitor back: ClothingBackpackERTJanitorFilled @@ -317,6 +341,8 @@ - type: startingGear id: ERTJanitorGearEVA + subGear: + - ERTPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitERTJanitor back: ClothingBackpackERTJanitorFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index d3e3257b55..28d949935e 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -20,6 +20,8 @@ # Syndicate Operative Outfit - Civilian - type: startingGear id: SyndicateOperativeGearCivilian + subGear: + - SyndicatePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitSyndieFormal back: ClothingBackpackDuffelSyndicate @@ -31,6 +33,8 @@ #Space Ninja Outfit - type: startingGear id: SpaceNinjaGear + subGear: + - SpaceNinjaPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitNinja # belt holds katana so satchel has the tools for sabotaging things @@ -53,6 +57,8 @@ #Deathsquad Outfit - type: startingGear id: DeathSquadGear + subGear: + - ERTPlasmamanGear # TODO: death squad envirosuit equipment: jumpsuit: ClothingUniformJumpsuitDeathSquad back: ClothingBackpackDeathSquadFilled @@ -72,6 +78,8 @@ #Syndicate Operative Outfit - Full Kit - type: startingGear id: SyndicateOperativeGearFull + subGear: + - SyndicateOperativePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative @@ -92,6 +100,8 @@ #Nuclear Operative Commander Gear - type: startingGear id: SyndicateCommanderGearFull + subGear: + - SyndicateOperativePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative @@ -115,6 +125,8 @@ #Nuclear Operative Medic Gear - type: startingGear id: SyndicateOperativeMedicFull + subGear: + - SyndicateOperativePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic @@ -135,6 +147,8 @@ # Syndicate Footsoldier Gear - type: startingGear id: SyndicateFootsoldierGear + subGear: + - SyndicateOperativePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative head: ClothingHeadHelmetSwatSyndicate @@ -152,6 +166,8 @@ # Syndicate Footsoldier Gear - No Headset - type: startingGear id: SyndicateFootsoldierGearRuin + subGear: + - SyndicateOperativePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitOperative head: ClothingHeadHelmetSwatSyndicate @@ -168,6 +184,8 @@ # Nanotrasen Paramilitary Unit Gear - type: startingGear id: NanotrasenParamilitaryGear + subGear: + - SecurityOfficerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitSec back: ClothingBackpackSecurityFilled @@ -185,6 +203,8 @@ #CBURN Unit Gear - Full Kit - type: startingGear id: CBURNGear + subGear: + - CBURNPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorBrown back: ClothingBackpackDuffelCBURNFilled @@ -220,6 +240,8 @@ - type: startingGear id: LimitedPassengerGear + subGear: + - PassengerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorGrey shoes: ClothingShoesColorBlack @@ -229,6 +251,8 @@ - type: startingGear id: DeathMatchGear + subGear: + - DeathMatchPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorWhite shoes: ClothingShoesBootsJack @@ -303,6 +327,8 @@ #Banana Clown - type: startingGear id: BananaClown + subGear: + - ClownPlasmamanGear # TODO: Banana clown plasmaman starting gear equipment: shoes: ClothingShoesClownBanana jumpsuit: ClothingUniformJumpsuitClownBanana diff --git a/Resources/Prototypes/Roles/Jobs/Fun/plasmaman_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/plasmaman_startinggear.yml new file mode 100644 index 0000000000..0b3f8870e2 --- /dev/null +++ b/Resources/Prototypes/Roles/Jobs/Fun/plasmaman_startinggear.yml @@ -0,0 +1,109 @@ +# Base Plasmaman starting gear that all plasmaman starting gears should inherit from +- type: startingGear + abstract: true + id: BasePlasmamanGear + requirements: + - !type:CharacterSpeciesRequirement + species: [ Plasmaman ] + equipment: + mask: ClothingMaskBreath + pocket2: DoubleEmergencyPlasmaTankFilled + +- type: startingGear + abstract: true + parent: BasePlasmamanGear + id: BasePlasmamanSecurityGear + equipment: + mask: ClothingMaskGasSecurity + +# Syndicate Operative Plasmaman outfit +- type: startingGear + abstract: true + id: BaseSyndicatePlasmamanGear + requirements: + - !type:CharacterSpeciesRequirement + species: [ Plasmaman ] + equipment: + jumpsuit: ClothingUniformEnvirosuitOperative + head: ClothingHeadEnvirohelmOperative + mask: ClothingMaskGasSyndicate + # No envirogloves, some starting gear might have combat gloves + +- type: startingGear + id: SyndicatePlasmamanGear + parent: BaseSyndicatePlasmamanGear + equipment: + pocket2: DoubleEmergencyPlasmaTankFilled + +- type: startingGear + id: SyndicateOperativePlasmamanGear + parent: BaseSyndicatePlasmamanGear + equipment: + pocket1: DoubleEmergencyPlasmaTankFilled + +- type: startingGear + id: SpaceNinjaPlasmamanGear + requirements: + - !type:CharacterSpeciesRequirement + species: [ Plasmaman ] + equipment: + jumpsuit: ClothingUniformEnvirosuitColorBlack # TODO: actual ninja envirosuit + suitstorage: PlasmaTankFilled + +# ERT starting gear +- type: startingGear + id: ERTPlasmamanGearNoTank + requirements: + - !type:CharacterSpeciesRequirement + species: [ Plasmaman ] + equipment: + jumpsuit: ClothingUniformEnvirosuitColorBlack # TODO: ERT envirosuit + head: ClothingHeadEnvirohelmColorBlack # TODO: ERT envirohelm + mask: ClothingMaskGasERT + +- type: startingGear + id: ERTPlasmamanGear + parent: ERTPlasmamanGearNoTank + equipment: + suitstorage: PlasmaTankFilled + +- type: startingGear + id: CBURNPlasmamanGear + parent: ERTPlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitColorLightBrown + head: ClothingHeadEnvirohelmColorLightBrown + +- type: startingGear + id: InhandTankGear + subGear: + - InhandOxygenTankGear + - InhandPlasmaTankGear + requirements: + - !type:CharacterSpeciesRequirement + species: [ Plasmaman ] + +- type: startingGear + id: InhandOxygenTankGear + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: [ Plasmaman ] + inhand: + - AirTankFilled + +- type: startingGear + id: InhandPlasmaTankGear + requirements: + - !type:CharacterSpeciesRequirement + species: [ Plasmaman ] + inhand: + - PlasmaTankFilled + +- type: startingGear + id: DeathMatchPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitColorWhite + head: ClothingHeadEnvirohelmColorWhite + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index ae2770446e..c52399099b 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -24,6 +24,8 @@ - type: startingGear id: ChemistGear + subGear: + - ChemistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitChemistry back: ClothingBackpackChemistryFilled @@ -33,3 +35,11 @@ innerClothingSkirt: ClothingUniformJumpskirtChemistry satchel: ClothingBackpackSatchelChemistryFilled duffelbag: ClothingBackpackDuffelChemistryFilled + +- type: startingGear + id: ChemistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitChemist + head: ClothingHeadEnvirohelmChemist + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 79a2b91729..a764d171d1 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -24,6 +24,11 @@ species: - Shadowkin - IPC + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight weight: 10 startingGear: CMOGear icon: "JobIconChiefMedicalOfficer" @@ -51,9 +56,16 @@ - type: CPRTraining - type: SurgerySpeedModifier speedModifier: 2.5 + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: CMOGear + subGear: + - CMOPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitCMO back: ClothingBackpackCMOFilled @@ -63,3 +75,11 @@ innerClothingSkirt: ClothingUniformJumpskirtCMO satchel: ClothingBackpackSatchelCMOFilled duffelbag: ClothingBackpackDuffelCMOFilled + +- type: startingGear + id: CMOPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitCMO + head: ClothingHeadEnvirohelmCMO + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index 449de1b110..7cb5946612 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -26,6 +26,8 @@ - type: startingGear id: DoctorGear + subGear: + - DoctorPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitMedicalDoctor back: ClothingBackpackMedicalFilled @@ -35,3 +37,11 @@ innerClothingSkirt: ClothingUniformJumpskirtMedicalDoctor satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled + +- type: startingGear + id: DoctorPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMedicalDoctor + head: ClothingHeadEnvirohelmMedicalDoctor + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index 3db437a2a5..885a0c6b51 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -1,4 +1,4 @@ -- type: job +- type: job id: MedicalIntern name: job-name-intern description: job-description-intern @@ -24,6 +24,8 @@ - type: startingGear id: MedicalInternGear + subGear: + - DoctorPlasmamanGear equipment: jumpsuit: UniformScrubsColorBlue # DeltaV - Intern starts with blue scrubs back: ClothingBackpackMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index 51107e6e50..facf5d17e8 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -28,6 +28,8 @@ - type: startingGear id: ParamedicGear + subGear: + - ParamedicPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitParamedic back: ClothingBackpackParamedicFilledDV @@ -40,3 +42,12 @@ innerClothingSkirt: ClothingUniformJumpskirtParamedic satchel: ClothingBackpackSatchelParamedicFilledDV duffelbag: ClothingBackpackDuffelParamedicFilledDV + +- type: startingGear + id: ParamedicPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitParamedic + head: ClothingHeadEnvirohelmParamedic + gloves: ClothingHandsGlovesEnviroglovesNitrile + shoes: ClothingShoesColorBlue diff --git a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml index c314a7e7c7..ead84cb3e2 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml @@ -33,6 +33,8 @@ - type: startingGear id: SeniorPhysicianGear + subGear: + - DoctorPlasmamanGear equipment: head: ClothingHeadHatBeretSeniorPhysician jumpsuit: ClothingUniformJumpsuitSeniorPhysician diff --git a/Resources/Prototypes/Roles/Jobs/Science/borg.yml b/Resources/Prototypes/Roles/Jobs/Science/borg.yml index 428762c7cc..1d9e007eac 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/borg.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/borg.yml @@ -4,10 +4,6 @@ name: job-name-station-ai description: job-description-station-ai playTimeTracker: JobStationAi - requirements: - - !type:CharacterPlaytimeRequirement - tracker: JobBorg - min: 18000 # 5 hrs canBeAntag: false icon: JobIconStationAi supervisors: job-supervisors-rd @@ -21,9 +17,6 @@ name: job-name-borg description: job-description-borg playTimeTracker: JobBorg - requirements: - - !type:CharacterOverallTimeRequirement - min: 60 #One minute canBeAntag: false icon: JobIconBorg supervisors: job-supervisors-rd diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 293fb16782..485c288c46 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -1,4 +1,4 @@ -- type: job +- type: job id: ResearchAssistant name: job-name-research-assistant description: job-description-research-assistant @@ -18,6 +18,8 @@ - type: startingGear id: ResearchAssistantGear + subGear: + - ScientistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorWhite back: ClothingBackpackScienceFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index ec1f34b56c..62e5d705d5 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -5,8 +5,6 @@ playTimeTracker: JobResearchDirector antagAdvantage: 6 # DeltaV - Reduced TC: Head of Staff requirements: - - !type:CharacterOverallTimeRequirement - min: 60 # Not DeltaV - One minute - !type:CharacterLogicOrRequirement requirements: # Idk I just left this in - !type:CharacterSpeciesRequirement @@ -26,11 +24,11 @@ - !type:CharacterTraitRequirement traits: - Mk3LoyaltyImplant - - !type:CharacterSpeciesRequirement + - !type:CharacterTraitRequirement inverted: true - species: - - Shadowkin - - IPC + traits: + - Foreigner + - ForeignerLight weight: 10 startingGear: ResearchDirectorGear icon: "JobIconResearchDirector" @@ -61,9 +59,16 @@ - DispelPower - MetapsionicPower - TelepathyPower + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: ResearchDirectorGear + subGear: + - ResearchDirectorPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitResearchDirector back: ClothingBackpackResearchDirectorFilled @@ -75,3 +80,11 @@ innerClothingSkirt: ClothingUniformJumpskirtResearchDirector satchel: ClothingBackpackSatchelResearchDirectorFilled duffelbag: ClothingBackpackDuffelResearchDirectorFilled + +- type: startingGear + id: ResearchDirectorPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitResearchDirector + head: ClothingHeadEnvirohelmResearchDirector + gloves: ClothingHandsGlovesEnviroglovesResearchDirector diff --git a/Resources/Prototypes/Roles/Jobs/Science/roboticist.yml b/Resources/Prototypes/Roles/Jobs/Science/roboticist.yml index 593916a609..55a0194992 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/roboticist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/roboticist.yml @@ -17,6 +17,8 @@ - type: startingGear id: RoboticistGear + subGear: + - RoboticistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitRoboticist back: ClothingBackpackRoboticsFilled @@ -28,3 +30,11 @@ innerClothingSkirt: ClothingUniformJumpskirtRoboticist satchel: ClothingBackpackSatchelRoboticsFilled duffelbag: ClothingBackpackDuffelRoboticsFilled + +- type: startingGear + id: RoboticistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitRoboticist + head: ClothingHeadEnvirohelmRoboticist + gloves: ClothingHandsGlovesEnviroglovesRoboticist diff --git a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml index 86651bff60..8c611a15d2 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml @@ -17,6 +17,8 @@ - type: startingGear id: ScientistGear + subGear: + - ScientistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitScientist back: ClothingBackpackScienceFilled @@ -28,3 +30,11 @@ innerClothingSkirt: ClothingUniformJumpskirtScientist satchel: ClothingBackpackSatchelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled + +- type: startingGear + id: ScientistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitScientist + head: ClothingHeadEnvirohelmScientist + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml index 6d2cd5f87f..24f21e4f5f 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml @@ -20,6 +20,8 @@ - type: startingGear id: SeniorResearcherGear + subGear: + - ScientistPlasmamanGear equipment: head: ClothingHeadHatBeretRND jumpsuit: ClothingUniformJumpsuitSeniorResearcher diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index ddc41df1f0..4acd95597d 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -1,44 +1,70 @@ -- type: job - id: Detective - name: job-name-detective - description: job-description-detective - playTimeTracker: JobDetective - requirements: - - !type:CharacterSpeciesRequirement - inverted: true - species: - - Shadowkin - - IPC - - !type:CharacterOverallTimeRequirement - min: 60 - startingGear: DetectiveGear - icon: "JobIconDetective" - supervisors: job-supervisors-hos - canBeAntag: false - access: - - Security - #- Brig # Delta V: Removed - - Maintenance - - Service - - Detective - - External - - Cryogenics - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] - -- type: startingGear - id: DetectiveGear - equipment: - jumpsuit: ClothingUniformJumpsuitDetective - back: ClothingBackpackSecurity - shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSunglasses - head: ClothingHeadHatFedoraBrown - outerClothing: ClothingOuterVestDetective - id: DetectivePDA - ears: ClothingHeadsetSecurity - belt: ClothingBeltHolsterFilled - innerClothingSkirt: ClothingUniformJumpskirtDetective - satchel: ClothingBackpackSatchelSecurity - duffelbag: ClothingBackpackDuffelSecurity +- type: job + id: Detective + name: job-name-detective + description: job-description-detective + playTimeTracker: JobDetective + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 36000 # DeltaV - 10 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Shadowkin + - IPC + startingGear: DetectiveGear + icon: "JobIconDetective" + supervisors: job-supervisors-hos + canBeAntag: false + access: + - Security + #- Brig # Delta V: Removed + - Maintenance + - Service + - Detective + - External + - Cryogenics + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh + +- type: startingGear + id: DetectiveGear + subGear: + - DetectivePlasmamanGear + + equipment: + jumpsuit: ClothingUniformJumpsuitDetective + back: ClothingBackpackSecurity + shoes: ClothingShoesBootsCombatFilled + eyes: ClothingEyesGlassesSunglasses + head: ClothingHeadHatFedoraBrown + outerClothing: ClothingOuterVestDetective + id: DetectivePDA + ears: ClothingHeadsetSecurity + belt: ClothingBeltHolsterFilled + innerClothingSkirt: ClothingUniformJumpskirtDetective + satchel: ClothingBackpackSatchelSecurity + duffelbag: ClothingBackpackDuffelSecurity + +- type: startingGear + id: DetectivePlasmamanGear + parent: BasePlasmamanSecurityGear + equipment: + jumpsuit: ClothingUniformEnvirosuitDetective + head: ClothingHeadEnvirohelmDetective + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 2363e30442..6192e5e65f 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -23,6 +23,15 @@ species: - Shadowkin - IPC + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease weight: 10 startingGear: HoSGear icon: "JobIconHeadOfSecurity" @@ -47,9 +56,16 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: HoSGear + subGear: + - HoSPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitHoS back: ClothingBackpackHOSFilled @@ -62,3 +78,11 @@ innerClothingSkirt: ClothingUniformJumpskirtHoS satchel: ClothingBackpackSatchelHOSFilled duffelbag: ClothingBackpackDuffelHOSFilled + +- type: startingGear + id: HoSPlasmamanGear + parent: BasePlasmamanSecurityGear + equipment: + jumpsuit: ClothingUniformEnvirosuitHoS + head: ClothingHeadEnvirohelmHoS + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index e77158999c..6d9b9c2474 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -11,6 +11,15 @@ - IPC - !type:CharacterOverallTimeRequirement min: 60 + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease startingGear: SecurityCadetGear icon: "JobIconSecurityCadet" supervisors: job-supervisors-security @@ -25,9 +34,16 @@ special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: SecurityCadetGear + subGear: + - SecurityOfficerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitColorRed back: ClothingBackpackSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index ca92161c3f..a1e657e104 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -11,6 +11,18 @@ - IPC - !type:CharacterOverallTimeRequirement min: 60 + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 36000 # 10 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease startingGear: SecurityOfficerGear icon: "JobIconSecurityOfficer" supervisors: job-supervisors-hos @@ -25,9 +37,16 @@ special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: SecurityOfficerGear + subGear: + - SecurityOfficerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitSec back: ClothingBackpackSecurity @@ -41,3 +60,11 @@ innerClothingSkirt: ClothingUniformJumpskirtSec satchel: ClothingBackpackSatchelSecurity duffelbag: ClothingBackpackDuffelSecurity + +- type: startingGear + id: SecurityOfficerPlasmamanGear + parent: BasePlasmamanSecurityGear + equipment: + jumpsuit: ClothingUniformEnvirosuitSec + head: ClothingHeadEnvirohelmSec + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml index 65639e91cd..aecad0f8cb 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml @@ -22,6 +22,15 @@ - !type:CharacterDepartmentTimeRequirement department: Security min: 216000 # 60 hrs + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease startingGear: SeniorOfficerGear icon: "JobIconSeniorOfficer" supervisors: job-supervisors-hos @@ -35,9 +44,16 @@ special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: SeniorOfficerGear + subGear: + - SecurityOfficerPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitSeniorOfficer back: ClothingBackpackSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index cfe2b0f13d..04cd543f83 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -11,6 +11,21 @@ - IPC - !type:CharacterOverallTimeRequirement min: 60 + - !type:CharacterPlaytimeRequirement # DeltaV - JobSecurityOfficer time requirement. Make them experienced in proper officer work. + tracker: JobSecurityOfficer + min: 43200 # DeltaV - 12 hrs + - !type:CharacterPlaytimeRequirement # DeltaV - JobDetective time requirement. Give them an understanding of basic forensics. + tracker: JobDetective + min: 14400 # DeltaV - 4 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease startingGear: WardenGear icon: "JobIconWarden" supervisors: job-supervisors-hos @@ -27,9 +42,16 @@ special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 6 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: WardenGear + subGear: + - WardenPlasmamanGear equipment: head: ClothingHeadHatWarden jumpsuit: ClothingUniformJumpsuitWarden @@ -43,3 +65,11 @@ innerClothingSkirt: ClothingUniformJumpskirtWarden satchel: ClothingBackpackSatchelSecurity duffelbag: ClothingBackpackDuffelSecurity + +- type: startingGear + id: WardenPlasmamanGear + parent: BasePlasmamanSecurityGear + equipment: + jumpsuit: ClothingUniformEnvirosuitWarden + head: ClothingHeadEnvirohelmWarden + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 3dc18bc857..fac4207501 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -17,6 +17,8 @@ - type: startingGear id: BoxerGear + subGear: + - BoxerPlasmamanGear equipment: jumpsuit: UniformShortsRed back: ClothingBackpackFilled @@ -28,3 +30,11 @@ innerClothingSkirt: UniformShortsRedWithTop satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: BoxerPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitBoxing + head: ClothingHeadEnvirohelmBoxing + # No envirogloves, use the boxing gloves instead diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index 4aee42d4cd..3c53c5a283 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -23,6 +23,8 @@ - type: startingGear id: PsychologistGear + subGear: + - PsychologistPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitPsychologist back: ClothingBackpackPsychologistFilled #DeltaV - stamp included @@ -32,3 +34,11 @@ innerClothingSkirt: ClothingUniformJumpsuitPsychologist satchel: ClothingBackpackSatchelPsychologistFilled #DeltaV - stamp included duffelbag: ClothingBackpackDuffelPsychologistFilled #DeltaV - stamp included + +- type: startingGear + id: PsychologistPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitEnviroslacksPsychologist + head: ClothingHeadEnvirohelmMedicalDoctor + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml index 603c0a7608..8e5c4812db 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml @@ -14,6 +14,8 @@ - type: startingGear id: ReporterGear + subGear: + - ReporterPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitReporter back: ClothingBackpackFilled @@ -23,3 +25,11 @@ innerClothingSkirt: ClothingUniformJumpsuitJournalist satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: ReporterPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitReporter + head: ClothingHeadEnvirohelmReporter + gloves: ClothingHandsGlovesEnviroglovesReporter diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 7bf1ff772a..4593397bdc 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -13,6 +13,8 @@ - type: startingGear id: ZookeeperGear + subGear: + - ZookeeperPlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitSafari back: ClothingBackpackFilled @@ -23,3 +25,11 @@ innerClothingSkirt: ClothingUniformJumpsuitSafari satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled + +- type: startingGear + id: ZookeeperPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitSafari + head: ClothingHeadEnvirohelmSafari + gloves: ClothingHandsGlovesEnviroglovesPurple diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index 66ee06dccb..1bc18b105d 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -220,3 +220,28 @@ - /Audio/Effects/Footsteps/highheels3.ogg - /Audio/Effects/Footsteps/highheels4.ogg - /Audio/Effects/Footsteps/highheels5.ogg + +- type: soundCollection + id: FootstepHardsuitLight + files: + - /Audio/Effects/Footsteps/tacsuit_step_01.ogg + +- type: soundCollection + id: FootstepHardsuitMedium + files: + - /Audio/Effects/Footsteps/tacsuit_step_02.ogg + +- type: soundCollection + id: FootstepHardsuitHeavy + files: + - /Audio/Effects/Footsteps/tacsuit_step_00.ogg + +- type: soundCollection + id: FootstepTacticalWebbing + files: + - /Audio/Effects/Footsteps/gear1.ogg + - /Audio/Effects/Footsteps/gear2.ogg + - /Audio/Effects/Footsteps/gear3.ogg + - /Audio/Effects/Footsteps/gear4.ogg + - /Audio/Effects/Footsteps/gear5.ogg + - /Audio/Effects/Footsteps/gear6.ogg diff --git a/Resources/Prototypes/SoundCollections/punching.yml b/Resources/Prototypes/SoundCollections/punching.yml index e17afd0978..8d57114c0c 100644 --- a/Resources/Prototypes/SoundCollections/punching.yml +++ b/Resources/Prototypes/SoundCollections/punching.yml @@ -5,3 +5,11 @@ - /Audio/Weapons/punch2.ogg - /Audio/Weapons/punch3.ogg - /Audio/Weapons/punch4.ogg + +- type: soundCollection + id: FirePunch + files: + - /Audio/Weapons/firepunch1.ogg + - /Audio/Weapons/firepunch2.ogg + - /Audio/Weapons/firepunch3.ogg + - /Audio/Weapons/firepunch4.ogg diff --git a/Resources/Prototypes/SoundCollections/screams.yml b/Resources/Prototypes/SoundCollections/screams.yml index 518bbf72bb..99a0d343d5 100644 --- a/Resources/Prototypes/SoundCollections/screams.yml +++ b/Resources/Prototypes/SoundCollections/screams.yml @@ -68,3 +68,10 @@ - /Audio/Voice/Slime/slime_scream_m2.ogg - /Audio/Voice/Slime/slime_scream_f1.ogg - /Audio/Voice/Slime/slime_scream_f2.ogg + +- type: soundCollection + id: PlasmamanUnisexScreams + files: + - /Audio/Voice/Plasmaman/plasmaman_scream_1.ogg + - /Audio/Voice/Plasmaman/plasmaman_scream_2.ogg + - /Audio/Voice/Plasmaman/plasmaman_scream_3.ogg diff --git a/Resources/Prototypes/Species/ipc.yml b/Resources/Prototypes/Species/ipc.yml index febabce4aa..c902345f7f 100644 --- a/Resources/Prototypes/Species/ipc.yml +++ b/Resources/Prototypes/Species/ipc.yml @@ -44,6 +44,7 @@ RLeg: MobIPCRLeg LFoot: MobIPCLFoot RFoot: MobIPCRFoot + Wings: MobHumanoidAnyMarking - type: markingPoints id: MobIPCMarkingLimits @@ -94,6 +95,9 @@ points: 1 required: false defaultMarkings: [ MobIPCLHandDefault ] + Wings: + points: 1 + required: false - type: humanoidBaseSprite id: MobIPCMarkingFollowSkin diff --git a/Resources/Prototypes/Species/plasmaman.yml b/Resources/Prototypes/Species/plasmaman.yml new file mode 100644 index 0000000000..9ac9a2cd6a --- /dev/null +++ b/Resources/Prototypes/Species/plasmaman.yml @@ -0,0 +1,172 @@ +- type: species + id: Plasmaman + name: species-name-plasmaman + roundStart: true + prototype: MobPlasmaman + sprites: MobPlasmamanSprites + defaultSkinTone: "#a349a4" + markingLimits: MobPlasmamanMarkingLimits + dollPrototype: MobPlasmamanDummy + skinColoration: Hues + youngAge: 60 + oldAge: 120 + maxAge: 180 + maleFirstNames: names_plasmaman + femaleFirstNames: names_plasmaman + naming: FirstRoman + sexes: + - Unsexed + +- type: speciesBaseSprites + id: MobPlasmamanSprites + sprites: + Head: MobPlasmamanHead + Face: MobHumanoidAnyMarking + Chest: MobPlasmamanTorso + Eyes: MobPlasmamanEyes + LArm: MobPlasmamanLArm + RArm: MobPlasmamanRArm + LHand: MobPlasmamanLHand + RHand: MobPlasmamanRHand + LLeg: MobPlasmamanLLeg + RLeg: MobPlasmamanRLeg + LFoot: MobPlasmamanLFoot + RFoot: MobPlasmamanRFoot + Wings: MobHumanoidAnyMarking + +- type: markingPoints + id: MobPlasmamanMarkingLimits + onlyWhitelisted: true # Hides the hair and facial hair options + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Snout: + points: 0 + required: false + Tail: + points: 0 + required: false + HeadTop: + points: 1 + required: false + Chest: + points: 1 + required: false + RightLeg: + points: 2 + required: false + RightFoot: + points: 2 + required: false + LeftLeg: + points: 2 + required: false + LeftFoot: + points: 2 + required: false + RightArm: + points: 2 + required: false + RightHand: + points: 2 + required: false + LeftArm: + points: 2 + required: false + LeftHand: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobPlasmamanHead + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobPlasmamanHeadMale + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobPlasmamanHeadFemale + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobPlasmamanEyes + baseSprite: + sprite: Mobs/Customization/plasmaman.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobPlasmamanTorso + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobPlasmamanTorsoMale + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobPlasmamanTorsoFemale + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobPlasmamanLLeg + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobPlasmamanLArm + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobPlasmamanLHand + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobPlasmamanLFoot + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobPlasmamanRLeg + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobPlasmamanRArm + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobPlasmamanRHand + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobPlasmamanRFoot + baseSprite: + sprite: Mobs/Species/Plasmaman/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/Species/reptilian.yml b/Resources/Prototypes/Species/reptilian.yml index c4ed49401b..35b52830fd 100644 --- a/Resources/Prototypes/Species/reptilian.yml +++ b/Resources/Prototypes/Species/reptilian.yml @@ -63,7 +63,7 @@ points: 3 required: false Chest: - points: 1 + points: 3 required: false RightLeg: points: 2 diff --git a/Resources/Prototypes/Species/shadowkin.yml b/Resources/Prototypes/Species/shadowkin.yml index f7674e80d6..4cf88e803b 100644 --- a/Resources/Prototypes/Species/shadowkin.yml +++ b/Resources/Prototypes/Species/shadowkin.yml @@ -18,7 +18,6 @@ sexes: - Male - Female - - Unsexed minHeight: 0.65 defaultHeight: 0.85 maxHeight: 1.15 diff --git a/Resources/Prototypes/Species/species_weights.yml b/Resources/Prototypes/Species/species_weights.yml index d158862d38..78c981a488 100644 --- a/Resources/Prototypes/Species/species_weights.yml +++ b/Resources/Prototypes/Species/species_weights.yml @@ -10,3 +10,5 @@ Vulpkanin: 4 # DeltaV - Vulpkanin, see Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml Diona: 2 Shadowkin: 0 + Tajaran: 3 # Einstein Engines - Tajaran, see Prototypes/_EE/Entities/Mobs/Species/tajaran.yml + Chitinid: 3 # DeltaV - Chitinid, see Prototypes/DeltaV/Entities/Mobs/Species/chitinid.yml diff --git a/Resources/Prototypes/StatusIcon/psionics.yml b/Resources/Prototypes/StatusIcon/psionics.yml new file mode 100644 index 0000000000..67aa622204 --- /dev/null +++ b/Resources/Prototypes/StatusIcon/psionics.yml @@ -0,0 +1,27 @@ +- type: psionicsIcon + id: PsionicsIcon + abstract: true + offset: 1 + locationPreference: Left + isShaded: true + +- type: psionicsIcon + parent: PsionicsIcon + id: PsionicsIconSuspected + icon: + sprite: /Textures/Interface/Misc/psionics_icons.rsi + state: hud_suspected + +- type: psionicsIcon + parent: PsionicsIcon + id: PsionicsIconRegistered + icon: + sprite: /Textures/Interface/Misc/psionics_icons.rsi + state: hud_registered + +- type: psionicsIcon + parent: PsionicsIcon + id: PsionicsIconAbusing + icon: + sprite: /Textures/Interface/Misc/psionics_icons.rsi + state: hud_abusing diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index ede5deb897..9c3c21e19f 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -236,6 +236,7 @@ species: - IPC - Lamia + - Plasmaman functions: - !type:TraitAddComponent components: @@ -257,6 +258,7 @@ species: - IPC - Lamia + - Plasmaman functions: - !type:TraitAddComponent components: diff --git a/Resources/Prototypes/Traits/mental.yml b/Resources/Prototypes/Traits/mental.yml index 172872a6cd..627aad4b1f 100644 --- a/Resources/Prototypes/Traits/mental.yml +++ b/Resources/Prototypes/Traits/mental.yml @@ -27,10 +27,16 @@ inverted: true species: - Oni + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Shadowkin - !type:CharacterTraitRequirement inverted: true traits: - LowPotential + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitReplaceComponent components: @@ -66,10 +72,16 @@ inverted: true species: - Oni + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Shadowkin - !type:CharacterTraitRequirement inverted: true traits: - HighPotential + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitReplaceComponent components: @@ -110,6 +122,8 @@ traits: - HighAmplification - PowerOverwhelming + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -145,6 +159,8 @@ traits: - LowAmplification - PowerOverwhelming + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -180,6 +196,8 @@ traits: - LowAmplification - HighAmplification + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -214,6 +232,8 @@ inverted: true traits: - HighDampening + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -248,6 +268,8 @@ inverted: true traits: - LowDampening + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -281,6 +303,8 @@ inverted: true jobs: - ResearchDirector + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -314,6 +338,8 @@ jobs: - ResearchDirector - ForensicMantis + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -348,6 +374,8 @@ inverted: true jobs: - Librarian + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: @@ -379,6 +407,8 @@ - !type:CharacterTraitRequirement traits: - AnomalousPositronics + - !type:CharacterItemGroupRequirement + group: TraitsMachine functions: - !type:TraitAddPsionics psionicPowers: diff --git a/Resources/Prototypes/Traits/neutral.yml b/Resources/Prototypes/Traits/neutral.yml index 8ea7006c0c..a13e8ee10e 100644 --- a/Resources/Prototypes/Traits/neutral.yml +++ b/Resources/Prototypes/Traits/neutral.yml @@ -42,6 +42,20 @@ components: - type: SouthernAccent +- type: trait + id: SkeletonAccent + category: TraitsSpeechAccents + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsAccents + - !type:CharacterSpeciesRequirement + species: + - Plasmaman + functions: + - !type:TraitAddComponent + components: + - type: SkeletonAccent + - type: trait id: NormalVision category: Visual diff --git a/Resources/Prototypes/Traits/physical.yml b/Resources/Prototypes/Traits/physical.yml index b6a0f279f1..8350909ebe 100644 --- a/Resources/Prototypes/Traits/physical.yml +++ b/Resources/Prototypes/Traits/physical.yml @@ -139,6 +139,7 @@ inverted: true species: - Felinid + - Tajaran functions: - !type:TraitModifyStamina staminaModifier: -15 @@ -249,6 +250,7 @@ inverted: true species: - Felinid + - Tajaran - !type:CharacterTraitRequirement inverted: true traits: @@ -272,6 +274,7 @@ inverted: true species: - Felinid + - Tajaran - !type:CharacterTraitRequirement inverted: true traits: @@ -307,6 +310,7 @@ Blunt: 1.2 Slash: 1.2 Piercing: 1.2 + Heat: 1.2 Poison: 1.2 Asphyxiation: 1.2 # An attack rate of 1.25 hits per second (1 / 0.8 = 1.25) multiplied by 20% extra damage @@ -321,7 +325,8 @@ - !type:CharacterSpeciesRequirement inverted: true species: - - Felinid # Felinids already have this feature by default. + - Felinid # Felinids/Tajaran already have this feature by default. + - Tajaran - !type:CharacterHeightRequirement max: 150 - !type:CharacterWidthRequirement @@ -345,6 +350,7 @@ inverted: true species: - Vulpkanin # This trait functions exactly as-is for the Vulpkanin trait. + - Plasmaman # Plasmamen have cold immunity so this trait is unnecessary functions: - !type:TraitReplaceComponent components: @@ -377,6 +383,13 @@ types: Piercing: 5 # No, this isn't "OP", this is literally the worst brute damage type in the game. # Same deal as Slash, except that a majority of all armor provides Piercing resistance. + - !type:TraitRemoveComponent # Plasmamen have self-damage on melee attacks + components: + - type: DamageOnHit + damage: + types: + Blunt: 0 + - type: trait id: Claws @@ -387,6 +400,7 @@ inverted: true species: - Felinid # Felinids already have cat claws. + - Tajaran # Tajaran also have cat claws - Reptilian # Reptilians also have cat claws. - Shadowkin # Shadowkins also have claws. # - Vulpkanin # Vulpkanin have "Blunt" claws. One could argue this trait "Sharpens" their claws. @@ -403,6 +417,12 @@ types: Slash: 5 # Trade stamina damage on hit for a very minor amount of extra bleed. # Blunt also deals bleed damage, so this is more of a sidegrade. + - !type:TraitRemoveComponent + components: + - type: DamageOnHit + damage: + types: + Blunt: 0 - type: trait id: NaturalWeaponRemoval @@ -433,6 +453,12 @@ damage: types: Blunt: 5 + - !type:TraitRemoveComponent + components: + - type: DamageOnHit + damage: + types: + Blunt: 0 - type: trait id: StrikingCalluses @@ -462,6 +488,8 @@ - Boxer - MartialArtist - Gladiator + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitModifyUnarmed flatDamageIncrease: @@ -484,6 +512,8 @@ - Arachne - Shadowkin - IPC + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -503,6 +533,8 @@ jobs: - Prisoner # Bionics should be "Confiscated" from long term prisoners. - Gladiator + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -528,6 +560,8 @@ inverted: true species: - IPC + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: # TODO: Code Platelet factories as an actual obtainable implant, and replace this with TraitAddImplant - !type:TraitReplaceComponent components: @@ -553,6 +587,8 @@ inverted: true jobs: - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddArmor damageModifierSets: @@ -578,6 +614,8 @@ - Photophobia - Blindness - Nearsighted + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitPushDescription descriptionExtensions: @@ -601,6 +639,8 @@ - !type:CharacterTraitRequirement traits: - CyberEyes + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -627,6 +667,8 @@ inverted: true traits: - CyberEyesOmni + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -651,6 +693,8 @@ traits: - CyberEyesDiagnostic - CyberEyesOmni + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -678,6 +722,8 @@ traits: - CyberEyesMedical - CyberEyesOmni + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -707,6 +753,8 @@ - CyberEyesMedical - CyberEyesDiagnostic - CyberEyesSecurity + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -795,6 +843,8 @@ - !type:CharacterTraitRequirement traits: - CyberEyes + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: @@ -812,6 +862,8 @@ - !type:CharacterTraitRequirement traits: - CyberEyes + - !type:CharacterItemGroupRequirement + group: TraitsMind functions: - !type:TraitAddComponent components: diff --git a/Resources/Prototypes/Traits/skills.yml b/Resources/Prototypes/Traits/skills.yml index e931b2c439..6f55f854c4 100644 --- a/Resources/Prototypes/Traits/skills.yml +++ b/Resources/Prototypes/Traits/skills.yml @@ -167,6 +167,7 @@ inverted: true species: - Felinid + - Tajaran - type: trait id: Singer @@ -220,6 +221,8 @@ inverted: true traits: - PsionicInsulation + - !type:CharacterItemGroupRequirement + group: TraitsMachine - type: trait id: PsionicInsulation @@ -312,6 +315,7 @@ inverted: true species: - Felinid + - Tajaran - Harpy - type: trait diff --git a/Resources/Prototypes/Traits/species.yml b/Resources/Prototypes/Traits/species.yml index 771a796eef..20874d6d6d 100644 --- a/Resources/Prototypes/Traits/species.yml +++ b/Resources/Prototypes/Traits/species.yml @@ -67,16 +67,19 @@ - Swashbuckler - Spearmaster -# - type: trait -# id: ShadowkinBlackeye -# category: Mental -# points: 4 -# functions: -# - !type:TraitReplaceComponent -# components: -# - type: Shadowkin -# blackeyeSpawn: true -# requirements: -# - !type:CharacterSpeciesRequirement -# species: -# - Shadowkin +- type: trait + id: ShadowkinBlackeye + category: Mental + points: 4 + functions: + - !type:TraitReplaceComponent + components: + - type: Shadowkin + blackeyeSpawn: true + - !type:TraitRemoveComponent + components: + - type: Psionic + requirements: + - !type:CharacterSpeciesRequirement + species: + - Shadowkin diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 04845764ad..3402b0b724 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -770,3 +770,13 @@ path: /Audio/Animals/parrot_raught.ogg params: variation: 0.125 + +- type: emoteSounds + id: UnisexPlasmaman + params: + variation: 0.125 + sounds: + Scream: + collection: PlasmamanUnisexScreams + sound: + path: /Audio/Voice/Skeleton/skeleton_scream.ogg diff --git a/Resources/Prototypes/Voice/speech_verbs.yml b/Resources/Prototypes/Voice/speech_verbs.yml index 3f0a4c10fc..6f9db71a5f 100644 --- a/Resources/Prototypes/Voice/speech_verbs.yml +++ b/Resources/Prototypes/Voice/speech_verbs.yml @@ -77,6 +77,8 @@ - chat-speech-verb-skeleton-1 - chat-speech-verb-skeleton-2 - chat-speech-verb-skeleton-3 + - chat-speech-verb-skeleton-4 + - chat-speech-verb-skeleton-5 - type: speechVerb id: Slime diff --git a/Resources/Prototypes/WhiteDream/Entities/Clothing/Cult/armor.yml b/Resources/Prototypes/WhiteDream/Entities/Clothing/Cult/armor.yml index 88b578cb5f..fdaca46eee 100644 --- a/Resources/Prototypes/WhiteDream/Entities/Clothing/Cult/armor.yml +++ b/Resources/Prototypes/WhiteDream/Entities/Clothing/Cult/armor.yml @@ -74,7 +74,7 @@ clothingPrototype: ClothingHeadHatHoodCultHoodTrue - type: ContainerContainer containers: - toggleable-clothing: !type:ContainerSlot { } + toggleable-clothing: !type:Container { } - type: entity parent: ClothingHeadHatHoodCulthood diff --git a/Resources/Prototypes/WhiteDream/Roles/Antags/blood-cultist.yml b/Resources/Prototypes/WhiteDream/Roles/Antags/blood-cultist.yml index 0e0e9b5943..d1624a9d8a 100644 --- a/Resources/Prototypes/WhiteDream/Roles/Antags/blood-cultist.yml +++ b/Resources/Prototypes/WhiteDream/Roles/Antags/blood-cultist.yml @@ -4,9 +4,6 @@ antagonist: true setPreference: true objective: roles-antag-blood-cultist-objective - requirements: - - !type:CharacterOverallTimeRequirement - min: 43200 - type: startingGear id: BloodCultistGear diff --git a/Resources/Prototypes/Wires/layouts.yml b/Resources/Prototypes/Wires/layouts.yml index c6040f5e58..402700e250 100644 --- a/Resources/Prototypes/Wires/layouts.yml +++ b/Resources/Prototypes/Wires/layouts.yml @@ -172,9 +172,9 @@ id: Jukebox dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction - + - !type:PowerWireAction + - !type:AiInteractWireAction + - type: wireLayout id: AnomalyGenerator dummyWires: 2 diff --git a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/baseComputerModular.yml b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/baseComputerModular.yml index d522babc58..d8da10eb44 100644 --- a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/baseComputerModular.yml +++ b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/baseComputerModular.yml @@ -4,16 +4,20 @@ name: modular computer description: Part of a recent initiative to make computers less static. Comes with a disk slot for various "program disks". components: + - type: Computer + board: BaseComputerModularCircuitBoard - type: ModularComputer - # I plan to make modular itemslots a thing in the future for stuff like the fax machine. Coming Soon:tm: - type: ItemSlots slots: modularComputerDiskSlot: - name: Disk + name: Program disk insertSound: path: /Audio/Machines/terminal_insert_disc.ogg ejectSound: path: /Audio/Machines/terminal_insert_disc.ogg + whitelist: + tags: + - ComputerDisk - type: ContainerContainer containers: board: !type:Container @@ -25,5 +29,21 @@ occludes: True ent: null +- type: entity + parent: BaseComputerCircuitboard + id: BaseComputerModularCircuitBoard + name: modular computer board + description: A computer printed circuit board for a modular computer. + components: + - type: ComputerBoard + prototype: BaseComputerModular - +- type: latheRecipe + id: BaseComputerModularCircuitBoard + result: BaseComputerModularCircuitBoard + category: Circuitry + completetime: 4 + materials: + Steel: 100 + Glass: 500 + Gold: 100 diff --git a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/computerDisk.yml b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/computerDisk.yml new file mode 100644 index 0000000000..bb7d17865a --- /dev/null +++ b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/computerDisk.yml @@ -0,0 +1,41 @@ +- type: entity + parent: BaseItem + id: BaseProgramDisk + abstract: true + name: program disk + components: + - type: Sprite + sprite: Objects/Misc/cd.rsi + state: icon + - type: ComputerDisk + - type: Tag + tags: + - ComputerDisk + +- type: entity + parent: BaseProgramDisk + id: ProgramDiskCommunications + name: program disk + suffix: Communications + description: A diskette for usage in a computer. + components: + - type: ComputerDisk + programPrototype: CommunicationsConsoleDiskPrototype + persistState: true + +- type: entity + parent: BaseProgramDisk + id: ProgramDiskUnburnt + name: program disk + description: A diskette for usage in a computer. + components: + - type: ComputerDisk + programPrototype: UnburnedDiskPrototype + persistState: true + +- type: latheRecipe + id: ProgramDiskUnburnt + result: ProgramDiskUnburnt + completetime: 2 + materials: + Plastic: 50 diff --git a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/computerDisks.yml b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/computerDisks.yml deleted file mode 100644 index f742f46dc9..0000000000 --- a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/computerDisks.yml +++ /dev/null @@ -1,40 +0,0 @@ -- type: entity - parent: BaseItem - id: BaseProgramDisk - abstract: true - name: program disk - components: - - type: Sprite - sprite: Objects/Misc/cd.rsi - state: icon - - type: ComputerDisk - saveData: false - -- type: entity - parent: BaseProgramDisk - id: ProgramDiskCrewMonitor - name: program disk (crew monitor) - description: A diskette for usage in a computer. This one has the "Crew Monitor" program burnt to it. - components: - - type: ComputerDisk - programPrototype: CrewMonitorDiskPrototype - persistState: true - -- type: entity - parent: BaseProgramDisk - id: ProgramDiskCommunicationsConsole - name: program disk (communications console) - description: A diskette for usage in a computer. This one has the "Communications Console" program burnt to it. - components: - - type: ComputerDisk - programPrototype: CommunicationsConsoleDiskPrototype - persistState: true - -- type: entity - parent: BaseProgramDisk - id: ProgramDiskUnburnt - name: program disk - description: A diskette for usage in a computer. This one has no program burnt to it. - components: - - type: ComputerDisk - programPrototype: UnburnedDiskPrototype diff --git a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/diskBurner.yml b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/diskBurner.yml new file mode 100644 index 0000000000..1c012ba049 --- /dev/null +++ b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/diskBurner.yml @@ -0,0 +1,75 @@ +- type: entity + id: DiskBurner + parent: [ BaseMachinePowered, ConstructibleMachine ] + name: disk burner + description: Takes a computer circuit board and disk as input. Burns the computer board's program to the disk. + components: + - type: Sprite + sprite: Structures/Machines/circuit_imprinter.rsi + snapCardinals: true + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - type: Machine + board: DiskBurnerMachineCircuitboard + - type: ItemSlots + slots: + diskSlot: + name: Disk + insertSound: + path: /Audio/Machines/terminal_insert_disc.ogg + ejectSound: + path: /Audio/Machines/terminal_insert_disc.ogg + whitelist: + tags: + - ComputerDisk + boardSlot: + name: Board + whitelist: + tags: + - ComputerBoard + - type: DiskBurner + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + diskSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + boardSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + +- type: entity + id: DiskBurnerMachineCircuitboard + parent: BaseMachineCircuitboard + name: disk burner machine board + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: DiskBurner + requirements: + Capacitor: 2 + Manipulator: 2 + +- type: latheRecipe + id: DiskBurnerMachineCircuitboard + result: DiskBurnerMachineCircuitboard + category: Circuitry + completetime: 4 + materials: + Steel: 100 + Glass: 700 + Gold: 100 diff --git a/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/recipes.yml b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/recipes.yml new file mode 100644 index 0000000000..015d0a0494 --- /dev/null +++ b/Resources/Prototypes/_Arcadis/Entities/Objects/Computers/recipes.yml @@ -0,0 +1,12 @@ +- type: technology + id: ModularComputing + name: research-technology-modular-computing + icon: + sprite: Objects/Misc/cd.rsi + state: icon + discipline: Experimental + tier: 2 + cost: 15000 + recipeUnlocks: + - BaseComputerModularCircuitBoard + - DiskBurnerMachineCircuitboard diff --git a/Resources/Prototypes/_Arcadis/tags.yml b/Resources/Prototypes/_Arcadis/tags.yml new file mode 100644 index 0000000000..145c1de108 --- /dev/null +++ b/Resources/Prototypes/_Arcadis/tags.yml @@ -0,0 +1,8 @@ +- type: Tag + id: ComputerDisk + +- type: Tag + id: ComputerBoard + +- type: Tag + id: ModularComputerEntity diff --git a/Resources/Prototypes/_EE/Body/Parts/tajaran.yml b/Resources/Prototypes/_EE/Body/Parts/tajaran.yml new file mode 100644 index 0000000000..4115f2bf98 --- /dev/null +++ b/Resources/Prototypes/_EE/Body/Parts/tajaran.yml @@ -0,0 +1,118 @@ +- type: entity + id: PartTajaran + parent: [BaseItem, BasePart] + name: "tajaran body part" + abstract: true + components: + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: TorsoTajaran + name: "Tajaran torso" + parent: [PartTajaran, BaseTorso] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: Blood + Quantity: 20 + + +- type: entity + id: HeadTajaran + name: "Tajaran head" + parent: [PartTajaran, BaseHead] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: LeftArmTajaran + name: "left Tajaran arm" + parent: [PartTajaran, BaseLeftArm] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmTajaran + name: "right Tajaran arm" + parent: [PartTajaran, BaseRightArm] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandTajaran + name: "left Tajaran hand" + parent: [PartTajaran, BaseLeftHand] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandTajaran + name: "right Tajaran hand" + parent: [PartTajaran, BaseRightHand] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegTajaran + name: "left Tajaran leg" + parent: [PartTajaran, BaseLeftLeg] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegTajaran + name: "right Tajaran leg" + parent: [PartTajaran, BaseRightLeg] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootTajaran + name: "left Tajaran foot" + parent: [PartTajaran, BaseLeftFoot] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootTajaran + name: "right Tajaran foot" + parent: [PartTajaran, BaseRightFoot] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/_EE/Body/Prototypes/tajaran.yml b/Resources/Prototypes/_EE/Body/Prototypes/tajaran.yml new file mode 100644 index 0000000000..1b5c919e83 --- /dev/null +++ b/Resources/Prototypes/_EE/Body/Prototypes/tajaran.yml @@ -0,0 +1,50 @@ +- type: body + id: Tajaran + name: tajaran + root: torso + slots: + head: + part: HeadTajaran + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoTajaran + connections: + - right arm + - left arm + - right leg + - left leg + - head # Shitmed Change + organs: + heart: OrganAnimalHeart + lungs: OrganHumanLungs + stomach: OrganVulpkaninStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + right arm: + part: RightArmTajaran + connections: + - right hand + left arm: + part: LeftArmTajaran + connections: + - left hand + right hand: + part: RightHandTajaran + left hand: + part: LeftHandTajaran + right leg: + part: RightLegTajaran + connections: + - right foot + left leg: + part: LeftLegTajaran + connections: + - left foot + right foot: + part: RightFootTajaran + left foot: + part: LeftFootTajaran diff --git a/Resources/Prototypes/_EE/Damage/modifier_sets.yml b/Resources/Prototypes/_EE/Damage/modifier_sets.yml new file mode 100644 index 0000000000..2060a66428 --- /dev/null +++ b/Resources/Prototypes/_EE/Damage/modifier_sets.yml @@ -0,0 +1,8 @@ +- type: damageModifierSet + id: Tajaran + coefficients: + Blunt: 1.15 + Slash: 1.15 + Piercing: 1.15 + Heat: 1.35 + Cold: 0.65 diff --git a/Resources/Prototypes/_EE/Datasets/Names/tajaran_first.yml b/Resources/Prototypes/_EE/Datasets/Names/tajaran_first.yml new file mode 100644 index 0000000000..14e8581c67 --- /dev/null +++ b/Resources/Prototypes/_EE/Datasets/Names/tajaran_first.yml @@ -0,0 +1,103 @@ +- type: dataset + id: names_tajaran_first + values: # Randomly generated based on https://github.com/ParadiseSS13/Paradise/blob/5b516c3166a07cd10d035be1616248ba126e31a1/code/modules/mob/language.dm + - Ahkazuzir + - Ahknal + - Ahkrhejurlzar + - Ahkwaketdar + - Arazirrrhazhal + - Azukhaztul + - Azutulsanurik + - Baqka + - Baqmirrfar + - Churdra + - Darkir + - Darrkiraasitajr + - Darrvahahkkii + - Dradra + - Draii'rrikrik + - Drarrzir + - Dratulara + - Dynhhalaasiraj + - Dynhmak + - Eechthaa + - Farcreshjurl + - Fardradra + - Farkraraghjurl + - Farrheii'rdar + - Haljun + - Halmahthaa + - Halrheeech + - Halrikdynh + - Halthaa + - Ii'rdarrajmi + - Ii'rdynhrr + - Ii'rkhanmi + - Ii'rvahmiran + - Jijunmahaasi + - Jjrika + - Jrikaahksanu + - Junaasi + - Jundradarrjri + - Junkradareech + - Junrrwajurl + - Jurlfar + - Jurlhalrr + - Jurlmahnja + - Jurlrhetul + - Jurlrik + - Jurlzirkalmanq + - Kahaasi + - Kahara + - Kahdar + - Kahketdrarhe + - Kahmakbaq + - Kahrajrr + - Kalnalketkal + - Kalrhe + - Kalwamak + - Ketjri + - Khankal + - Khantulmi + - Khazaasikhaz + - Khazkirdynheech + - Khazrr + - Kiiara + - Kiihrarjurl + - Kiirajthaakii + - Kirjri + - Kirjriraghtul + - Kirkhankhan + - Kirmidradarr + - Krahaljurlqara + - Krakra + - Mahhrar + - Mahkalkalket + - Mahzirzarjurl + - Manqjri + - Mikra + - Mirthaa + - Nalchurvah + - Njaazukal + - Raghdarr + - Raghrrhazrhe + - Rhejurlcresh + - Rhetajrcreshmir + - Rikvah + - Rirrirbaq + - Rirrr + - Rirsam + - Rirvahrrzar + - Rrarahalsanu + - Rrhazbaq + - Rrhazdarr + - Rrjunjurlazu + - Rrkhaz + - Rrmiarachur + - Samrrhazhrarrhe + - Tajrara + - Tajrjri + - Tajrqaramahkhaz + - Tajrrirrirjri + - Tulmahii'rtajr + - Tulrhejri diff --git a/Resources/Prototypes/_EE/Datasets/Names/tajaran_last.yml b/Resources/Prototypes/_EE/Datasets/Names/tajaran_last.yml new file mode 100644 index 0000000000..0355c60452 --- /dev/null +++ b/Resources/Prototypes/_EE/Datasets/Names/tajaran_last.yml @@ -0,0 +1,38 @@ +- type: dataset + id: names_tajaran_last + values: # Randomly generated based on https://github.com/ParadiseSS13/Paradise/blob/5b516c3166a07cd10d035be1616248ba126e31a1/code/modules/mob/language.dm + - Aasirirrhe + - Aravah + - Azufarjri + - Baqhaljurl + - Churmir + - Darnal + - Dradarrjri + - Drahrardra + - Farsam + - Jridrajriara + - Jrirhe + - Junsanu + - Ketwami + - Khandradar + - Kiimah + - Krajunmirr + - Krajurlcresh + - Krakhazeech + - Kravah + - Mirrirkii + - Ranmirjri + - Rirrikvahrir + - Rraasi + - Rrhazka + - Tulchurnjarrhaz + - Tulkahhrar + - Vahjunkra + - Wami + - Zarranmakjri + - Zirtajrzar + - Hadii # These 5 surnames technically should appear way more + - Kaytam + - Zhan-Khazan + - Hharar + - Njarir'Akhan diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/human_facial_hair.yml b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/human_facial_hair.yml new file mode 100644 index 0000000000..ef78a10646 --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/human_facial_hair.yml @@ -0,0 +1,70 @@ +- type: marking + id: HumanFacialHairChin2 + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-beardchin +- type: marking + id: HumanFacialHairSuperLong + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-beardlong +- type: marking + id: HumanFacialHairShort + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-beardshort +- type: marking + id: HumanFacialHairThick + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-beardthick +- type: marking + id: HumanFacialHairViking + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-beardviking +- type: marking + id: HumanFacialHairBristle + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-bristle +- type: marking + id: HumanFacialHairMoustacheWithStubble + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-mustachewithstubble +- type: marking + id: HumanFacialHairThickBristle + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: beard-thickbristle +- type: marking + id: HumanFacialHairHandlebar + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _Corvax/Mobs/Customization/human_facial_hair.rsi + state: handlebar +- type: marking + id: HumanFacialHairHandlebar2 + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: _Corvax/Mobs/Customization/human_facial_hair.rsi + state: handlebar2 diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/human_hair.yml new file mode 100644 index 0000000000..93d917d973 --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/human_hair.yml @@ -0,0 +1,91 @@ +- type: marking + id: HumanHairArabicGathered + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-arabicgatheredhair +- type: marking + id: HumanHairClassicHair + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-classichairmale +- type: marking + id: HumanHairSideComb + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-combedfromside +- type: marking + id: HumanHairLong4 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-longhair +- type: marking + id: HumanHairManbun2 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-manbunold +- type: marking + id: HumanHairPigtailTajaran + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-pigtailtajaran +- type: marking + id: HumanHairShavedSide + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-shavedside +- type: marking + id: HumanHairShorthair8 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-shorthaired +- type: marking + id: HumanFembun + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _ADT/Mobs/Customization/Human/custom.rsi + state: hair-womenbun +- type: marking + id: HumanHairAfricanPigtails + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Corvax/Mobs/Customization/human_hair.rsi + state: africanpigtails +- type: marking + id: HumanHairAfropuffDouble + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Corvax/Mobs/Customization/human_hair.rsi + state: afropuffdouble +- type: marking + id: HumanHairAfropuffLeft + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Corvax/Mobs/Customization/human_hair.rsi + state: afropuffleft +- type: marking + id: HumanHairAfropuffRight + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Corvax/Mobs/Customization/human_hair.rsi + state: afropuffright diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/tajaran.yml b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/tajaran.yml new file mode 100644 index 0000000000..fe5d556929 --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/tajaran.yml @@ -0,0 +1,289 @@ +# Tajaran Tails + +- type: marking + id: TajaranTailRetro + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail + +- type: marking + id: TajaranTailAnim + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail_anim + +- type: marking + id: TajaranTailRetroRings + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail + - sprite: _EE/Mobs/Customization/Tajaran/tail_markings.rsi + state: tail_rings + +- type: marking + id: TajaranTailAnimRings + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail_anim + - sprite: _EE/Mobs/Customization/Tajaran/tail_markings.rsi + state: tail_anim_rings + +# Tajaran Ears + +- type: marking + id: TajaranEarsRetro + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: ears + +- type: marking + id: TajaranEarsSeparate + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: outears + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: inears + +- type: marking + id: TajaranEarsRetroNear + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: ears_near + +- type: marking + id: TajaranEarsSeparateNear + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: outears_near + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: inears_near + +# Tajaran Head/Face + +- type: marking + id: TajaranHeadNose + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: nose + +- type: marking + id: TajaranHeadMuzzle + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: muzzle + +- type: marking + id: TajaranHeadMuzzleLarge + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: muzzle_large + +- type: marking + id: TajaranHeadPoints + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: points + +- type: marking + id: TajaranHeadTiger + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: tiger_face + +- type: marking + id: TajaranHeadTigerAlt + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: tiger_head + +- type: marking + id: TajaranHeadPatches + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: patch + +# Tajaran Torso + +- type: marking + id: TajaranTorsoBelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/torso.rsi + state: belly + +- type: marking + id: TajaranTorsoCrest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/torso.rsi + state: crest + +- type: marking + id: TajaranTorsoFullBelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/torso.rsi + state: fullbelly + +# Overlays + +- type: marking + id: TajaranOverlayPatch + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/overlays.rsi + state: patch + +- type: marking + id: TajaranOverlayPoints + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/overlays.rsi + state: points + +# Felinid Ears, adapted for tajaran (all needed to be higher up and/or modified to fit better) + +- type: marking + id: TajaranEarsBasic + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: basic_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: basic_inner + +- type: marking + id: TajaranEarsCurled + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: curled_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: curled_inner + +- type: marking + id: TajaranEarsDroopy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: droopy_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: droopy_inner + +- type: marking + id: TajaranEarsFuzzy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: basic_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: fuzzy_inner + +- type: marking + id: TajaranEarsStubby + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: stubby_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: stubby_inner + +- type: marking + id: TajaranEarsTall + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: tall_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: tall_inner + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: tall_fuzz + +- type: marking + id: TajaranEarsTorn + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: torn_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: torn_inner + +- type: marking + id: TajaranEarsWide + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: wide_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: wide_inner diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Player/tajaran.yml b/Resources/Prototypes/_EE/Entities/Mobs/Player/tajaran.yml new file mode 100644 index 0000000000..780545fa97 --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Player/tajaran.yml @@ -0,0 +1,25 @@ +- type: entity + save: false + name: Urist McTajaran + parent: MobTajaranBase + id: MobTajaran + components: + - type: CombatMode + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: Speech + speechVerb: Felinid + - type: MobMover + - type: InputMover + - type: Alerts + - type: Actions + - type: Eye + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen + - Cat diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Species/tajaran.yml b/Resources/Prototypes/_EE/Entities/Mobs/Species/tajaran.yml new file mode 100644 index 0000000000..4e27fc1aed --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Species/tajaran.yml @@ -0,0 +1,127 @@ +- type: entity + name: Urist McTajaran + parent: BaseMobSpeciesOrganic + id: MobTajaranBase + abstract: true + components: + - type: Hunger + baseDecayRate: 0.02083333332 # 25% more than default + - type: Thirst + - type: Sprite + scale: 0.8, 0.8 + - type: HumanoidAppearance + species: Tajaran + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.28 + density: 140 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Body + prototype: Tajaran + requiredLegs: 2 + - type: Damageable + damageModifierSet: Tajaran + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.85 # 0.7 is base speed. + 80: 0.75 # 0.5 is base speed. + - type: Carriable # Carrying system from nyanotrasen. + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatHuman + amount: 5 + - type: Flammable + fireStackIncreaseMultiplier: 1.35 # until you light it up, cuz it's oily too + - type: NightVision + color: "#808080" + activateSound: null + deactivateSound: null + - type: Flashable + eyeDamageChance: 0.3 + eyeDamage: 1 + durationMultiplier: 1.5 + - type: MeleeWeapon + soundHit: + collection: Punch + animation: WeaponArcClaw + damage: + types: + Slash: 4 + Piercing: 1 + - type: Speech + speechSounds: Alto + - type: DamageOnHighSpeedImpact # Landing on all fours! + damage: + types: + Blunt: 1 + - type: Stamina + critThreshold: 85 + decay: 2.55 # 3 base decay multiplied by 0.85 = 2.55 + - type: TypingIndicator + proto: felinid + - type: PseudoItem + storedOffset: 0,17 + shape: + - 0,0,1,4 + - 0,2,3,4 + - 4,0,5,4 + - type: Vocal + wilhelm: "/Audio/Nyanotrasen/Voice/Felinid/cat_wilhelm.ogg" + sounds: + Male: MaleFelinid + Female: FemaleFelinid + Unsexed: MaleFelinid + - type: Felinid # real + - type: NoShoesSilentFootsteps + - type: StepTriggerImmune + whitelist: + types: + - Shard + - Landmine + - Mousetrap + - SlipEntity + - type: LanguageKnowledge + speaks: + - TauCetiBasic + - SiikMaas + understands: + - TauCetiBasic + - SiikMaas + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - FelinidEmotes + - type: FootPrints + - type: Temperature + coldDamageThreshold: 248.15 # -25 degrees centigrade, like 12 degrees below normal + currentTemperature: 311.76 # Body temperature of cat + coldDamage: + types: + Cold: 0.065 # in line with cold resist + heatDamage: + types: + Heat: 2 # poor kitty + - type: ThermalRegulator + normalBodyTemperature: 311.76 + + +- type: entity + save: false + name: Urist McHands + parent: MobHumanDummy + id: MobTajaranDummy + categories: [ HideSpawnMenu ] + description: A dummy tajaran meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Tajaran diff --git a/Resources/Prototypes/_EE/Language/Species-Specific/tajaran.yml b/Resources/Prototypes/_EE/Language/Species-Specific/tajaran.yml new file mode 100644 index 0000000000..2612c841c8 --- /dev/null +++ b/Resources/Prototypes/_EE/Language/Species-Specific/tajaran.yml @@ -0,0 +1,360 @@ +# One of 5 languages that Tajara could speak, lore-wise best choice since others (lore wise) rely on gesticulation too +# Short name is Maas +# To quote: "The traditionally employed tongue of Adhomai, comprised of expressive yowls and chirps. Native to the Tajara" +- type: language + id: SiikMaas + isVisibleLanguage: true + speech: + color: "#da954bee" + fontId: Noganas # Rugged, like the people and the land + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 # this is mostly based on the name generator, 2-4 is there so it goes here too + maxSyllables: 4 + replacement: + - mrr + - rr + - tajr + - kir + - raj + - kii + - mir + - kra + - ahk + - nal + - vah + - khaz + - jri + - ran + - darr + - mi + - jri + - dynh + - manq + - rhe + - zar + - rrhaz + - kal + - chur + - eech + - thaa + - dra + - jurl + - mah + - sanu + - dra + - ii'r + - ka + - aasi + - far + - wa + - baq + - ara + - qara + - zir + - sam + - mak + - hrar + - nja + - rir + - khan + - jun + - dar + - rik + - kah + - hal + - ket + - jurl + - mah + - tul + - cresh + - azu + - ragh + - mro + - mra + - mrro + - mrra + +# Tajaran sign language. Crucially, only tajara can "speak" it, due to need for tajara body language +# (if they cut off your tail or ears you shouldn't be able to speak it, but well) +- type: language + id: NalRasan + speech: + allowRadio: false + requireSpeech: false + color: "#dddddd" + messageWrapOverrides: + Speak: chat-sign-tajaran-language-message-wrap + Whisper: chat-sign-tajaran-language-whisper-wrap + speechVerbOverrides: + - chat-speech-verb-sign-nalrasan-1 + - chat-speech-verb-sign-nalrasan-2 + - chat-speech-verb-sign-nalrasan-3 + - chat-speech-verb-sign-nalrasan-4 + - chat-speech-verb-sign-nalrasan-5 + - chat-speech-verb-sign-nalrasan-6 + - chat-speech-verb-sign-nalrasan-7 + - chat-speech-verb-sign-nalrasan-8 + - chat-speech-verb-sign-nalrasan-9 + - chat-speech-verb-sign-nalrasan-10 + - chat-speech-verb-sign-nalrasan-11 + - chat-speech-verb-sign-nalrasan-12 + - chat-speech-verb-sign-nalrasan-13 + - chat-speech-verb-sign-nalrasan-14 + - chat-speech-verb-sign-nalrasan-15 + - chat-speech-verb-sign-nalrasan-16 + - chat-speech-verb-sign-nalrasan-17 + obfuscation: + !type:ReplacementObfuscation + replacement: + - "" # basically we can't get around this, so let's pretend that it's alright while crying + +# One of 5 languages that Tajara could speak, this one is Tajara exclusive, and get some cool stuff thanks to that (non-verbal element) +# Short name is Tajr +# To quote: "Language native to the Tajara, it employs both verbal and non-verbal elements" +- type: language + id: SiikTajr + isVisibleLanguage: true + speech: + color: "#f58c9aee" # Bright red, to push this energy through + fontId: Sriracha # relatively energetic, portraying the body movement I suppose + allowRadio: true # It's actually ok, since message wrap overrides are broken for radio, yipee? + requireSpeech: false + messageWrapOverrides: + Speak: chat-sign-tajaran-language-message-wrap + Whisper: chat-sign-tajaran-language-whisper-wrap + speechVerbOverrides: + - chat-speech-verb-sign-siiktajr-1 + - chat-speech-verb-sign-siiktajr-2 + - chat-speech-verb-sign-siiktajr-3 + - chat-speech-verb-sign-siiktajr-4 + - chat-speech-verb-sign-siiktajr-5 + - chat-speech-verb-sign-siiktajr-6 + - chat-speech-verb-sign-siiktajr-7 + - chat-speech-verb-sign-siiktajr-8 + - chat-speech-verb-sign-siiktajr-9 + - chat-speech-verb-sign-siiktajr-10 + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 3 # shorter cuz dual lingo i suppose + replacement: + - mrr + - rr + - tajr + - kir + - raj + - kii + - mir + - kra + - ahk + - nal + - vah + - khaz + - jri + - ran + - darr + - mi + - jri + - dynh + - manq + - rhe + - zar + - rrhaz + - kal + - chur + - eech + - thaa + - dra + - jurl + - mah + - sanu + - dra + - ii'r + - ka + - aasi + - far + - wa + - baq + - ara + - qara + - zir + - sam + - mak + - hrar + - nja + - rir + - khan + - jun + - dar + - rik + - kah + - hal + - ket + - jurl + - mah + - tul + - cresh + - azu + - ragh + - mro + - mra + - mrro + - mrra + + +# One of 5 languages that Tajara could speak, this one is your classic "The Nobility Language", also should have no translators availible +# Short name is Yas +# To quote: "The traditional language of the tajaran nobility" +- type: language + id: YaSsa + isVisibleLanguage: true + speech: + color: "#9a69f5ee" # More or less the color of nobility + fontId: GrenzeGotisch # Old and distinguished, but not unreadable + obfuscation: + !type:SyllableObfuscation + minSyllables: 3 + maxSyllables: 5 # since it's for nobility, we can make it a lil longer + replacement: + - hrr + - rhr + - tarj + - khir + - rajh + - kir + - mier + - kre + - ahek + - nlhal + - veh + - khaz + - dri + - rhan + - darrer + - mi + - jhri + - dynher + - manqi + - rhas + - shar + - drhaz + - kalh + - shur + - echi + - tha + - draer + - jurl + - maher + - sanii + - dra + - ii'r + - kan + - aesi + - fare + - we + - bash + - arha + - quara + - zhir + - sem + - make + - hrer + - nja + - rir + - can + - jhun + - dar + - rik + - kah + - hal + - kete + - juril + - mah + - tul + - cresh + - azu + - ragh + - miro + - mara + - mrero + - mrara + + +# One of 5 languages that Tajara could speak, this one is the dialect lingo +# Short name is Del +# To quote: "A dialect developed by the Zhan-Khazan communities, commonly used in religious +# ceremonies dedicated to the Snow God and amongst settlements comprised mostly of Zhan-Khazan" +- type: language + id: Delvahii + isVisibleLanguage: true + speech: + color: "#b1c472ee" # Green, color of grass, of change, and of spring + fontId: RubikDirt # Aptly named + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 4 # again, normal length + replacement: + - mrr + - rr + - tajr + - kir + - raj + - kii + - mir + - kra + - ahk + - nal + - vah + - khaz + - jri + - ran + - darr + - mi + - jri + - dynh + - manq + - rhe + - zar + - rrhaz + - kal + - chur + - eech + - thaa + - dra + - jurl + - mah + - sanu + - dra + - ii'r + - ka + - aasi + - far + - wa + - baq + - ara + - qara + - zir + - sam + - mak + - hrar + - nja + - rir + - khan + - jun + - dar + - rik + - kah + - hal + - ket + - jurl + - mah + - tul + - cresh + - azu + - ragh + - mro + - mra + - mrro + - mrra diff --git a/Resources/Prototypes/_EE/Species/tajaran.yml b/Resources/Prototypes/_EE/Species/tajaran.yml new file mode 100644 index 0000000000..d7029f67fe --- /dev/null +++ b/Resources/Prototypes/_EE/Species/tajaran.yml @@ -0,0 +1,175 @@ +- type: species + id: Tajaran + name: species-name-tajaran + roundStart: true + prototype: MobTajaran + sprites: MobTajaranSprites + markingLimits: MobTajaranMarkingLimits + dollPrototype: MobTajaranDummy + skinColoration: AnimalFur + minHeight: 0.65 + defaultHeight: 0.8 + maxHeight: 1.1 + minWidth: 0.6 + defaultWidth: 0.8 + maxWidth: 1.15 + maleFirstNames: names_tajaran_first + femaleFirstNames: names_tajaran_first + lastNames: names_tajaran_last + + +- type: markingPoints + id: MobTajaranMarkingLimits + points: + Hair: + points: 1 + required: false + FacialHair: + points: 1 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ TajaranTailRetro ] + HeadTop: + points: 1 + required: true + defaultMarkings: [ TajaranEarsBasic ] + Chest: + points: 1 + required: false + RightLeg: + points: 2 + required: false + RightFoot: + points: 2 + required: false + LeftLeg: + points: 2 + required: false + LeftFoot: + points: 2 + required: false + RightArm: + points: 2 + required: false + RightHand: + points: 3 + required: false + LeftArm: + points: 2 + required: false + LeftHand: + points: 3 + required: false + +- type: speciesBaseSprites + id: MobTajaranSprites + sprites: + Head: MobTajaranHead + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Hair: MobHumanoidAnyMarking + FacialHair: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + Chest: MobTajaranTorso + Eyes: MobTajaranEyes + LArm: MobTajaranLArm + RArm: MobTajaranRArm + LHand: MobTajaranLHand + RHand: MobTajaranRHand + LLeg: MobTajaranLLeg + RLeg: MobTajaranRLeg + Tail: MobHumanoidAnyMarking + LFoot: MobTajaranLFoot + RFoot: MobTajaranRFoot + +- type: humanoidBaseSprite + id: MobTajaranEyes + baseSprite: + sprite: Mobs/Customization/eyes.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobTajaranHead + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobTajaranHeadMale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobTajaranHeadFemale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobTajaranTorso + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobTajaranTorsoMale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobTajaranTorsoFemale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobTajaranLLeg + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobTajaranLArm + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobTajaranLHand + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobTajaranLFoot + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobTajaranRLeg + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobTajaranRArm + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobTajaranRHand + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobTajaranRFoot + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/_EE/Traits/languages.yml b/Resources/Prototypes/_EE/Traits/languages.yml new file mode 100644 index 0000000000..7996f96da4 --- /dev/null +++ b/Resources/Prototypes/_EE/Traits/languages.yml @@ -0,0 +1,85 @@ +- type: trait + id: SiikMaas + category: TraitsSpeechLanguages + points: -1 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Tajaran + functions: + - !type:TraitModifyLanguages + languagesSpoken: + - SiikMaas + languagesUnderstood: + - SiikMaas + +- type: trait + id: NalRasan + category: TraitsSpeechLanguages + points: -1 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + species: + - Tajaran + functions: + - !type:TraitModifyLanguages + languagesSpoken: + - NalRasan + languagesUnderstood: + - NalRasan + +- type: trait + id: SiikTajr + category: TraitsSpeechLanguages + points: -2 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + species: + - Tajaran + functions: + - !type:TraitModifyLanguages + languagesSpoken: + - SiikTajr + languagesUnderstood: + - SiikTajr + +- type: trait + id: YaSsa + category: TraitsSpeechLanguages + points: -2 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + species: + - Tajaran + functions: + - !type:TraitModifyLanguages + languagesSpoken: + - YaSsa + languagesUnderstood: + - YaSsa + +- type: trait + id: Delvahii + category: TraitsSpeechLanguages + points: -2 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + species: + - Tajaran + functions: + - !type:TraitModifyLanguages + languagesSpoken: + - Delvahii + languagesUnderstood: + - Delvahii diff --git a/Resources/Prototypes/_Goobstation/Actions/clothing.yml b/Resources/Prototypes/_Goobstation/Actions/clothing.yml new file mode 100644 index 0000000000..d82ab2718f --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Actions/clothing.yml @@ -0,0 +1,20 @@ +- type: entity + id: ActionClothingSeal + name: Seal/Unseal Clothing + description: Seals or unseals your current clothing. + categories: [ HideSpawnMenu ] + components: + - type: ConfirmableAction + confirmDelay: 0 + primeTime: 2 + - type: InstantAction + checkCanInteract: true + checkConsciousness: true + itemIconStyle: NoItem + icon: + sprite: _Goobstation/Actions/modsuit.rsi + state: activate + iconOn: + sprite: _Goobstation/Actions/modsuit.rsi + state: activate-ready + event: !type:SealClothingEvent {} diff --git a/Resources/Prototypes/_Goobstation/Alerts/alerts.yml b/Resources/Prototypes/_Goobstation/Alerts/alerts.yml new file mode 100644 index 0000000000..efacd4a096 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Alerts/alerts.yml @@ -0,0 +1,19 @@ +- type: alert + id: ModsuitPower + icons: + - sprite: /Textures/_Goobstation/Interface/Alerts/modpower.rsi + state: modpower0 + - sprite: /Textures/_Goobstation/Interface/Alerts/modpower.rsi + state: modpower1 + - sprite: /Textures/_Goobstation/Interface/Alerts/modpower.rsi + state: modpower2 + - sprite: /Textures/_Goobstation/Interface/Alerts/modpower.rsi + state: modpower3 + - sprite: /Textures/_Goobstation/Interface/Alerts/modpower.rsi + state: modpower4 + - sprite: /Textures/_Goobstation/Interface/Alerts/modpower.rsi + state: modpower5 + name: alerts-modsuit-power-name + description: alerts-modsuit-power-desc + minSeverity: 0 + maxSeverity: 5 diff --git a/Resources/Prototypes/_Goobstation/Catalog/Bounties/bounties.yml b/Resources/Prototypes/_Goobstation/Catalog/Bounties/bounties.yml new file mode 100644 index 0000000000..9148afe21e --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/Bounties/bounties.yml @@ -0,0 +1,43 @@ +- type: cargoBounty + id: BountyClarke + reward: 20000 + description: goobstation-clarke-bounty-desc + entries: + - name: goobstation-clarke-bounty-name + amount: 1 + whitelist: + tags: + - Clarke + +- type: cargoBounty + id: BountyRipleyMkII + reward: 15000 + description: goobstation-ripley-bounty-desc + entries: + - name: goobstation-ripley-bounty-name + amount: 1 + whitelist: + tags: + - RipleyMkII + +- type: cargoBounty + id: BountyGygax + reward: 30000 + description: goobstation-gygax-bounty-desc + entries: + - name: goobstation-gygax-bounty-name + amount: 1 + whitelist: + tags: + - Gygax + +- type: cargoBounty + id: BountyDurand + reward: 60000 + description: goobstation-durand-bounty-desc + entries: + - name: goobstation-durand-bounty-name + amount: 1 + whitelist: + tags: + - Durand \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Catalog/Cargo/cargo_science.yml b/Resources/Prototypes/_Goobstation/Catalog/Cargo/cargo_science.yml new file mode 100644 index 0000000000..56d703b1ab --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/Cargo/cargo_science.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: ScienceModsuitCores + icon: + sprite: _Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi + state: mod-core-standard + product: CrateScienceModsuitCoresFilled + cost: 3000 + category: cargoproduct-category-name-science + group: market diff --git a/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml b/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml index 1604f300a1..07589cfe17 100644 --- a/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml +++ b/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml @@ -6,7 +6,8 @@ - type: StorageFill contents: - id: MagazineBoxMagnum + amount: 2 - id: MagazineBoxMagnumFlash - - id: MagazineBoxMagnumEMP + # - id: MagazineBoxMagnumEMP - id: MagazineMagnumLeverRifleEmpty amount: 2 diff --git a/Resources/Prototypes/_Goobstation/Catalog/Fills/Crates/science.yml b/Resources/Prototypes/_Goobstation/Catalog/Fills/Crates/science.yml new file mode 100644 index 0000000000..f6d85c39b6 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/Fills/Crates/science.yml @@ -0,0 +1,10 @@ +- type: entity + id: CrateScienceModsuitCoresFilled + parent: CrateScienceSecure + name: MOD cores crate + description: Contains three MOD cores inside. + components: + - type: StorageFill + contents: + - id: ModsuitCoreStandard + amount: 3 diff --git a/Resources/Prototypes/_Goobstation/Catalog/Fills/Crates/syndicate.yml b/Resources/Prototypes/_Goobstation/Catalog/Fills/Crates/syndicate.yml new file mode 100644 index 0000000000..8af7a6276c --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/Fills/Crates/syndicate.yml @@ -0,0 +1,30 @@ + +- type: entity + id: CrateCybersunDarkGygaxBundle + suffix: Filled + parent: CrateSyndicate + name: Cybersun gygax bundle + description: Contains a set of Cybersan light armored mechs. + components: + - type: StorageFill + contents: + - id: MechGygaxSyndieFilled + - id: DoubleEmergencyOxygenTankFilled + - id: DoubleEmergencyNitrogenTankFilled + - id: ToolboxSyndicateFilled + - id: PlushieNuke + +- type: entity + id: CrateCybersunMaulerBundle + suffix: Filled + parent: CrateSyndicate + name: Cybersun mauler bundle + description: Contains a set of Cybersan heavy armored mechs. + components: + - type: StorageFill + contents: + - id: MechMaulerSyndieFilled + - id: DoubleEmergencyOxygenTankFilled + - id: DoubleEmergencyNitrogenTankFilled + - id: ToolboxSyndicateFilled + - id: PlushieNuke diff --git a/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml index 8be2864619..1bfd180f91 100644 --- a/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml @@ -29,6 +29,8 @@ - id: WeaponLeverChester - id: WeaponEnergyRevolver - id: BlueshieldAmmunitionBoxFilled + - id: ClothingOuterHardsuitBlueshield + - id: ClothingBlueshieldArmoredCoat - type: entity id: LockerMagistrateFilled diff --git a/Resources/Prototypes/_Goobstation/Catalog/uplink_catalog.yml b/Resources/Prototypes/_Goobstation/Catalog/uplink_catalog.yml new file mode 100644 index 0000000000..6e4c723dc5 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/uplink_catalog.yml @@ -0,0 +1,29 @@ +# Mechs + +- type: listing + id: UplinkDarkGygax + name: uplink-mech-teleporter-assault-name + description: uplink-mech-teleporter-assault-desc + icon: { sprite: /Textures/Objects/Specific/Mech/mecha.rsi, state: darkgygax } + productEntity: CrateCybersunDarkGygaxBundle + cost: + Telecrystal: 80 # Einstein Engines - 1/5th the price due to no telecrystal rework + categories: + - UplinkAllies + +- type: listing + id: UplinkMauler + name: uplink-mech-teleporter-heavy-name + description: uplink-mech-teleporter-heavy-desc + icon: { sprite: /Textures/Objects/Specific/Mech/mecha.rsi, state: mauler } + productEntity: CrateCybersunMaulerBundle + cost: + Telecrystal: 105 # Einstein Engines - lower the price due to no telecrystal rework + # cost reduced such that nukies can still only buy one with all pooled nukies' TC + categories: + - UplinkAllies + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Damage/modifier_sets.yml b/Resources/Prototypes/_Goobstation/Damage/modifier_sets.yml new file mode 100644 index 0000000000..c3b3a9f3c9 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Damage/modifier_sets.yml @@ -0,0 +1,107 @@ +- type: damageModifierSet + id: Silicon + coefficients: + Heat: 0.8 + flatReductions: + Blunt: 5 + Slash: 5 + Piercing: 5 + +- type: damageModifierSet + id: SiliconProtected + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.6 + Heat: 0.5 + flatReductions: + Blunt: 5 + Slash: 5 + Piercing: 5 + +- type: damageModifierSet + id: Yowie + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 1.5 # Fur = Overheating + Shock: 1 + Cold: 0.7 # Fur = Keep warm + Bloodloss: 0.9 + Poison: 0.5 # Should be more resistant to toxin + Radiation : 0.7 # Engie yowies need some help against anti-rads + + +# Mech armor +- type: damageModifierSet + id: ThinArmor + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.9 + Shock: 1.2 + Heat: 0.8 + flatReductions: + Blunt: 3 + Heat: 2 + +- type: damageModifierSet + id: LightArmor + coefficients: + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.7 + Shock: 1.2 + Heat: 0.7 + flatReductions: + Blunt: 5 + Heat: 5 + +- type: damageModifierSet + id: MediumArmorNT + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.65 + Shock: 1.4 + Heat: 0.7 + flatReductions: + Blunt: 8 + Heat: 10 + +- type: damageModifierSet + id: HeavyArmorNT + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.35 + Shock: 1.8 + Heat: 0.6 + flatReductions: + Blunt: 15 + Heat: 15 + +- type: damageModifierSet + id: MediumArmorSyndi + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.6 + Shock: 1.4 + Heat: 0.75 + flatReductions: + Blunt: 8 + Heat: 5 + +- type: damageModifierSet + id: HeavyArmorSyndi + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.4 + Shock: 1.8 + Heat: 0.7 + flatReductions: + Blunt: 10 + Heat: 7 diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/modsuit.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/modsuit.yml new file mode 100644 index 0000000000..7d0b625839 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/modsuit.yml @@ -0,0 +1,92 @@ +- type: entity + parent: [Clothing, ContentsExplosionResistanceBase] + id: ClothingModsuitStandard + name: standard modsuit control + description: A special modular suit contol containing all modular suit parts. + components: + - type: Appearance + - type: Sprite + sprite: _Goobstation/Clothing/Back/Modsuits/standard.rsi + layers: + - state: control + - state: control-sealed + visible: false + shader: unshaded + map: [ "sealed" ] + - type: Item + size: Huge + - type: Clothing + quickEquip: false + slots: + - back + - type: Storage + grid: + - 0,0,6,3 + maxItemSize: Huge + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + toggleable-clothing: !type:Container + cell_slot: !type:ContainerSlot + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + enum.ToggleClothingUiKey.Key: + type: ToggleableClothingBoundUserInterface + - type: UseDelay + delay: 0.5 + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: ToggleableClothing + requiredSlot: back + blockUnequipWhenAttached: true + replaceCurrentClothing: true + clothingPrototypes: + head: ClothingModsuitHelmetStandard + gloves: ClothingModsuitGauntletsStandard + outerClothing: ClothingModsuitChestplateStandard + shoes: ClothingModsuitBootsStandard + - type: WiresPanel + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + whitelist: + components: + - PowerCell + - type: ItemSlotsRequirePanel + slots: + cell_slot: true + - type: PowerCellDraw + drawRate: 1 # Sealed draw rate + useRate: 5 # Draw rate for sealing + - type: PowerCellSlot + cellSlotId: cell_slot + fitsInCharger: false + - type: DoAfter + - type: SealableClothingControl + - type: SealableClothingRequiresPower + - type: SealableClothingVisuals + visualLayers: + back: + - state: equipped-BACKPACK-sealed + shader: unshaded + - type: Construction + graph: Modsuit + node: standard + +- type: entity + parent: ClothingModsuitStandard + id: ClothingModsuitStandardPowerCell + suffix: High-Capacity Battery + components: + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + whitelist: + components: + - PowerCell diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Hands/modsuit.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Hands/modsuit.yml new file mode 100644 index 0000000000..a6b5eb3b0e --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Hands/modsuit.yml @@ -0,0 +1,32 @@ +- type: entity + parent: ClothingHandsBase + id: ClothingModsuitGauntletsStandard + name: standard modsuit gauntlets + description: A special modular suit gloves that protect wearer from electric shock. + categories: [ HideSpawnMenu ] + components: + - type: Appearance + - type: Sprite + sprite: _Goobstation/Clothing/Hands/Modsuits/standard.rsi + layers: + - state: gauntlets + - state: gauntlets-sealed + visible: false + map: [ "sealed" ] + - type: Clothing + equipSound: /Audio/Mecha/mechmove03.ogg + unequipSound: /Audio/Mecha/mechmove03.ogg + slots: [ gloves ] + - type: Insulated + - type: Fiber + fiberMaterial: fibers-modular + fiberColor: fibers-black + - type: FingerprintMask + - type: SealableClothing + sealUpPopup: sealable-clothing-seal-up-gauntlets + sealDownPopup: sealable-clothing-seal-down-gauntlets + - type: SealableClothingVisuals + visualLayers: + gloves: + - state: equipped-HAND-sealed + shader: unshaded diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/hardsuit-helmets.yml new file mode 100644 index 0000000000..50c93e1ce4 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/hardsuit-helmets.yml @@ -0,0 +1,23 @@ +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitBlueshield + name: blueshield's hardsuit helmet + description: Blueshield hardsuit with a top of the line gunlink. Belongs to the Blueshield. + components: + - type: BreathMask + - type: Sprite + sprite: _Goobstation/Clothing/Head/Hardsuits/blueshield.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Head/Hardsuits/blueshield.rsi + - type: PointLight + color: "#57b9ff" + - type: PressureProtection + highPressureMultiplier: 0.45 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.9 diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/modsuit.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/modsuit.yml new file mode 100644 index 0000000000..09be4262a8 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/modsuit.yml @@ -0,0 +1,128 @@ +- type: entity + abstract: true + # Used to put pressureProtection, layers blocker and etc components into ComponentToggler + id: BaseClothingModsuitHelmet + name: base modsuit helmet + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: icon + - type: Clickable + - type: InteractionOutline + - type: GroupExamine + - type: Clothing + equippedPrefix: off + equipSound: /Audio/Mecha/mechmove03.ogg + unequipSound: /Audio/Mecha/mechmove03.ogg + quickEquip: false + slots: [ HEAD ] + clothingVisuals: + head: + - state: equipped-HEAD + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + abstract: true + parent: BaseClothingModsuitHelmet + # Used for helmets that hide your identity even if it's not sealed + id: BaseClothingModsuitHelmetHideIdentity + name: base modsuit helmet + categories: [ HideSpawnMenu ] + components: + - type: IdentityBlocker + - type: IngestionBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout + - HeadTop + - HeadSide + +- type: entity + parent: BaseClothingModsuitHelmet + id: ClothingModsuitHelmetStandard + name: standard modsuit helmet + description: A special modular suit spaceproof helmet designed for compact folding inside modular suit control. + categories: [ HideSpawnMenu ] + components: + - type: Appearance + - type: Sprite + sprite: _Goobstation/Clothing/Head/Modsuits/standard.rsi + layers: + - state: helmet + - state: helmet-sealed + visible: false + map: [ "sealed" ] + - type: HideLayerClothing # This helmet don't have sprite on unsealed state + slots: + - Snout + - type: SealableClothing + sealUpPopup: sealable-clothing-seal-up-helmet + sealDownPopup: sealable-clothing-seal-down-helmet + - type: SealableClothingVisuals + visualLayers: + head: + - state: equipped-HEAD-sealed + - type: Armor + modifiers: + coefficients: + Blunt: 0.90 + Slash: 0.90 + Piercing: 0.95 + Heat: 0.90 + Radiation: 0.75 + - type: ComponentToggler + components: + - type: BreathMask + - type: PressureProtection + highPressureMultiplier: 0.3 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.1 + - type: IdentityBlocker + - type: IngestionBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout + - HeadTop + - HeadSide + # This will all be replaced by modules later + - type: ToggleableLightVisuals + - type: PointLight + enabled: false + radius: 3 + energy: 2 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + netsync: false + - type: HandheldLight + addPrefix: true + blinkingBehaviourId: blinking + radiatingBehaviourId: radiating + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + - type: Battery + maxCharge: 600 # Lights drain 3/s but recharge of 2 makes this 1/s, therefore 600 is 10 minutes of light + startingCharge: 600 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 2 + diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml index fa40bdbe5a..02867bb4db 100644 --- a/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml @@ -44,3 +44,70 @@ sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi - type: Item size: Normal + +- type: entity + parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing, ClothingOuterStorageFoldableBase] + id: ClothingBlueshieldArmoredCoat + name: blueshield's armored coat + description: A coat for cold winter seasons with sewn in plates. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi + - type: Item + size: Normal + - type: Armor + modifiers: + coefficients: + Blunt: 0.60 + Slash: 0.60 + Piercing: 0.65 + Heat: 0.70 + - type: TemperatureProtection + coefficient: 0.1 + +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingBlueshieldArmoredCoat] + id: ClothingBlueshieldArmoredCoatOpen + name: blueshield's armored coat + suffix: Opened + +- type: entity + parent: ClothingBlueshieldArmourVest + id: ClothingBlueshieldArmoredMarine + name: blueshield's armored marine vest + description: A vest from the blueshield's time in the marines. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi + - type: Item + size: Normal + +- type: entity + parent: ClothingBlueshieldArmourVest + id: ClothingBlueshieldArmoredVest + name: blueshield's armored vest + description: A vest with sewn-in reinforcement layers. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi + - type: Item + size: Normal + +- type: entity + parent: ClothingBlueshieldArmourVest + id: ClothingBlueshieldArmoredKimono + name: blueshield's armored kimono + description: As times evolve, so must the Blueshield. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi + - type: Item + size: Normal diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/hardsuits.yml new file mode 100644 index 0000000000..23812c039b --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/hardsuits.yml @@ -0,0 +1,31 @@ +- type: entity + parent: ClothingOuterHardsuitSecurity + id: ClothingOuterHardsuitBlueshield + name: blueshield's hardsuit + description: A special hardsuit made for the Blueshield, contains extra armor. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi + - type: PressureProtection + highPressureMultiplier: 0.45 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.6 + - type: Armor + modifiers: + coefficients: + Blunt: 0.6 + Slash: 0.5 + Piercing: 0.5 + Radiation: 0.5 + Caustic: 0.6 + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: HeldSpeedModifier + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitBlueshield + - type: StaminaDamageResistance + coefficient: 0.5 # 50% diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/modsuit.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/modsuit.yml new file mode 100644 index 0000000000..c8cca76bad --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/modsuit.yml @@ -0,0 +1,47 @@ +- type: entity + parent: ClothingOuterBase + id: ClothingModsuitChestplateStandard + name: standard modsuit chestplate + description: A special modular suit spaceproof cover designed for compact folding inside modular suit control. + categories: [ HideSpawnMenu ] + components: + - type: Appearance + - type: AllowSuitStorage + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi + layers: + - state: chestplate + - state: chestplate-sealed + visible: false + map: [ "sealed" ] + - type: Clothing + equipSound: /Audio/Mecha/mechmove03.ogg + unequipSound: /Audio/Mecha/mechmove03.ogg + slots: [ outerClothing ] + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: SealableClothing + sealUpPopup: sealable-clothing-seal-up-chestplate + sealDownPopup: sealable-clothing-seal-down-chestplate + - type: SealableClothingVisuals + visualLayers: + outerClothing: + - state: equipped-OUTERCLOTHING-sealed + shader: unshaded + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.85 + Radiation: 0.6 + - type: ComponentToggler + components: + - type: PressureProtection + highPressureMultiplier: 0.3 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.1 + diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/modsuit.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/modsuit.yml new file mode 100644 index 0000000000..4f192c6a23 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Shoes/modsuit.yml @@ -0,0 +1,33 @@ +- type: entity + parent: ClothingShoesBase + id: ClothingModsuitBootsStandard + name: standard modsuit boots + description: A special modular suit boots designed for compact folding inside modular suit control. + categories: [ HideSpawnMenu ] + components: + - type: Appearance + - type: Sprite + sprite: _Goobstation/Clothing/Shoes/Modsuits/standard.rsi + layers: + - state: boots + - state: boots-sealed + visible: false + map: [ "sealed" ] + - type: Clothing + equipSound: /Audio/Mecha/mechmove03.ogg + unequipSound: /Audio/Mecha/mechmove03.ogg + slots: [ feet ] + - type: Tag + tags: + - WhitelistChameleon + - type: SealableClothing + sealUpPopup: sealable-clothing-seal-up-boots + sealDownPopup: sealable-clothing-seal-down-boots + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: SealableClothingVisuals + visualLayers: + shoes: + - state: equipped-FEET-sealed + shader: unshaded diff --git a/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/ghost_roles.yml new file mode 100644 index 0000000000..ac468b6527 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/ghost_roles.yml @@ -0,0 +1,13 @@ +- type: entity + id: GhostBarSpawner + parent: MarkerBase + name: ghost bar spawn point + components: + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Mobs/Ghosts/ghost_human.rsi + state: icon + state: observer + - type: GhostBarSpawn diff --git a/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/mechs.yml b/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/mechs.yml new file mode 100644 index 0000000000..300ff0ceaa --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/mechs.yml @@ -0,0 +1,186 @@ +- type: entity + name: Ripley APLU MK-II Spawner + id: SpawnMechRipley2 + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: ripleymkii + - type: ConditionalSpawner + prototypes: + - MechRipley2Battery + +- type: entity + name: H.O.N.K. Spawner + suffix: Filled + id: SpawnMechHonkerFilled + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: honker + - type: ConditionalSpawner + prototypes: + - MechHonkerFilled + +- type: entity + name: Clarke Spawner + id: SpawnMechClarke + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: clarke + - type: ConditionalSpawner + prototypes: + - MechClarkeBattery + +- type: entity + name: Gygax Spawner + id: SpawnMechGygax + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: gygax + - type: ConditionalSpawner + prototypes: + - MechGygaxBattery + +- type: entity + name: Durand Spawner + id: SpawnMechDurand + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: durand + - type: ConditionalSpawner + prototypes: + - MechDurandBattery + +- type: entity + name: Marauder Spawner + id: SpawnMechMarauder + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: marauder + - type: ConditionalSpawner + prototypes: + - MechMarauderBattery + +- type: entity + name: Marauder Spawner + suffix: Filled + id: SpawnMechMarauderFilled + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: marauder + - type: ConditionalSpawner + prototypes: + - MechMarauderFilled + +- type: entity + name: Seraph Spawner + id: SpawnMechSeraph + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: seraph + - type: ConditionalSpawner + prototypes: + - MechSeraphBattery + +- type: entity + name: Seraph Spawner + suffix: Filled + id: SpawnMechSeraphFilled + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: seraph + - type: ConditionalSpawner + prototypes: + - MechSeraphFilled + +- type: entity + name: Dark Gygax Spawner + id: SpawnMechGygaxSyndie + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: darkgygax + - type: ConditionalSpawner + prototypes: + - MechGygaxSyndieBattery + +- type: entity + name: Dark Gygax Spawner + suffix: Filled + id: SpawnMechGygaxSyndieFilled + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: darkgygax + - type: ConditionalSpawner + prototypes: + - MechGygaxSyndieFilled + +- type: entity + name: Mauler Spawner + id: SpawnMechMaulerSyndie + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: mauler + - type: ConditionalSpawner + prototypes: + - MechMaulerSyndieBattery + +- type: entity + name: Mauler Spawner + suffix: Filled + id: SpawnMechMaulerSyndieFilled + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Mech/mecha.rsi + state: mauler + - type: ConditionalSpawner + prototypes: + - MechMaulerSyndieFilled diff --git a/Resources/Prototypes/_Goobstation/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/_Goobstation/Entities/Mobs/Customization/Markings/human_hair.yml new file mode 100644 index 0000000000..96abc2dfd4 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Mobs/Customization/Markings/human_hair.yml @@ -0,0 +1,264 @@ +# Goobstation TODO: this should be in a goobstation folder +- type: marking + id: HumanHairBraidedExtension + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: braidedExtensions + +- type: marking + id: HumanHairCometTail + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: cometTail + +- type: marking + id: HumanHairFantasyHair + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: fantasyHair + +- type: marking + id: HumanHairFlatTwistsUpdo + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: flatTwistsUpdo + +- type: marking + id: HumanHairFloorlengthBraid + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: floorlengthBraid + +- type: marking + id: HumanHairFloorlengthWavy + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: floorlengthWavy + +- type: marking + id: HumanHairFrontBraidsLong + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: frontBraidsLong + +- type: marking + id: HumanHairFrontBraidsMedium + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: frontBraidsMedium + +- type: marking + id: HumanHairFrontBraidsShort + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: frontBraidsShort + +- type: marking + id: HumanHairHairnet + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: hairnet + +- type: marking + id: HumanHairJellyfish + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: jellyfish + +- type: marking + id: HumanHairKazuyaMishima + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: kazuyaMishima + +- type: marking + id: HumanHairLongBraids + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: longBraids + +- type: marking + id: HumanHairLongCurvy + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: longCurvy + +- type: marking + id: HumanHairLongPompadour + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: longPompadour + +- type: marking + id: HumanHairMediumCurls + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: mediumCurls + +- type: marking + id: HumanHairMullet + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: mullet + +- type: marking + id: HumanHairPelvicLengthBraid + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: pelvicLengthBraid + +- type: marking + id: HumanHairPlateau + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: plateau + +- type: marking + id: HumanHairQueenBee + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: queenBee + +- type: marking + id: HumanHairSaggedMohawk + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: saggedMohawk + +- type: marking + id: HumanHairSharpMohawk + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: sharpMohawk + +- type: marking + id: HumanHairShortAndPoofy + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: shortAndPoofy + +- type: marking + id: HumanHairShortCurls + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: shortCurls + +- type: marking + id: HumanHairShoulderLengthBraid + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: shoulderLengthBraid + +- type: marking + id: HumanHairSideSpike + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: sideSpike + +- type: marking + id: HumanHairSpaceLoops + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: spaceLoops + +- type: marking + id: HumanHairStar + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: star + +- type: marking + id: HumanHairStarFro + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: starFro + +- type: marking + id: HumanHairStyledCurls + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: styledCurls + +- type: marking + id: HumanHairUnkemptScientist + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: unkemptScientist + +- type: marking + id: HumanHairFrizzyBraid + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: frizzyBraid + +- type: marking + id: HumanHairWispy + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: _Goobstation/Mobs/Customization/human_hair.rsi + state: wispy diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/exosuit_components.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/exosuit_components.yml new file mode 100644 index 0000000000..08c7740bdf --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/exosuit_components.yml @@ -0,0 +1,104 @@ +- type: entity + id: BaseExosuitParts + parent: BaseItem + name: base components + abstract: true + components: + - type: Item + storedRotation: -90 + size: Ginormous + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_camera + - type: StaticPrice + price: 100 + - type: PhysicalComposition + materialComposition: + Steel: 200 + +- type: entity + id: DurandArmorPlate + parent: BaseExosuitParts + name: durand armor plates + description: Armor plates made of plasteel for Durand exosuit. + components: + - type: Item + storedRotation: 0 + - type: Sprite + sprite: _Goobstation/Objects/Specific/Mech/durand_construction.rsi + state: durand_armor + - type: Tag + tags: + - DurandArmor + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: GygaxArmorPlate + parent: BaseExosuitParts + name: gygax armor plates + description: Armor plates made of steel for Gygax exosuit. + components: + - type: Item + storedRotation: 0 + - type: Sprite + sprite: _Goobstation/Objects/Specific/Mech/gygax_construction.rsi + state: gygax_armor + - type: Tag + tags: + - GygaxArmor + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: RipleyUpgradeKit + parent: BaseExosuitParts + name: exosuit upgrade kit + description: This kit allows you to assemble an exosuit Ripley MK-II. + components: + - type: Item + storedRotation: 0 + - type: Sprite + state: ripleyupgrade + - type: Tag + tags: + - RipleyMKIIUpgradeKit + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: MechAirTank + parent: BaseExosuitParts + name: exosuit air tank + description: A special air canister capable of holding a large amount of air. + components: + - type: Item + storedRotation: 0 + - type: Sprite + state: mecha_air_tank + - type: Tag + tags: + - MechAirTank + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: MechThruster + parent: BaseExosuitParts + name: exosuit thruster + description: A thruster with which the exosuit can safely move in the absence of gravity. + components: + - type: Item + storedRotation: 0 + - type: Sprite + state: mecha_bin + - type: Tag + tags: + - MechThruster + - type: GuideHelp + guides: + - Robotics diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/mech.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/mech.yml new file mode 100644 index 0000000000..b76adace4f --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/mech.yml @@ -0,0 +1,139 @@ +# Clarke + +- type: entity + id: ClarkeCentralElectronics + parent: BaseElectronics + name: clarke central control module + description: The electrical control center for the clarke mech. + components: + - type: Item + storedRotation: 0 + - type: Sprite + sprite: Objects/Misc/module.rsi + state: mainboard + - type: Tag + tags: + - ClarkeCentralControlModule + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: ClarkePeripheralsElectronics + parent: BaseElectronics + name: clarke peripherals control module + description: The electrical peripherals control for the clarke mech. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: id_mod + - type: Tag + tags: + - ClarkePeripheralsControlModule + - type: GuideHelp + guides: + - Robotics + +# Gygax + +- type: entity + id: GygaxCentralElectronics + parent: BaseElectronics + name: gygax central control module + description: The electrical control center for the gygax mech. + components: + - type: Item + storedRotation: 0 + - type: Sprite + sprite: Objects/Misc/module.rsi + state: mainboard + - type: Tag + tags: + - GygaxCentralControlModule + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: GygaxPeripheralsElectronics + parent: BaseElectronics + name: gygax peripherals control module + description: The electrical peripherals control for the gygax mech. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: id_mod + - type: Tag + tags: + - GygaxPeripheralsControlModule + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: GygaxTargetingElectronics + parent: BaseElectronics + name: gygax weapon control and targeting module + description: The electrical targeting control for the gygax mech. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: mcontroller + - type: Tag + tags: + - GygaxTargetingControlModule + - type: GuideHelp + guides: + - Robotics + +# Durand + +- type: entity + id: DurandCentralElectronics + parent: BaseElectronics + name: durand central control module + description: The electrical control center for the durand mech. + components: + - type: Item + storedRotation: 0 + - type: Sprite + sprite: Objects/Misc/module.rsi + state: mainboard + - type: Tag + tags: + - DurandCentralControlModule + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: DurandPeripheralsElectronics + parent: BaseElectronics + name: durand peripherals control module + description: The electrical peripherals control for the durand mech. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: id_mod + - type: Tag + tags: + - DurandPeripheralsControlModule + - type: GuideHelp + guides: + - Robotics + +- type: entity + id: DurandTargetingElectronics + parent: BaseElectronics + name: durand weapon control and targeting module + description: The electrical targeting control for the durand mech. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: mcontroller + - type: Tag + tags: + - DurandTargetingControlModule + - type: GuideHelp + guides: + - Robotics diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/base.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/base.yml new file mode 100644 index 0000000000..f4b8f23f12 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/base.yml @@ -0,0 +1,18 @@ +- type: entity + id: BaseMechWeaponRange + parent: BaseMechEquipment + abstract: true + components: + - type: Battery + maxCharge: 100 # Battery is charged by mech + startingCharge: 100 + - type: Appearance + - type: StaticPrice + price: 1 + - type: Item + size: Ginormous + - type: MultiHandedItem + - type: ClothingSpeedModifier + walkModifier: 0.5 + sprintModifier: 0.5 + - type: HeldSpeedModifier \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/combat.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/combat.yml new file mode 100644 index 0000000000..9e1882f7cf --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/combat.yml @@ -0,0 +1,303 @@ +- type: entity + id: WeaponMechCombatPulseRifle + name: eZ-14 mk2 Heavy pulse rifle + description: Fires a heavy pulse laser. + suffix: Mech Weapon, Gun, Combat, Pulse + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_pulse + - type: Gun + fireRate: 1.5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser3.ogg + - type: HitscanBatteryAmmoProvider + proto: Pulse + fireCost: 40 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatImmolationGun + name: ZFI Immolation Beam Gun + description: A gun for battlemechs, firing high-temperature beams. + suffix: Mech Weapon, Gun, Combat, Laser + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_laser + - type: Gun + fireRate: 0.6 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg + - type: HitscanBatteryAmmoProvider + proto: RedHeavyLaser + fireCost: 99 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatSolarisLaser + name: CH-LC "Solaris" laser cannon + description: An experimental combat mounted laser cannon that causes more damage, but also has a greater cooldown than a "Firedart". + suffix: Mech Weapon, Gun, Combat, Laser + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_laser + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser.ogg + - type: HitscanBatteryAmmoProvider + proto: RedMediumLaser + fireCost: 59 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatFiredartLaser + name: CH-PS "Firedart" Laser + description: The standard combat armament of the mechs is a combat mounted laser. + suffix: Mech Weapon, Gun, Combat, Laser + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_laser + - type: Gun + fireRate: 0.8 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser.ogg + - type: HitscanBatteryAmmoProvider + proto: RedLaser + fireCost: 39 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatTeslaCannon + name: P-X Tesla Cannon + description: A weapon for combat mechs, firing energy balls, based on the principle of an experimental Tesla engine. + suffix: Mech Weapon, Gun, Combat, Tesla + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_wholegen + - type: Gun + projectileSpeed: 3 + fireRate: 0.4 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Effects/Lightning/lightningshock.ogg + params: + variation: 0.2 + - type: ProjectileBatteryAmmoProvider + proto: TeslaGunBullet + fireCost: 99 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatDisabler + name: CH-PD Disabler + description: A non-lethal mounted stun gun that allows you to immobilize intruders. + suffix: Mech Weapon, Gun, Combat, Disabler + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_disabler + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 29 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatTaser + name: PBT "Pacifier" Mounted Taser + description: A mounted non-lethal taser that allows you to stun intruders. + suffix: Mech Weapon, Gun, Combat, Disabler, admeme + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_taser + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletTaser + fireCost: 19 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatShotgun + name: LBX AC 10 "Scattershot" + description: A mounted non-lethal taser that allows you to stun intruders. + suffix: Mech Weapon, Gun, Combat, Shotgun + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_scatter + - type: Gun + fireRate: 0.5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg + - type: ProjectileBatteryAmmoProvider + proto: ShellShotgun + fireCost: 99 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatShotgunIncendiary + name: FNX-99 "Hades" Carbine + description: Mounted carbine, firing incendiary cartridges. + suffix: Mech Weapon, Gun, Combat, Shotgun, Incendiary + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_carbine + - type: Gun + fireRate: 1.2 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg + - type: ProjectileBatteryAmmoProvider + proto: ShellShotgunIncendiary + fireCost: 99 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatUltraRifle + name: Ultra AC-2 + description: Mounted carbine, firing incendiary cartridges. + suffix: Mech Weapon, Gun, Combat, Rifle + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_uac2 + - type: Gun + fireRate: 3 + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg + - type: ProjectileBatteryAmmoProvider + proto: CartridgeLightRifle + fireCost: 15 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatMissileRack8 + name: SRM-8 Light Missile Rack + description: Launches low-explosive breaching missiles designed to explode only when striking a sturdy target. + suffix: Mech Weapon, Gun, Combat, Light Missile + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_missilerack + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/rpgfire.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletWeakRocket + fireCost: 25 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatMissileRack6 + name: BRM-6 Missile Rack + description: Tubes must be reloaded from the outside. + suffix: Mech Weapon, Gun, Combat, Missile + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_missilerack_six + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/rpgfire.ogg + - type: ProjectileBatteryAmmoProvider + proto: GrenadeBlast + fireCost: 100 + - type: Appearance + - type: AmmoCounter + +- type: entity + id: WeaponMechCombatFlashbangLauncher + name: SGL-6 Flashbang Launcher + description: Launches low-explosive breaching missiles designed to explode only when striking a sturdy target. + suffix: Mech Weapon, Gun, Combat, Flashbang + parent: [ BaseMechWeaponRange, CombatMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_grenadelnchr + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg + - type: ProjectileBatteryAmmoProvider + proto: GrenadeFlash + fireCost: 30 + - type: Appearance + - type: AmmoCounter diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/debug.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/debug.yml new file mode 100644 index 0000000000..c98fdc92e3 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/debug.yml @@ -0,0 +1,98 @@ +- type: entity + id: WeaponMechDebugBallistic + parent: [ BaseMechWeaponRange, DebugMechEquipment ] # Debug equipment does have all whitelist tags. + suffix: Mech Weapon, DEBUG, Ballistic + name: debug bang + components: + - type: Sprite + sprite: Objects/Weapons/Guns/SMGs/c20r.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: Gun + minAngle: 24 + maxAngle: 45 + angleIncrease: 4 + angleDecay: 16 + fireRate: 5 + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/lmg.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg + - type: AmmoCounter + - type: ProjectileBatteryAmmoProvider + proto: CartridgeLightRifle + fireCost: 9 + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + +- type: entity + id: WeaponMechDebugLaser + name: debug pow + suffix: Mech Weapon, DEBUG, Laser + parent: [ BaseMechWeaponRange, DebugMechEquipment ] + description: A weapon using light amplified by the stimulated emission of radiation. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Battery/laser_retro.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: HitscanBatteryAmmoProvider + proto: RedMediumLaser + fireCost: 19 + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Gun + fireRate: 2 + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser.ogg + - type: AmmoCounter + +- type: entity + id: WeaponMechDebugDisabler + name: debug tew + description: A self-defense weapon that exhausts organic targets, weakening them until they collapse. + suffix: Mech Weapon, DEBUG, Disabler + parent: [ BaseMechWeaponRange, DebugMechEquipment ] + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Battery/disabler.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-unshaded-0 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 19 + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: AmmoCounter diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/industrial.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/industrial.yml new file mode 100644 index 0000000000..070b255383 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/industrial.yml @@ -0,0 +1,23 @@ +- type: entity + id: WeaponMechIndustrialKineticAccelerator + name: exosuit proto-kinetic accelerator + description: Fires normal-damage kinetic bolts at a short range. + suffix: Mech Weapon, Gun, Industrial, Kinetic Accelerator + parent: [ BaseMechWeaponRange, IndustrialMechEquipment ] + components: + - type: Sprite + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_kineticgun + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/kinetic_accel.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletKineticShuttle + fireCost: 0.1 + - type: Appearance + - type: AmmoCounter +# TODO: Plasma Cutter diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/special.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/special.yml new file mode 100644 index 0000000000..77d5ac3af4 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Gun/special.yml @@ -0,0 +1,55 @@ +- type: entity + id: WeaponMechSpecialMousetrapMortar + parent: [ BaseMechWeaponRange, SpecialMechEquipment ] + suffix: Mech Weapon, Gun, Special, Mortar + name: mousetrap mortar + description: Mounted mousetrap launcher. + components: + - type: Sprite + state: mecha_mousetrapmrtr + - type: Gun + minAngle: 24 + maxAngle: 45 + angleIncrease: 4 + angleDecay: 16 + fireRate: 0.5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg + - type: AmmoCounter + - type: ProjectileBatteryAmmoProvider + proto: MousetrapArmed + fireCost: 100 + - type: Appearance + +- type: entity + id: WeaponMechSpecialBananaMortar + parent: [ BaseMechWeaponRange, SpecialMechEquipment ] + suffix: Mech Weapon, Gun, Special, Mortar + name: banana mortar + description: Mounted banana peel launcher. + components: + - type: Sprite + state: mecha_bananamrtr + - type: Gun + minAngle: 24 + maxAngle: 25 + angleIncrease: 4 + angleDecay: 16 + fireRate: 0.5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg + - type: AmmoCounter + - type: ProjectileBatteryAmmoProvider + proto: TrashBananaPeel + fireCost: 100 + - type: Appearance diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/base.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/base.yml new file mode 100644 index 0000000000..92915ce39a --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/base.yml @@ -0,0 +1,15 @@ +- type: entity + id: BaseMechWeaponMelee + parent: BaseMechEquipment + abstract: true + components: + - type: Appearance + - type: StaticPrice + price: 1 + - type: Item + size: Ginormous + - type: MultiHandedItem + - type: ClothingSpeedModifier + walkModifier: 0.5 + sprintModifier: 0.5 + - type: HeldSpeedModifier diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/combat.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/combat.yml new file mode 100644 index 0000000000..85a5aeea01 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/combat.yml @@ -0,0 +1,20 @@ +- type: entity + id: WeaponMechChainSword + parent: [ BaseMechWeaponMelee, CombatMechEquipment ] + name: exosuit chainsword + suffix: Mech Weapon, Melee, Combat + description: Equipment for combat exosuits. This is the mechanical chainsword that'll pierce the heavens! + components: + - type: Sprite + state: mecha_chainsword + - type: MeleeWeapon + autoAttack: true + angle: 0 + wideAnimationRotation: -90 + soundHit: + path: "/Audio/Weapons/chainsaw.ogg" + attackRate: 0.3 + damage: + types: + Structural: 35 + Piercing: 15 diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/debug.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/debug.yml new file mode 100644 index 0000000000..5ffd975e44 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/debug.yml @@ -0,0 +1,18 @@ +- type: entity + id: WeaponMechDebugMelle + parent: [ BaseMechWeaponMelee, DebugMechEquipment ] # Debug equipment does have all whitelist tags. + name: debug bam + suffix: Mech Weapon, DEBUG, Melee + description: A robust thing. + components: + - type: Sprite + state: paddy_claw + - type: MeleeWeapon + hidden: true + attackRate: 0.75 + damage: + types: + Blunt: 40 + Structural: 20 + soundHit: + collection: MetalThud diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/industrial.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/industrial.yml new file mode 100644 index 0000000000..416af7e3ad --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/Weapons/Melee/industrial.yml @@ -0,0 +1,53 @@ +- type: entity + id: WeaponMechMeleeDrill + parent: BaseMechWeaponMelee + name: exosuit drill + suffix: Mech Weapon, Melee, Industrial + description: Equipment for mining exosuits. This is the drill that'll pierce the rocks! + components: + - type: Sprite + state: mecha_drill + - type: Tag + tags: + - Pickaxe + - IndustrialMech + - type: MeleeWeapon + canWideSwing: false + autoAttack: true + angle: 0 + wideAnimationRotation: -90 + soundHit: + path: "/Audio/Items/drill_hit.ogg" + attackRate: 3.5 + damage: + groups: + Brute: 9 + types: + Structural: 40 # ~10 seconds for solid wall / ~21 secods for reinforced wall + +- type: entity + id: WeaponMechMeleeDrillDiamond + parent: BaseMechWeaponMelee + name: diamond-tipped exosuit drill + suffix: Mech Weapon, Melee, Industrial + description: Equipment for mining exosuits. This is an upgraded version of the drill that'll pierce the rocks! + components: + - type: Sprite + state: mecha_diamond_drill + - type: Tag + tags: + - Pickaxe + - IndustrialMech + - type: MeleeWeapon + canWideSwing: false + autoAttack: true + angle: 0 + wideAnimationRotation: -90 + soundHit: + path: "/Audio/Items/drill_hit.ogg" + attackRate: 4 + damage: + groups: + Brute: 18 + types: + Structural: 60 # ~3 seconds for solid wall / 9 seconds for reinforced wall diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mech_construction.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mech_construction.yml new file mode 100644 index 0000000000..bfe7f48892 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mech_construction.yml @@ -0,0 +1,494 @@ +# Ripley MK-II + +- type: entity + id: BaseRipleyMKIIPart + parent: BaseMechPart + abstract: true + components: + - type: Sprite + drawdepth: Items + noRot: false + sprite: _Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi + +- type: entity + parent: BaseRipleyMKIIPart + id: RipleyMKIIHarness + name: ripley MK-II harness + description: The core of the Ripley MK-II. + components: + - type: Appearance + - type: ItemMapper + mapLayers: + ripleymkii_upgrade_kit+o: + whitelist: + tags: + - RipleyMKIIUpgradeKit + ripleymkii_l_arm+o: + whitelist: + tags: + - RipleyLArm + ripleymkii_r_arm+o: + whitelist: + tags: + - RipleyRArm + ripleymkii_l_leg+o: + whitelist: + tags: + - RipleyLLeg + ripleymkii_r_leg+o: + whitelist: + tags: + - RipleyRLeg + sprite: _Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi + - type: ContainerContainer + containers: + mech-assembly-container: !type:Container + - type: MechAssembly + finishedPrototype: RipleyMKIIChassis + requiredParts: + RipleyMKIIUpgradeKit: false + RipleyLArm: false + RipleyRArm: false + RipleyLLeg: false + RipleyRLeg: false + - type: Sprite + state: ripleymkii_harness+o + noRot: true + +- type: entity + id: RipleyMKIIChassis + parent: BaseRipleyMKIIPart + name: ripley MK-II chassis + description: An in-progress construction of the Ripley MK-II mech. + components: + - type: Appearance + - type: ContainerContainer + containers: + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: ripleymkii + - type: Sprite + noRot: true + state: ripleymkii0 + - type: Construction + graph: RipleyMKII + node: start + defaultTarget: ripleymkii + +# Clarke + +- type: entity + id: BaseClarkePart + parent: BaseMechPart + abstract: true + components: + - type: Sprite + drawdepth: Items + noRot: false + sprite: _Goobstation/Objects/Specific/Mech/clarke_construction.rsi + +- type: entity + id: BaseClarkePartItem + parent: BaseClarkePart + abstract: true + components: + - type: Item + size: Ginormous + +- type: entity + parent: BaseClarkePart + id: ClarkeHarness + name: clarke harness + description: The core of the Clarke. + components: + - type: Appearance + - type: ItemMapper + mapLayers: + clarke_head+o: + whitelist: + tags: + - ClarkeHead + clarke_r_arm+o: + whitelist: + tags: + - ClarkeLArm + clarke_l_arm+o: + whitelist: + tags: + - ClarkeRArm + clarke_treads+o: + whitelist: + tags: + - ClarkeTreads + sprite: _Goobstation/Objects/Specific/Mech/clarke_construction.rsi + - type: ContainerContainer + containers: + mech-assembly-container: !type:Container + - type: MechAssembly + finishedPrototype: ClarkeChassis + requiredParts: + ClarkeHead: false + ClarkeLArm: false + ClarkeRArm: false + ClarkeTreads: false + - type: Sprite + state: clarke_harness+o + noRot: true + +- type: entity + parent: BaseClarkePartItem + id: ClarkeHead + name: clarke head + description: The head of the Clarke. It belongs on the chassis of the mech. + components: + - type: Sprite + state: clarke_head + - type: Tag + tags: + - ClarkeHead + +- type: entity + parent: BaseClarkePartItem + id: ClarkeRArm + name: clarke right arm + description: The right arm of the Clarke. It belongs on the chassis of the mech. + components: + - type: Sprite + state: clarke_l_arm + - type: Tag + tags: + - ClarkeRArm + +- type: entity + parent: BaseClarkePartItem + id: ClarkeLArm + name: clarke left arm + description: The left arm of the Clarke. It belongs on the chassis of the mech. + components: + - type: Sprite + state: clarke_r_arm + - type: Tag + tags: + - ClarkeLArm + +- type: entity + parent: BaseClarkePartItem + id: ClarkeTreads + name: clarke treads + description: The treads of the Clarke. It belongs on the chassis of the mech. + components: + - type: Sprite + state: clarke_treads + - type: Tag + tags: + - ClarkeTreads + +- type: entity + id: ClarkeChassis + parent: BaseClarkePart + name: clarke chassis + description: An in-progress construction of the Clarke mech. + components: + - type: Appearance + - type: ContainerContainer + containers: + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: clarke + - type: Sprite + noRot: true + state: clarke0 + - type: Construction + graph: Clarke + node: start + defaultTarget: clarke + +# Durand + +- type: entity + id: BaseDurandPart + parent: BaseMechPart + abstract: true + components: + - type: Sprite + drawdepth: Items + noRot: false + sprite: _Goobstation/Objects/Specific/Mech/durand_construction.rsi + +- type: entity + id: BaseDurandPartItem + parent: BaseDurandPart + abstract: true + components: + - type: Item + size: Ginormous + +- type: entity + parent: BaseDurandPart + id: DurandHarness + name: durand harness + description: The core of the Durand. + components: + - type: Appearance + - type: ItemMapper + mapLayers: + durand_head+o: + whitelist: + tags: + - DurandHead + durand_l_arm+o: + whitelist: + tags: + - DurandLArm + durand_r_arm+o: + whitelist: + tags: + - DurandRArm + durand_l_leg+o: + whitelist: + tags: + - DurandLLeg + durand_r_leg+o: + whitelist: + tags: + - DurandRLeg + sprite: _Goobstation/Objects/Specific/Mech/durand_construction.rsi + - type: ContainerContainer + containers: + mech-assembly-container: !type:Container + - type: MechAssembly + finishedPrototype: DurandChassis + requiredParts: + DurandHead: false + DurandLArm: false + DurandRArm: false + DurandLLeg: false + DurandRLeg: false + - type: Sprite + state: durand_harness+o + noRot: true + +- type: entity + parent: BaseDurandPartItem + id: DurandHead + name: durand head + description: The head of the Durand. It belongs on the chassis of the mech. + components: + - type: Sprite + state: durand_head + - type: Tag + tags: + - DurandHead + +- type: entity + parent: BaseDurandPartItem + id: DurandLArm + name: durand left arm + description: The left arm of the Durand. It belongs on the chassis of the mech. + components: + - type: Sprite + state: durand_l_arm + - type: Tag + tags: + - DurandLArm + +- type: entity + parent: BaseDurandPartItem + id: DurandLLeg + name: durand left leg + description: The left leg of the Durand. It belongs on the chassis of the mech. + components: + - type: Sprite + state: durand_l_leg + - type: Tag + tags: + - DurandLLeg + +- type: entity + parent: BaseDurandPartItem + id: DurandRLeg + name: durand right leg + description: The right leg of the Durand. It belongs on the chassis of the mech. + components: + - type: Sprite + state: durand_r_leg + - type: Tag + tags: + - DurandRLeg + +- type: entity + parent: BaseDurandPartItem + id: DurandRArm + name: durand right arm + description: The right arm of the Durand. It belongs on the chassis of the mech. + components: + - type: Sprite + state: durand_r_arm + - type: Tag + tags: + - DurandRArm + +- type: entity + id: DurandChassis + parent: BaseDurandPart + name: durand chassis + description: An in-progress construction of the Durand mech. + components: + - type: Appearance + - type: ContainerContainer + containers: + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: durand + - type: Sprite + noRot: true + state: durand0 + - type: Construction + graph: Durand + node: start + defaultTarget: durand + +# Gygax + +- type: entity + id: BaseGygaxPart + parent: BaseMechPart + abstract: true + components: + - type: Sprite + drawdepth: Items + noRot: false + sprite: _Goobstation/Objects/Specific/Mech/gygax_construction.rsi + +- type: entity + id: BaseGygaxPartItem + parent: BaseGygaxPart + abstract: true + components: + - type: Item + size: Ginormous + +- type: entity + parent: BaseGygaxPart + id: GygaxHarness + name: gygax harness + description: The core of the Gygax. + components: + - type: Appearance + - type: ItemMapper + mapLayers: + gygax_head+o: + whitelist: + tags: + - GygaxHead + gygax_l_arm+o: + whitelist: + tags: + - GygaxLArm + gygax_r_arm+o: + whitelist: + tags: + - GygaxRArm + gygax_l_leg+o: + whitelist: + tags: + - GygaxLLeg + gygax_r_leg+o: + whitelist: + tags: + - GygaxRLeg + sprite: _Goobstation/Objects/Specific/Mech/gygax_construction.rsi + - type: ContainerContainer + containers: + mech-assembly-container: !type:Container + - type: MechAssembly + finishedPrototype: GygaxChassis + requiredParts: + GygaxHead: false + GygaxLArm: false + GygaxRArm: false + GygaxLLeg: false + GygaxRLeg: false + - type: Sprite + state: gygax_harness+o + noRot: true + +- type: entity + parent: BaseGygaxPartItem + id: GygaxHead + name: gygax head + description: The head of the Gygax. It belongs on the chassis of the mech. + components: + - type: Sprite + state: gygax_head + - type: Tag + tags: + - GygaxHead + +- type: entity + parent: BaseGygaxPartItem + id: GygaxLArm + name: gygax left arm + description: The left arm of the Gygax. It belongs on the chassis of the mech. + components: + - type: Sprite + state: gygax_l_arm + - type: Tag + tags: + - GygaxLArm + +- type: entity + parent: BaseGygaxPartItem + id: GygaxLLeg + name: gygax left leg + description: The left leg of the Gygax. It belongs on the chassis of the mech. + components: + - type: Sprite + state: gygax_l_leg + - type: Tag + tags: + - GygaxLLeg + +- type: entity + parent: BaseGygaxPartItem + id: GygaxRLeg + name: gygax right leg + description: The right leg of the Gygax. It belongs on the chassis of the mech. + components: + - type: Sprite + state: gygax_r_leg + - type: Tag + tags: + - GygaxRLeg + +- type: entity + parent: BaseGygaxPartItem + id: GygaxRArm + name: gygax right arm + description: The right arm of the Gygax. It belongs on the chassis of the mech. + components: + - type: Sprite + state: gygax_r_arm + - type: Tag + tags: + - GygaxRArm + +- type: entity + id: GygaxChassis + parent: BaseGygaxPart + name: gygax chassis + description: An in-progress construction of the Gygax mech. + components: + - type: Appearance + - type: ContainerContainer + containers: + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: gygax + - type: Sprite + noRot: true + state: gygax0 + - type: Construction + graph: Gygax + node: start + defaultTarget: gygax diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mecha_equipment.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mecha_equipment.yml new file mode 100644 index 0000000000..101c1036fb --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mecha_equipment.yml @@ -0,0 +1,53 @@ +- type: entity + id: DebugMechEquipment + abstract: true + suffix: DEBUG + categories: [ HideSpawnMenu ] + components: + - type: Tag + tags: + - CombatMech + - IndustrialMech + - SpecialMech + - SmallMech + +- type: entity + id: CombatMechEquipment + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Tag + tags: + - CombatMech + - type: StaticPrice + price: 500 + +- type: entity + id: IndustrialMechEquipment + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Tag + tags: + - IndustrialMech + - type: StaticPrice + price: 250 + +- type: entity + id: SpecialMechEquipment + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Tag + tags: + - SpecialMech + +- type: entity + id: SmallMechEquipment + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Tag + tags: + - SmallMech +# TODO: Make medical mech with equipment. diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mechs.yml new file mode 100644 index 0000000000..fb4c6b5ded --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Mech/mechs.yml @@ -0,0 +1,590 @@ +- type: entity + id: CombatMech + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Mech + equipmentWhitelist: + tags: + - CombatMech + +- type: entity + id: IndustrialMech + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Mech + equipmentWhitelist: + tags: + - IndustrialMech + +- type: entity + id: SpecialMech + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Mech + equipmentWhitelist: + tags: + - SpecialMech + +- type: entity + id: SmallMech + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: Mech + equipmentWhitelist: + tags: + - SmallMech + +# Ripley MK-II +- type: entity + id: MechRipley2 + parent: [ BaseMech, IndustrialMech ] + name: Ripley APLU MK-II + description: The "MK-II" has a pressurized cabin for space operations, but the added weight has slowed it down. + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: ripleymkii + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: ripleymkii + openState: ripleymkii-open + brokenState: ripleymkii-broken + mechToPilotDamageMultiplier: 0.4 + airtight: true + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 20 + - type: MovementSpeedModifier + baseWalkSpeed: 1 + baseSprintSpeed: 2 + - type: Damageable + damageModifierSet: MediumArmorNT + - type: StaticPrice + price: 1000 + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - RipleyMkII + +- type: entity + id: MechRipley2Battery + parent: MechRipley2 + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHigh + +# Clarke +- type: entity + id: MechClarke + parent: [ BaseMech, IndustrialMech ] + name: Clarke + description: A fast-moving mech for space travel. It has built-in trusts. + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: clarke + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: clarke + openState: clarke-open + brokenState: clarke-broken + mechToPilotDamageMultiplier: 0.5 + airtight: true + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 26 + - type: MovementSpeedModifier + baseWalkSpeed: 2.5 + baseSprintSpeed: 4.5 + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: StaticPrice + price: 1500 + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - Clarke + +- type: entity + id: MechClarkeBattery + parent: MechClarke + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHigh + +- type: entity + parent: MechHonkerBattery + id: MechHonkerFilled + suffix: Battery, Filled + components: + - type: Mech + startingEquipment: + - WeaponMechSpecialBananaMortar + - WeaponMechSpecialMousetrapMortar + - MechEquipmentHorn + +# Combat-Station Mechs + +# Gygax +- type: entity + id: MechGygax + parent: [ BaseMech, CombatMech ] + name: Gygax + description: While lightly armored, the Gygax has incredible mobility thanks to its ability that lets it smash through walls at high speeds. + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: gygax + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: gygax + openState: gygax-open + brokenState: gygax-broken + mechToPilotDamageMultiplier: 0.3 + airtight: true + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 25 + Structural: 180 + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: MovementSpeedModifier + baseWalkSpeed: 2 + baseSprintSpeed: 2.6 + - type: StaticPrice + price: 3000 + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - Gygax + +- type: entity + id: MechGygaxBattery + parent: MechGygax + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHigh + +# Durand +- type: entity + id: MechDurand + parent: [ BaseMech, CombatMech ] + name: Durand + description: A slow but beefy combat exosuit that is extra scary in confined spaces due to its punches. Xenos hate it! + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: durand + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: durand + openState: durand-open + brokenState: durand-broken + mechToPilotDamageMultiplier: 0.25 + airtight: true + maxIntegrity: 400 + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 40 + Structural: 220 + - type: MovementSpeedModifier + baseWalkSpeed: 1.5 + baseSprintSpeed: 2 + - type: Damageable + damageModifierSet: MediumArmorNT + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: Repairable + fuelCost: 30 + doAfterDelay: 15 + - type: StaticPrice + price: 5000 + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - Durand + +- type: entity + id: MechDurandBattery + parent: MechDurand + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHigh + +# Nanotrasen Combat Mechs + +# Marauder +- type: entity + id: MechMarauder + parent: [ BaseMech, CombatMech ] + name: Marauder + description: Looks like we're all saved. # ERT mech + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: marauder + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: marauder + openState: marauder-open + brokenState: marauder-broken + mechToPilotDamageMultiplier: 0.1 + airtight: true + maxIntegrity: 500 + maxEquipmentAmount: 4 + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 40 + Structural: 200 + - type: MovementSpeedModifier + baseWalkSpeed: 1 + baseSprintSpeed: 1.5 + - type: Damageable + damageModifierSet: HeavyArmorNT + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: Repairable + fuelCost: 30 + doAfterDelay: 15 + - type: StaticPrice + price: 15000 # Some respect if you steal one of these. + +- type: entity + id: MechMarauderBattery + parent: MechMarauder + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHyper + +- type: entity + id: MechMarauderFilled + parent: MechMarauderBattery + suffix: Battery, Filled + components: + - type: Mech + startingEquipment: + - WeaponMechChainSword + - WeaponMechCombatPulseRifle + - WeaponMechCombatUltraRifle + - WeaponMechCombatMissileRack8 + +# Seraph +- type: entity + id: MechSeraph + parent: [ BaseMech, CombatMech ] + name: Seraph + description: That's the last thing you'll see. # Death Squad mech + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: seraph + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: seraph + openState: seraph-open + brokenState: seraph-broken + mechToPilotDamageMultiplier: 0.05 + airtight: true + maxIntegrity: 550 + maxEquipmentAmount: 5 + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 60 + Structural: 400 + - type: MovementSpeedModifier + baseWalkSpeed: 2.2 + baseSprintSpeed: 3.7 + - type: Damageable + damageModifierSet: HeavyArmorNT + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: Repairable + fuelCost: 30 + doAfterDelay: 20 + - type: StaticPrice + price: 30000 # My respects if you manage to steal one of these. + +- type: entity + id: MechSeraphBattery + parent: MechSeraph + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellAntiqueProto + +- type: entity + id: MechSeraphFilled + parent: MechSeraphBattery + suffix: Battery, Filled + components: + - type: Mech + startingEquipment: + - WeaponMechChainSword + - WeaponMechCombatPulseRifle + - WeaponMechCombatShotgun + - WeaponMechCombatMissileRack6 + - WeaponMechCombatUltraRifle + +# Syndicate Combat Mech + +# Dark Gygax +- type: entity + id: MechGygaxSyndie + parent: [ BaseMech, CombatMech ] + name: Dark Gygax + description: A modified Gygax used for nefarious purposes. On the back of the armor plate there is an inscription "Cybersun Inc." + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: darkgygax + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: darkgygax + openState: darkgygax-open + brokenState: darkgygax-broken + mechToPilotDamageMultiplier: 0.15 + airtight: true + maxIntegrity: 300 + maxEquipmentAmount: 4 + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 30 + Structural: 200 + - type: MovementSpeedModifier + baseWalkSpeed: 2.2 + baseSprintSpeed: 3.7 + - type: Damageable + damageModifierSet: MediumArmorSyndi + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: Repairable + fuelCost: 40 + doAfterDelay: 20 + - type: StaticPrice + price: 15000 # Some respect if you steal one of these. + +- type: entity + id: MechGygaxSyndieBattery + parent: MechGygaxSyndie + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHyper + +- type: entity + id: MechGygaxSyndieFilled + parent: MechGygaxSyndieBattery + suffix: Battery, Filled + components: + - type: Mech + startingEquipment: + - WeaponMechChainSword + - WeaponMechCombatShotgun + - WeaponMechCombatMissileRack8 + - WeaponMechCombatTeslaCannon + +# Mauler +- type: entity + id: MechMaulerSyndie + parent: [ BaseMech, CombatMech ] + name: Mauler + description: A modified Marauder used by the Syndicate that's not as maneuverable as the Dark Gygax, but it makes up for that in armor and sheer firepower. On the back of the armor plate there is an inscription "Cybersun Inc." + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: mauler + - map: ["enum.PaperLabelVisuals.Layer"] + sprite: Structures/Storage/Crates/labels.rsi + state: paper + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/sound_mecha_powerloader_step.ogg + - type: Mech + baseState: mauler + openState: mauler-open + brokenState: mauler-broken + mechToPilotDamageMultiplier: 0.1 + airtight: true + maxIntegrity: 500 + maxEquipmentAmount: 5 + pilotWhitelist: + components: + - HumanoidAppearance + - type: MeleeWeapon + hidden: true + attackRate: 1 + damage: + types: + Blunt: 50 + Structural: 400 + - type: MovementSpeedModifier + baseWalkSpeed: 1 + baseSprintSpeed: 1.5 + - type: Damageable + damageModifierSet: HeavyArmorSyndi + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: Repairable + fuelCost: 50 + doAfterDelay: 25 + - type: StaticPrice + price: 30000 # Some respect if you steal one of these. + +- type: entity + id: MechMaulerSyndieBattery + parent: MechMaulerSyndie + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHyper + +- type: entity + id: MechMaulerSyndieFilled + parent: MechMaulerSyndieBattery + suffix: Battery, Filled + components: + - type: Mech + startingEquipment: + - WeaponMechChainSword + - WeaponMechCombatUltraRifle + - WeaponMechCombatShotgun + - WeaponMechCombatMissileRack6 + - WeaponMechCombatTeslaCannon diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Robotics/modsuit_parts.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Robotics/modsuit_parts.yml new file mode 100644 index 0000000000..47ab0265e1 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Specific/Robotics/modsuit_parts.yml @@ -0,0 +1,162 @@ +- type: entity + id: PartModsuit + parent: BaseItem + name: MOD part + description: A part used in MOD construction. + abstract: true + components: + - type: Sprite + sprite: _Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi + - type: Icon + sprite: _Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi + - type: Item + size: Normal + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + #- type: GuideHelp TODO: Guide + +- type: entity + id: ModsuitChestplate + parent: PartModsuit + name: MOD chestplate + components: + - type: Sprite + state: chestplate + - type: Icon + state: chestplate + - type: PhysicalComposition + materialComposition: + Steel: 62 + - type: Tag + tags: + - ModsuitPart + - ModsuitChestplate + +- type: entity + id: ModsuitBoots + parent: PartModsuit + name: MOD boots + components: + - type: Sprite + state: boots + - type: Icon + state: boots + - type: PhysicalComposition + materialComposition: + Steel: 62 + - type: Tag + tags: + - ModsuitPart + - ModsuitBoots + +- type: entity + id: ModsuitHelmet + parent: PartModsuit + name: MOD helmet + components: + - type: Sprite + state: helmet + - type: Icon + state: helmet + - type: PhysicalComposition + materialComposition: + Steel: 62 + - type: Tag + tags: + - ModsuitPart + - ModsuitHelmet + +- type: entity + id: ModsuitGauntlets + parent: PartModsuit + name: MOD gauntlets + components: + - type: Sprite + state: gauntlets + - type: Icon + state: gauntlets + - type: PhysicalComposition + materialComposition: + Steel: 62 + - type: Tag + tags: + - ModsuitPart + - ModsuitGauntlets + +- type: entity + id: ModsuitShell + parent: PartModsuit + name: MOD shell + components: + - type: Appearance + - type: Sprite + state: shell + - type: Icon + state: shell + - type: PhysicalComposition + materialComposition: + Steel: 125 + Plasma: 62 + - type: ContainerContainer + containers: + cell_slot: !type:Container + core-container: !type:Container + - type: Construction + graph: Modsuit + node: start + defaultTarget: standard + containers: + - cell_slot + - core-container + - type: GenericVisualizer + visuals: + enum.ConstructionVisuals.Key: + enum.ConstructionVisuals.Layer: + shell-core: { state: shell-core } + shell-core-secured: { state: shell-core-secured } + shell-helmet: { state: shell-helmet } + shell-chestplate: { state: shell-chestplate } + shell-gauntlets: { state: shell-gauntlets } + shell-boots: { state: shell-boots } + shell-secured: { state: shell-secured } + +- type: entity + id: ModsuitPlatingExternal + parent: PartModsuit + name: MOD standard external plating + description: A part used in MOD construction. + components: + - type: Sprite + state: standard-plating + - type: Icon + state: standard-plating + - type: PhysicalComposition + materialComposition: + Steel: 75 + Glass: 37 + Plasma: 12 + - type: Tag + tags: + - ModsuitPart + - ModsuitPlatingExternal + +- type: entity + id: ModsuitCoreStandard + parent: PartModsuit + name: MOD standard core + description: Growing in the most lush, fertile areas of the planet Sprout, there is a crystal known as the Heartbloom. These rare, organic piezoelectric crystals are of incredible cultural significance to the artist castes of the Ethereals, owing to their appearance; which is exactly similar to that of an Ethereal's heart. Which one you have in your suit is unclear, but either way, it's been repurposed to be an internal power source for a Modular Outerwear Device. + components: + - type: Sprite + state: mod-core-standard + - type: Icon + state: mod-core-standard + - type: Tag + tags: + - ModsuitPart + - ModsuitCore + - type: PhysicalComposition + materialComposition: + Plasma: 50 + Glass: 25 diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index 6bf5c5c765..821a08becf 100644 --- a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -27,21 +27,21 @@ - state: incendiary #i changed just color because it almost white color: "#cfff77" -- type: entity - id: MagazineBoxMagnumEMP - parent: BaseMagazineBoxMagnumExtended - name: ammunition box (.45 magnum EMP) - components: - - type: BallisticAmmoProvider - proto: CartridgeMagnumEMP - - type: Sprite - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-1 - map: ["enum.GunVisualLayers.Mag"] - - state: incendiary - color: "#009eff" +# - type: entity +# id: MagazineBoxMagnumEMP +# parent: BaseMagazineBoxMagnumExtended +# name: ammunition box (.45 magnum EMP) +# components: +# - type: BallisticAmmoProvider +# proto: CartridgeMagnumEMP +# - type: Sprite +# layers: +# - state: base +# map: ["enum.GunVisualLayers.Base"] +# - state: mag-1 +# map: ["enum.GunVisualLayers.Mag"] +# - state: incendiary +# color: "#009eff" - type: entity id: MagazineBoxMagnumFlash diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index 4535256250..eb9823e6ff 100644 --- a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -13,20 +13,20 @@ map: [ "enum.AmmoVisualLayers.Tip" ] color: "#cfff77" -- type: entity - id: CartridgeMagnumEMP - name: cartridge (.45 magnum EMP) - parent: BaseCartridgeMagnum - components: - - type: CartridgeAmmo - proto: BulletMagnumEMP - - type: Sprite - layers: - - state: base - map: [ "enum.AmmoVisualLayers.Base" ] - - state: tip - map: [ "enum.AmmoVisualLayers.Tip" ] - color: "#009eff" +# - type: entity +# id: CartridgeMagnumEMP +# name: cartridge (.45 magnum EMP) +# parent: BaseCartridgeMagnum +# components: +# - type: CartridgeAmmo +# proto: BulletMagnumEMP +# - type: Sprite +# layers: +# - state: base +# map: [ "enum.AmmoVisualLayers.Base" ] +# - state: tip +# map: [ "enum.AmmoVisualLayers.Tip" ] +# color: "#009eff" - type: entity id: CartridgeMagnumFlash diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index 281819c407..cdd3ade75e 100644 --- a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -22,32 +22,33 @@ walkSpeed: 0.7 staminaDamage: 10 -- type: entity - id: BulletMagnumEMP - name: bullet (.45 magnum EMP) - parent: BaseBulletTrigger - categories: [ HideSpawnMenu ] - components: - - type: Sprite - sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi - layers: - - state: rubber - color: "#009eff" - - type: EmpOnTrigger - range: 0.2 - energyConsumption: 80 - disableDuration: 1 - - type: Ammo - muzzleFlash: null - - type: PointLight - radius: 1.5 - color: blue - energy: 0.5 - - type: Projectile - damage: - types: - Piercing: 10 - Ion: 20 +# How did this make it in? It's entirely broken +# - type: entity +# id: BulletMagnumEMP +# name: bullet (.45 magnum EMP) +# parent: BaseBulletTrigger +# categories: [ HideSpawnMenu ] +# components: +# - type: Sprite +# sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi +# layers: +# - state: rubber +# color: "#009eff" +# - type: EmpOnTrigger +# range: 0.2 +# energyConsumption: 80 +# disableDuration: 1 +# - type: Ammo +# muzzleFlash: null +# - type: PointLight +# radius: 1.5 +# color: blue +# energy: 0.5 +# - type: Projectile +# damage: +# types: +# Piercing: 10 +# Ion: 20 - type: entity id: BulletMagnumFlash diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index d3e4532f32..71cc6b8540 100644 --- a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -60,4 +60,14 @@ - Sidearm - type: BatterySelfRecharger autoRecharge: true - autoRechargeRate: 22 \ No newline at end of file + autoRechargeRate: 22 + +- type: entity + name: EG-4 energy revolver + parent: WeaponEnergyRevolver + id: WeaponEnergyRevolverSecurity + description: A highly advanced energy revolver capable of firing both lethal and disabling bullets. The serial number on the handguard marks this gun as belonging to an NT Security Officer. + suffix: Security Loadouts + components: + - type: GuideHelp + guides: [ SecurityWeapons ] \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/clothing/modsuit.yml b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/clothing/modsuit.yml new file mode 100644 index 0000000000..22357a98f7 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/clothing/modsuit.yml @@ -0,0 +1,113 @@ +- type: constructionGraph + id: Modsuit + start: start + graph: + - node: start + entity: ModsuitShell + edges: + - to: shell-core + steps: + - tag: ModsuitCore + name: MOD core + store: core-container + completed: + - !type:PlaySound + sound: /Audio/Items/screwdriver2.ogg + + - node: shell-core + actions: + - !type:AppearanceChange + edges: + - to: start + steps: + - tool: Prying + completed: + - !type:EmptyContainer + container: core-container + - to: shell-core-secured + steps: + - tool: Screwing + doAfter: 1 + + - node: shell-core-secured + actions: + - !type:AppearanceChange + edges: + - to: shell-helmet + steps: + - tag: ModsuitHelmet + name: MOD helmet + doAfter: 1 + completed: + - !type:PlaySound + sound: /Audio/Items/screwdriver2.ogg + + - node: shell-helmet + actions: + - !type:AppearanceChange + edges: + - to: shell-chestplate + steps: + - tag: ModsuitChestplate + name: MOD chestplate + doAfter: 1 + completed: + - !type:PlaySound + sound: /Audio/Items/screwdriver2.ogg + + - node: shell-chestplate + actions: + - !type:AppearanceChange + edges: + - to: shell-gauntlets + steps: + - tag: ModsuitGauntlets + name: MOD gauntlets + doAfter: 1 + completed: + - !type:PlaySound + sound: /Audio/Items/screwdriver2.ogg + + - node: shell-gauntlets + actions: + - !type:AppearanceChange + edges: + - to: shell-boots + steps: + - tag: ModsuitBoots + name: MOD boots + doAfter: 1 + completed: + - !type:PlaySound + sound: /Audio/Items/screwdriver2.ogg + + - node: shell-boots + actions: + - !type:AppearanceChange + edges: + - to: shell-secured + steps: + - tool: Anchoring + doAfter: 1 + + - tool: Screwing + doAfter: 1 + + - node: shell-secured + actions: + - !type:AppearanceChange + edges: + - to: standard + steps: + - tag: ModsuitPlatingExternal + name: any MOD plating + doAfter: 1 + completed: + - !type:PlaySound + sound: /Audio/Items/screwdriver2.ogg + + - tool: Anchoring + doAfter: 1 + + - node: standard + entity: ClothingModsuitStandard diff --git a/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/clarke_construction.yml b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/clarke_construction.yml new file mode 100644 index 0000000000..042395f604 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/clarke_construction.yml @@ -0,0 +1,156 @@ +- type: constructionGraph + id: Clarke + start: start + graph: + - node: start + edges: + - to: clarke + steps: + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 1 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 2 + + - material: Cable + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 3 + + - tool: Cutting + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 4 + + - tag: ClarkeCentralControlModule + name: clarke central control module + icon: + sprite: "Objects/Misc/module.rsi" + state: "mainboard" + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 5 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 6 + + - tag: ClarkePeripheralsControlModule + name: clarke peripherals control module + icon: + sprite: "Objects/Misc/module.rsi" + state: id_mod + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 7 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 8 + + - tag: CapacitorStockPart + name: capacitor + icon: + sprite: Objects/Misc/stock_parts.rsi + state: capacitor + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 9 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 10 + + - component: PowerCell + name: power cell + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 11 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 12 + + - material: Steel + amount: 5 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 14 + + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 15 + + - tool: Welding + doAfter: 1 + + - material: Gold + amount: 5 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 16 + + - tool: Anchoring + doAfter: 1 + + - tag: MechAirTank + name: exosuit air tank + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_air_tank + + - tool: Anchoring + doAfter: 1 + + - tag: MechThruster + name: exosuit thruster + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_bin + + - tool: Anchoring + doAfter: 1 + + - tool: Welding + doAfter: 1 + + - node: clarke + actions: + - !type:BuildMech + mechPrototype: MechClarke diff --git a/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/durand_construction.yml b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/durand_construction.yml new file mode 100644 index 0000000000..048ec4872b --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/durand_construction.yml @@ -0,0 +1,180 @@ +- type: constructionGraph + id: Durand + start: start + graph: + - node: start + edges: + - to: durand + steps: + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 1 + + - tool: Screwing + doAfter: 1 + + - material: Cable + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 2 + + - tool: Cutting + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 3 + + - tag: DurandCentralControlModule + name: durand central control module + icon: + sprite: "Objects/Misc/module.rsi" + state: "mainboard" + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 4 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 5 + + - tag: DurandPeripheralsControlModule + name: durand peripherals control module + icon: + sprite: "Objects/Misc/module.rsi" + state: id_mod + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 6 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 7 + + - tag: DurandTargetingControlModule + name: durand weapon control and targeting module + icon: + sprite: "Objects/Misc/module.rsi" + state: mcontroller + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 8 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 9 + + - tag: CapacitorStockPart + name: capacitor + icon: + sprite: Objects/Misc/stock_parts.rsi + state: capacitor + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 10 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 11 + + - component: PowerCell + name: power cell + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 12 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 13 + + - material: Steel + amount: 5 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 14 + + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 15 + + - tool: Welding + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 16 + + - tag: MechAirTank + name: exosuit air tank + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_air_tank + + - tool: Anchoring + doAfter: 1 + + - tag: MechThruster + name: exosuit thruster + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_bin + + - tool: Anchoring + doAfter: 1 + + - tag: DurandArmor + name: durand armor plates + icon: + sprite: "_Goobstation/Objects/Specific/Mech/durand_construction.rsi" + state: durand_armor + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 17 + + - tool: Anchoring + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 18 + + - tool: Welding + doAfter: 1 + + - node: durand + actions: + - !type:BuildMech + mechPrototype: MechDurand diff --git a/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/gygax_construction.yml b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/gygax_construction.yml new file mode 100644 index 0000000000..f86984de3f --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/gygax_construction.yml @@ -0,0 +1,180 @@ +- type: constructionGraph + id: Gygax + start: start + graph: + - node: start + edges: + - to: gygax + steps: + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 1 + + - tool: Screwing + doAfter: 1 + + - material: Cable + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 2 + + - tool: Cutting + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 3 + + - tag: GygaxCentralControlModule + name: gygax central control module + icon: + sprite: "Objects/Misc/module.rsi" + state: "mainboard" + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 4 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 5 + + - tag: GygaxPeripheralsControlModule + name: gygax peripherals control module + icon: + sprite: "Objects/Misc/module.rsi" + state: id_mod + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 6 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 7 + + - tag: GygaxTargetingControlModule + name: gygax weapon control and targeting module + icon: + sprite: "Objects/Misc/module.rsi" + state: mcontroller + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 8 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 9 + + - tag: CapacitorStockPart + name: capacitor + icon: + sprite: Objects/Misc/stock_parts.rsi + state: capacitor + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 10 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 11 + + - component: PowerCell + name: power cell + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 12 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 13 + + - material: Steel + amount: 5 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 16 + + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 17 + + - tool: Welding + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 18 + + - tag: MechAirTank + name: exosuit air tank + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_air_tank + + - tool: Anchoring + doAfter: 1 + + - tag: MechThruster + name: exosuit thruster + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_bin + + - tool: Anchoring + doAfter: 1 + + - tag: GygaxArmor + name: gygax armor plates + icon: + sprite: "_Goobstation/Objects/Specific/Mech/gygax_construction.rsi" + state: gygax_armor + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 19 + + - tool: Anchoring + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 20 + + - tool: Welding + doAfter: 1 + + - node: gygax + actions: + - !type:BuildMech + mechPrototype: MechGygax diff --git a/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/ripleymkii_construction.yml b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/ripleymkii_construction.yml new file mode 100644 index 0000000000..ffa6648ee3 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Construction/Graphs/mechs/ripleymkii_construction.yml @@ -0,0 +1,138 @@ +- type: constructionGraph + id: RipleyMKII + start: start + graph: + - node: start + edges: + - to: ripleymkii + steps: + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 1 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 2 + + - material: Cable + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 3 + + - tool: Cutting + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 4 + + - tag: RipleyCentralControlModule + name: ripley central control module + icon: + sprite: "Objects/Misc/module.rsi" + state: "mainboard" + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 5 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 6 + + - tag: RipleyPeripheralsControlModule + name: ripley peripherals control module + icon: + sprite: "Objects/Misc/module.rsi" + state: id_mod + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 7 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 8 + + - component: PowerCell + name: power cell + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 9 + + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 12 + + - material: Steel + amount: 5 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 15 + + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 16 + + - tool: Welding + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 17 + + - tag: MechAirTank + name: exosuit air tank + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_air_tank + + - tool: Anchoring + doAfter: 1 + + - material: Plasteel + amount: 10 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 19 + + - tool: Anchoring + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 20 + + - tool: Welding + doAfter: 1 + + - node: ripleymkii + actions: + - !type:BuildMech + mechPrototype: MechRipley2 diff --git a/Resources/Prototypes/_Goobstation/Recipes/Lathes/categories.yml b/Resources/Prototypes/_Goobstation/Recipes/Lathes/categories.yml new file mode 100644 index 0000000000..a8107f0c2c --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Lathes/categories.yml @@ -0,0 +1,44 @@ +# Exosuit +- type: latheCategory + id: Vim + name: lathe-category-mechs-vim + +- type: latheCategory + id: Honker + name: lathe-category-mechs-honker + +- type: latheCategory + id: Hamptr + name: lathe-category-mechs-hamptr + +- type: latheCategory + id: Ripley + name: lathe-category-mechs-ripley + +- type: latheCategory + id: RipleyMKII + name: lathe-category-mechs-ripleymkii + +- type: latheCategory + id: Clarke + name: lathe-category-mechs-clarke + +- type: latheCategory + id: Gygax + name: lathe-category-mechs-gygax + +- type: latheCategory + id: Durand + name: lathe-category-mechs-durand + +- type: latheCategory + id: MechEquipment + name: lathe-category-mechs-equipment + +- type: latheCategory + id: MechWeapons + name: lathe-category-mechs-weapons + +- type: latheCategory + id: Modsuit + name: lathe-category-modsuit diff --git a/Resources/Prototypes/_Goobstation/Recipes/Lathes/electronics.yml b/Resources/Prototypes/_Goobstation/Recipes/Lathes/electronics.yml new file mode 100644 index 0000000000..7fdfc51793 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Lathes/electronics.yml @@ -0,0 +1,39 @@ +- type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: ClarkeCentralElectronics + result: ClarkeCentralElectronics + +- type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: ClarkePeripheralsElectronics + result: ClarkePeripheralsElectronics + +- type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: GygaxCentralElectronics + result: GygaxCentralElectronics + +- type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: GygaxPeripheralsElectronics + result: GygaxPeripheralsElectronics + +- type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: GygaxTargetingElectronics + result: GygaxTargetingElectronics + +- type: latheRecipe + parent: BaseSilverCircuitboardRecipe + id: DurandCentralElectronics + result: DurandCentralElectronics + +- type: latheRecipe + parent: BaseSilverCircuitboardRecipe + id: DurandPeripheralsElectronics + result: DurandPeripheralsElectronics + +- type: latheRecipe + parent: BaseSilverCircuitboardRecipe + id: DurandTargetingElectronics + result: DurandTargetingElectronics diff --git a/Resources/Prototypes/_Goobstation/Recipes/Lathes/mech_parts.yml b/Resources/Prototypes/_Goobstation/Recipes/Lathes/mech_parts.yml new file mode 100644 index 0000000000..65d4890c41 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Lathes/mech_parts.yml @@ -0,0 +1,247 @@ +# Ripley MK-II +- type: latheRecipe + id: RipleyMKIIHarness + result: RipleyMKIIHarness + category: RipleyMKII + completetime: 10 + materials: + Steel: 1500 + Glass: 1200 + +- type: latheRecipe + id: RipleyUpgradeKit + result: RipleyUpgradeKit + category: RipleyMKII + completetime: 10 + materials: + Steel: 500 + +# Clarke +- type: latheRecipe + id: ClarkeHarness + result: ClarkeHarness + category: Clarke + completetime: 10 + materials: + Steel: 2000 + Glass: 1500 + +- type: latheRecipe + id: ClarkeHead + result: ClarkeHead + category: Clarke + completetime: 10 + materials: + Steel: 1550 + Glass: 950 + +- type: latheRecipe + id: ClarkeLArm + result: ClarkeLArm + category: Clarke + completetime: 10 + materials: + Steel: 900 + Glass: 800 + +- type: latheRecipe + id: ClarkeRArm + result: ClarkeRArm + category: Clarke + completetime: 10 + materials: + Steel: 900 + Glass: 800 + +- type: latheRecipe + id: ClarkeTreads + result: ClarkeTreads + category: Clarke + completetime: 10 + materials: + Steel: 950 + +# Durand +- type: latheRecipe + id: DurandHarness + result: DurandHarness + category: Durand + completetime: 10 + materials: + Steel: 2500 + Glass: 2000 + Silver: 1500 + +- type: latheRecipe + id: DurandArmor + result: DurandArmorPlate + category: Durand + completetime: 10 + materials: + Steel: 3000 + Silver: 900 + +- type: latheRecipe + id: DurandHead + result: DurandHead + category: Durand + completetime: 10 + materials: + Steel: 1500 + Glass: 800 + Silver: 250 + Diamond: 100 + +- type: latheRecipe + id: DurandLArm + result: DurandLArm + category: Durand + completetime: 10 + materials: + Steel: 1100 + Silver: 250 + +- type: latheRecipe + id: DurandLLeg + result: DurandLLeg + category: Durand + completetime: 10 + materials: + Steel: 1100 + Silver: 250 + +- type: latheRecipe + id: DurandRLeg + result: DurandRLeg + category: Durand + completetime: 10 + materials: + Steel: 1100 + Silver: 250 + +- type: latheRecipe + id: DurandRArm + result: DurandRArm + category: Durand + completetime: 10 + materials: + Steel: 1100 + Silver: 250 + +# Gygax +- type: latheRecipe + id: GygaxHarness + result: GygaxHarness + category: Gygax + completetime: 10 + materials: + Steel: 2500 + Glass: 2000 + +- type: latheRecipe + id: GygaxArmor + result: GygaxArmorPlate + category: Gygax + completetime: 10 + materials: + Steel: 3000 + +- type: latheRecipe + id: GygaxHead + result: GygaxHead + category: Gygax + completetime: 10 + materials: + Steel: 1500 + Glass: 250 + Diamond: 100 + +- type: latheRecipe + id: GygaxLArm + result: GygaxLArm + category: Gygax + completetime: 10 + materials: + Steel: 1100 + +- type: latheRecipe + id: GygaxLLeg + result: GygaxLLeg + category: Gygax + completetime: 10 + materials: + Steel: 1100 + +- type: latheRecipe + id: GygaxRLeg + result: GygaxRLeg + category: Gygax + completetime: 10 + materials: + Steel: 1100 + +- type: latheRecipe + id: GygaxRArm + result: GygaxRArm + category: Gygax + completetime: 10 + materials: + Steel: 1100 + +# Equipment +- type: latheRecipe + id: MechEquipmentDrill + result: WeaponMechMeleeDrill + category: MechEquipment + completetime: 10 + materials: + Steel: 1000 + Glass: 250 + +- type: latheRecipe + id: MechEquipmentDrillDiamond + result: WeaponMechMeleeDrillDiamond + category: MechEquipment + completetime: 10 + materials: + Steel: 1000 + Plastic: 150 + Silver: 350 + Diamond: 150 + +- type: latheRecipe + id: MechEquipmentHonkerBananaMortar + result: WeaponMechSpecialBananaMortar + category: MechEquipment + completetime: 10 + materials: + Steel: 1150 + Bananium: 800 + +- type: latheRecipe + id: MechEquipmentHonkerMousetrapMortar + result: WeaponMechSpecialMousetrapMortar + category: MechEquipment + completetime: 10 + materials: + Steel: 1200 + Bananium: 300 + +# Misc +- type: latheRecipe + id: MechAirTank + result: MechAirTank + category: MechEquipment + completetime: 10 + materials: + Steel: 1000 + Glass: 150 + +- type: latheRecipe + id: MechThruster + result: MechThruster + category: MechEquipment + completetime: 10 + materials: + Steel: 1000 + Glass: 150 diff --git a/Resources/Prototypes/_Goobstation/Recipes/Lathes/robotics.yml b/Resources/Prototypes/_Goobstation/Recipes/Lathes/robotics.yml new file mode 100644 index 0000000000..66c23c1fbc --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Lathes/robotics.yml @@ -0,0 +1,50 @@ +- type: latheRecipe + id: ModsuitChestplate + result: ModsuitChestplate + category: Modsuit + completetime: 5 + materials: + Steel: 250 + +- type: latheRecipe + id: ModsuitBoots + result: ModsuitBoots + category: Modsuit + completetime: 5 + materials: + Steel: 250 + +- type: latheRecipe + id: ModsuitHelmet + result: ModsuitHelmet + category: Modsuit + completetime: 5 + materials: + Steel: 250 + +- type: latheRecipe + id: ModsuitGauntlets + result: ModsuitGauntlets + category: Modsuit + completetime: 5 + materials: + Steel: 250 + +- type: latheRecipe + id: ModsuitShell + result: ModsuitShell + category: Modsuit + completetime: 5 + materials: + Steel: 500 + Plasma: 250 + +- type: latheRecipe + id: ModsuitPlatingExternal + result: ModsuitPlatingExternal + category: Modsuit + completetime: 5 + materials: + Steel: 300 + Glass: 150 + Plasma: 50 diff --git a/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml b/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml index ef91b7281b..57f1b2011a 100644 --- a/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml @@ -20,3 +20,105 @@ result: MagazineMagnumLeverRifle materials: Steel: 185 + +# Mech Weapons +- type: latheRecipe + id: WeaponMechCombatImmolationGun + result: WeaponMechCombatImmolationGun + category: MechWeapons + completetime: 10 + materials: + Steel: 2800 + Plastic: 1000 + Plasma: 750 + Glass: 500 + +- type: latheRecipe + id: WeaponMechCombatSolarisLaser + result: WeaponMechCombatSolarisLaser + category: MechWeapons + completetime: 10 + materials: + Steel: 1650 + Plastic: 300 + Plasma: 250 + Glass: 200 + +- type: latheRecipe + id: WeaponMechCombatFiredartLaser + result: WeaponMechCombatFiredartLaser + category: MechWeapons + completetime: 10 + materials: + Steel: 1200 + Plastic: 200 + Plasma: 150 + Glass: 50 + +- type: latheRecipe + id: WeaponMechCombatUltraRifle + result: WeaponMechCombatUltraRifle + category: MechWeapons + completetime: 10 + materials: + Steel: 1000 + Plastic: 200 + +- type: latheRecipe + id: WeaponMechCombatShotgun + result: WeaponMechCombatShotgun + category: MechWeapons + completetime: 10 + materials: + Steel: 1600 + Plastic: 550 + +- type: latheRecipe + id: WeaponMechCombatShotgunIncendiary + result: WeaponMechCombatShotgunIncendiary + category: MechWeapons + completetime: 10 + materials: + Steel: 1500 + Plastic: 800 + Plasma: 300 + +- type: latheRecipe + id: WeaponMechCombatDisabler + result: WeaponMechCombatDisabler + category: MechWeapons + completetime: 10 + materials: + Steel: 750 + Glass: 250 + Plastic: 300 + +- type: latheRecipe + id: WeaponMechCombatFlashbangLauncher + result: WeaponMechCombatFlashbangLauncher + category: MechWeapons + completetime: 10 + materials: + Steel: 1200 + Glass: 300 + Plastic: 450 + +- type: latheRecipe + id: WeaponMechCombatMissileRack8 + result: WeaponMechCombatMissileRack8 + category: MechWeapons + completetime: 10 + materials: + Steel: 2500 + Glass: 1500 + Plastic: 750 + +- type: latheRecipe + id: MechEquipmentKineticAccelerator + result: WeaponMechIndustrialKineticAccelerator + category: MechEquipment + completetime: 10 + materials: + Steel: 1500 + Glass: 750 + Silver: 150 diff --git a/Resources/Prototypes/_Goobstation/Research/arsenal.yml b/Resources/Prototypes/_Goobstation/Research/arsenal.yml new file mode 100644 index 0000000000..5f27639989 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Research/arsenal.yml @@ -0,0 +1,66 @@ +# Tier 2 + +- type: technology + id: Gygax + name: research-technology-gygax + icon: + sprite: Objects/Specific/Mech/mecha.rsi + state: gygax + discipline: Arsenal + tier: 2 + cost: 12000 + recipeUnlocks: + - GygaxHarness + - GygaxArmor + - GygaxHead + - GygaxLArm + - GygaxLLeg + - GygaxRArm + - GygaxRLeg + - GygaxCentralElectronics + - GygaxPeripheralsElectronics + - GygaxTargetingElectronics + - WeaponMechCombatUltraRifle + technologyPrerequisites: + - Ripley2 + +# Tier 3 + +- type: technology + id: ExplosiveMechAmmunition + name: research-technology-explosive-mech-ammunition + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_missilerack + discipline: Arsenal + tier: 3 + cost: 15000 + recipeUnlocks: + - WeaponMechCombatMissileRack8 + technologyPrerequisites: + - ExplosiveTechnology + +- type: technology + id: Durand + name: research-technology-durand + icon: + sprite: Objects/Specific/Mech/mecha.rsi + state: durand + discipline: Arsenal + tier: 3 + cost: 16000 + recipeUnlocks: + - DurandHarness + - DurandArmor + - DurandHead + - DurandLArm + - DurandLLeg + - DurandRArm + - DurandRLeg + - DurandCentralElectronics + - DurandPeripheralsElectronics + - DurandTargetingElectronics + - WeaponMechCombatShotgun + - WeaponMechCombatShotgunIncendiary + technologyPrerequisites: + - Gygax \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Research/civilianservices.yml b/Resources/Prototypes/_Goobstation/Research/civilianservices.yml new file mode 100644 index 0000000000..2e832386d2 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Research/civilianservices.yml @@ -0,0 +1,18 @@ +# Tier 1 + +# Tier 2 + +- type: technology + id: HONKWeapons + name: research-technology-honk-weapons + icon: + sprite: Objects/Specific/Mech/mecha_equipment.rsi + state: mecha_bananamrtr + discipline: CivilianServices + tier: 2 + cost: 6000 + recipeUnlocks: + - MechEquipmentHonkerBananaMortar + - MechEquipmentHonkerMousetrapMortar + +# Tier 3 diff --git a/Resources/Prototypes/_Goobstation/Research/experimental.yml b/Resources/Prototypes/_Goobstation/Research/experimental.yml new file mode 100644 index 0000000000..732c337016 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Research/experimental.yml @@ -0,0 +1,19 @@ +- type: technology + id: ModsuitsTech + name: research-technology-modsuits + icon: + sprite: _Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi + state: mod-core-standard + discipline: Experimental + tier: 3 + cost: 5000 + technologyPrerequisites: + - AdvancedTacsuits + softCapContribution: 1.5 + recipeUnlocks: + - ModsuitChestplate + - ModsuitBoots + - ModsuitHelmet + - ModsuitGauntlets + - ModsuitShell + - ModsuitPlatingExternal diff --git a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml index 19a75105bd..b800701404 100644 --- a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml +++ b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml @@ -13,6 +13,15 @@ - !type:CharacterDepartmentTimeRequirement department: Security min: 54000 # 15 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight + - Muted + - Blindness + - Pacifist + - BrittleBoneDisease weight: 20 startingGear: BlueshieldOfficerGear icon: "JobIconBlueshield" @@ -39,15 +48,23 @@ - !type:AddComponentSpecial components: - type: CommandStaff + - type: CPRTraining + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: BlueshieldOfficerGear + subGear: + - BlueshieldPlasmamanGear equipment: back: ClothingBackpackBlueshield jumpsuit: ClothingUniformJumpsuitBlueshieldOfficer shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesMedSec - ears: ClothingHeadsetAltCommand + ears: ClothingHeadsetCentCom gloves: ClothingHandsGlovesCombat id: BlueshieldPDA pocket1: UniqueBlueshieldOfficerLockerTeleporter @@ -57,3 +74,11 @@ #belt: ClothingBeltSecurityFilled #pocket1: WeaponPistolMk58 #pocket2: DeathAcidifierImplanter + +- type: startingGear + id: BlueshieldPlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitBlueshield + head: ClothingHeadEnvirohelmBlueshield + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/magistrate.yml b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/magistrate.yml index 1e97aee0d3..340c635b9c 100644 --- a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/magistrate.yml +++ b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/magistrate.yml @@ -10,6 +10,11 @@ - !type:CharacterDepartmentTimeRequirement department: Security min: 54000 # 15 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight weight: 20 startingGear: MagistrateGear icon: "JobIconMagistrate" @@ -34,9 +39,16 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: MagistrateGear + subGear: + - MagistratePlasmamanGear equipment: jumpsuit: ClothingUniformJumpsuitMagistrate shoes: ClothingShoesLeather @@ -44,3 +56,11 @@ id: CentcomPDA ears: ClothingHeadsetMagistrate pocket1: UniqueMagistrateLockerTeleporter + +- type: startingGear + id: MagistratePlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitMagistrate + head: ClothingHeadEnvirohelmMagistrate + gloves: ClothingHandsGlovesEnviroglovesWhite diff --git a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml index 290a73e392..4ee7f41b81 100644 --- a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml +++ b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml @@ -7,6 +7,11 @@ - !type:CharacterDepartmentTimeRequirement department: Command min: 54000 # 15 hours + - !type:CharacterTraitRequirement + inverted: true + traits: + - Foreigner + - ForeignerLight weight: 20 startingGear: NanotrasenRepresentativeGear icon: "JobIconNanotrasenRepresentative" @@ -33,12 +38,27 @@ - !type:AddComponentSpecial components: - type: CommandStaff + afterLoadoutSpecial: + - !type:ModifyEnvirosuitSpecial + charges: 8 + - !type:ModifyEnvirohelmSpecial + powerCell: PowerCellHigh - type: startingGear id: NanotrasenRepresentativeGear + subGear: + - NanotrasenRepresentativePlasmamanGear equipment: shoes: ClothingShoesColorBlack id: CentcomPDA jumpsuit: ClothingUniformJumpsuitNanotrasenRepresentative ears: ClothingHeadsetCentCom pocket1: UniqueNanorepLockerTeleporter + +- type: startingGear + id: NanotrasenRepresentativePlasmamanGear + parent: BasePlasmamanGear + equipment: + jumpsuit: ClothingUniformEnvirosuitNanotrasenRepresentative + head: ClothingHeadEnvirohelmNanotrasenRepresentative + gloves: ClothingHandsGlovesEnviroglovesBlack diff --git a/Resources/Prototypes/_Goobstation/tags.yml b/Resources/Prototypes/_Goobstation/tags.yml index 4f28a4b555..2f3f918967 100644 --- a/Resources/Prototypes/_Goobstation/tags.yml +++ b/Resources/Prototypes/_Goobstation/tags.yml @@ -1,2 +1,133 @@ - type: Tag - id: MagazineMagnumLeverRifle \ No newline at end of file + id: MagazineMagnumLeverRifle + +# Mechs + +- type: Tag + id: ClarkeCentralControlModule + +- type: Tag + id: ClarkePeripheralsControlModule + +- type: Tag + id: ClarkeHead + +- type: Tag + id: ClarkeLArm + +- type: Tag + id: ClarkeRArm + +- type: Tag + id: ClarkeTreads + +- type: Tag + id: DurandArmor + +- type: Tag + id: DurandCentralControlModule + +- type: Tag + id: DurandPeripheralsControlModule + +- type: Tag + id: DurandTargetingControlModule + +- type: Tag + id: DurandHead + +- type: Tag + id: DurandLArm + +- type: Tag + id: DurandLLeg + +- type: Tag + id: DurandRArm + +- type: Tag + id: DurandRLeg + +- type: Tag + id: GygaxArmor + +- type: Tag + id: GygaxCentralControlModule + +- type: Tag + id: GygaxPeripheralsControlModule + +- type: Tag + id: GygaxTargetingControlModule + +- type: Tag + id: GygaxHead + +- type: Tag + id: GygaxLArm + +- type: Tag + id: GygaxLLeg + +- type: Tag + id: GygaxRArm + +- type: Tag + id: GygaxRLeg + +- type: Tag + id: MechAirTank + +- type: Tag + id: MechThruster + +- type: Tag + id: RipleyMKIIUpgradeKit + +- type: Tag + id: IndustrialMech + +- type: Tag + id: CombatMech +# TODO: Make medical mech, I will. + +- type: Tag + id: SpecialMech + +- type: Tag + id: RipleyMkII + +- type: Tag + id: Clarke + +- type: Tag + id: Durand + +- type: Tag + id: Gygax + + # MODsuits + +- type: Tag + id: ModsuitPart + +- type: Tag + id: ModsuitShell + +- type: Tag + id: ModsuitGauntlets + +- type: Tag + id: ModsuitHelmet + +- type: Tag + id: ModsuitBoots + +- type: Tag + id: ModsuitChestplate + +- type: Tag + id: ModsuitCore + +- type: Tag + id: ModsuitPlatingExternal diff --git a/Resources/Prototypes/_Harmony/Entities/Objects/Devices/red_phone.yml b/Resources/Prototypes/_Harmony/Entities/Objects/Devices/red_phone.yml new file mode 100644 index 0000000000..be0057c8c6 --- /dev/null +++ b/Resources/Prototypes/_Harmony/Entities/Objects/Devices/red_phone.yml @@ -0,0 +1,49 @@ +# Red phone, but CentCom intercom +# Note: the ID is hijacked from Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml +# New upstream ID: PhoneInstrumentUpstream +# Child entites also have PhoneInstrumentUpstream parent: PhoneInstrumentSyndicate, BananaPhoneInstrument +- type: entity + id: PhoneInstrument + parent: BaseItem + name: red phone + suffix: harmony intercom + description: Should anything ever go wrong... + components: + - type: Sprite + sprite: Objects/Fun/Instruments/otherinstruments.rsi + state: red_phone + - type: EmitSoundOnLand + sound: + path: /Audio/Items/ring.ogg + - type: Prayable + sentMessage: prayer-popup-notify-centcom-sent + notificationPrefix: prayer-chat-notify-centcom + verb: prayer-verbs-call + verbImage: null + - type: Speech + speechVerb: Robotic + - type: EncryptionKeyHolder + keySlots: 1 + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCentCom + - type: ContainerContainer + containers: + key_slots: !type:Container + - type: TelecomExempt + - type: RadioMicrophone + unobstructedRequired: true + listenRange: 2 + toggleOnInteract: false + - type: RadioSpeaker + toggleOnInteract: false + - type: Intercom + requiresPower: false + - type: ActivatableUI + key: enum.IntercomUiKey.Key + singleUser: true + - type: UserInterface + interfaces: + enum.IntercomUiKey.Key: + type: IntercomBoundUserInterface diff --git a/Resources/Prototypes/_SimpleStation/Entities/Mobs/Customization/IPCwings.yml b/Resources/Prototypes/_SimpleStation/Entities/Mobs/Customization/IPCwings.yml new file mode 100644 index 0000000000..16360d6304 --- /dev/null +++ b/Resources/Prototypes/_SimpleStation/Entities/Mobs/Customization/IPCwings.yml @@ -0,0 +1,8 @@ +- type: marking + id: WingsRobotic + bodyPart: Wings + markingCategory: Wings + speciesRestriction: [IPC] + sprites: + - sprite: _SimpleStation/Mobs/Customization/wings64x34.rsi + state: robotic diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index c0f7c7da6a..4cbfc73f8e 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -107,3 +107,44 @@ - type: npcFaction id: AnimalFriend + +- type: npcFaction + id: GladiabotFFA + hostile: + - GladiabotFFA + - GladiabotRed + - GladiabotGreen + - GladiabotBlue + - GladiabotYellow + +- type: npcFaction + id: GladiabotRed + hostile: + - GladiabotFFA + - GladiabotGreen + - GladiabotBlue + - GladiabotYellow + +- type: npcFaction + id: GladiabotGreen + hostile: + - GladiabotFFA + - GladiabotRed + - GladiabotBlue + - GladiabotYellow + +- type: npcFaction + id: GladiabotBlue + hostile: + - GladiabotFFA + - GladiabotRed + - GladiabotGreen + - GladiabotYellow + +- type: npcFaction + id: GladiabotYellow + hostile: + - GladiabotFFA + - GladiabotRed + - GladiabotGreen + - GladiabotBlue diff --git a/Resources/Prototypes/fonts.yml b/Resources/Prototypes/fonts.yml index c61a5fb804..71d0664ac0 100644 --- a/Resources/Prototypes/fonts.yml +++ b/Resources/Prototypes/fonts.yml @@ -69,3 +69,23 @@ - type: font id: Cambria path: /Fonts/Cambria.ttf + +- type: font + id: LDFComicSans + path: /Fonts/LDFComicSans/LDFComicSans-Medium.ttf + +- type: font + id: OnlyYou + path: /Fonts/Only_You.otf + +- type: font + id: Sriracha + path: /Fonts/Sriracha/Sriracha.ttf + +- type: font + id: GrenzeGotisch + path: /Fonts/Grenze_Gotisch/GrenzeGotisch.ttf + +- type: font + id: RubikDirt + path: /Fonts/Rubik_Dirt/RubikDirt.ttf \ No newline at end of file diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index b2341acd4a..83fc9bd231 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -268,6 +268,9 @@ - type: Tag id: BypassInteractionRangeChecks +- type: Tag + id: Cable + - type: Tag id: CableCoil @@ -414,6 +417,9 @@ - type: Tag id: ClothMade +- type: Tag + id: ClothingHeadHelmetBasic + - type: Tag id: ClownMask @@ -534,6 +540,12 @@ - type: Tag id: DiscreteHealthAnalyzer #So construction recipes don't eat medical PDAs +- type: Tag + id: Disposal + +- type: Tag + id: DNASolutionScannable + - type: Tag id: DockArrivals @@ -588,6 +600,9 @@ - type: Tag id: EmitterBolt +- type: Tag + id: Envirohelm + - type: Tag id: Enzyme @@ -1061,6 +1076,9 @@ - type: Tag id: PlasmaGlassShard +- type: Tag + id: PlasmamanSafe + - type: Tag id: Plastic @@ -1260,6 +1278,9 @@ - type: Tag id: Steak +- type: Tag + id: Stunbaton + - type: Tag id: SubdermalImplant @@ -1359,6 +1380,9 @@ - type: Tag id: WeaponAntiqueLaser +- type: Tag + id: WeaponDisabler + - type: Tag id: WeaponPistolCHIMPUpgradeKit @@ -1413,6 +1437,8 @@ - type: Tag id: WriteIgnoreStamps +# ALPHABETICAL + - type: Tag id: FelinidEmotes diff --git a/Resources/Prototypes/typing_indicator.yml b/Resources/Prototypes/typing_indicator.yml index 7e8c92787f..11f339454f 100644 --- a/Resources/Prototypes/typing_indicator.yml +++ b/Resources/Prototypes/typing_indicator.yml @@ -53,3 +53,11 @@ id: oni typingState: oni0 offset: 0, 0.0625 + +- type: typingIndicator + id: plasmaman + typingState: plasmaman0 + +- type: typingIndicator + id: skeleton + typingState: skeleton0 diff --git a/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Chitinid.xml b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Chitinid.xml new file mode 100644 index 0000000000..f3948fdd7b --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Chitinid.xml @@ -0,0 +1,27 @@ + + # Chitinid + + + + + + An industrious hymenoptera species, the Chitinid are strong and diligent. Thanks to evolution, they have grown an acute resistance to radiation, but not without its side effects. + + ## Diet + - Nothing special. + + ## Benefits + - Takes 80% less Radiation, 10% less Slash Blunt and Piercing. + - Their bodies naturally recover from light radiation damage up to a point, once they accumulate enough radiation they must purge it from their systems in the form of a small rock [color=#ff0f0f]WARNING:The Chitzite they expel is slightly radioactive [/color]. + - They are Better at pulling and carrying things. + - They possess a bio light. + + ## Drawbacks + - They take 15% more Shock damage due to their biology. + - Due to their hard shells normal syringes can not pierce them, requiring hypos to bypass the toughness. + - Thanks to their overactive systems they get hungry 33% faster. + - The cold does not agree with their biology and makes their movement sluggish the colder it gets, the cold also harms them more than others causing them to take 25% more damage from it. + - They are deceptively heavy due to their lifestyle and diet. + - Bug Blood. + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Plasmaman.xml b/Resources/ServerInfo/Guidebook/Mobs/Plasmaman.xml new file mode 100644 index 0000000000..d0c41a3100 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Plasmaman.xml @@ -0,0 +1,73 @@ + + # Plasmamen + + + + + + They breathe plasma, and oxygen is highly toxic to them when inhaled. + Being exposed to oxygen sets them on fire. + + To prevent ignition, they wear sealed suits made up of an envirosuit (in the jumpsuit slot) and a [bold]spaceworthy[/bold] envirosuit helmet. + Other suits like EVA suits, vacsuits, tacsuits and hardsuits will also seal them from oxygen exposure. + + They don't experience hunger nor thirst. + They don't have blood and cannot bleed out. + + Due to their skeleton body, they can consume Milk to gain a positive moodlet and slowly heal Brute, Heat, Shock, and Caustic damage. + They can also consume Plasma to gain a bigger positive moodlet and heal every damage type faster, except for Cellular damage. + + + + + + + They infuse their fists with plasma dust that combusts when they punch, dealing [color=orange]5 Heat[/color] and [color=red]2.25 Blunt[/color] damage. However, each successful punch deals [color=orange]1 Heat[/color] damage to their hands. + + Plasmamen with the traits [bold]Claws[/bold], [bold]Talons[/bold] or [bold]Natural Weapons Removal[/bold] have less unarmed damage but don't take self-damage from unarmed attacks. + + They take [color=#1e90ff]25% less Piercing, 20% less Poison, and 15% less Slash damage[/color], + and are [color=#8658fc]immune to Radiation and Cold damage[/color], + but take [color=#ffa500]50% more Blunt and 50% more Heat damage[/color]. + + Due to their [color=#8658fc]Cold immunity[/color], they can live in cold environments such as Glacier Station without the need of a winter coat. + + ## Equipment + + + + + + + All Plasmamen start with an envirosuit, an envirosuit helmet, and a plasma internals tank. + + Their envirosuits contain a [color=#1e90ff]self-extinguisher[/color] with limited charges, which they can activate when they are on fire + and wearing their envirosuit helmet. The self-extinguisher needs to recharge between uses. + + + Cartridge refills of the envirosuit's self-extinguisher can be bought in [bold]Loadouts[/bold], or printed at the medical techfab after research. + A refill makes a recharging self-extinguisher immediately usable again. + + + + Their envirosuit helmets are [bold]spaceworthy[/bold] and provide welding protection. The helmet's visor can be lit up like a flashlight, using the inserted power cell as a battery. + They cannot eat nor drink without taking off their envirosuit helmet. + + The plasma internals tank lasts roughly an hour before needing to be replaced or refilled. + + ## Medical Treatment + + + + + Before performing surgery on a Plasmaman, their envirosuit needs to be unequipped first, which is disastrous in an oxygenated environment. + + To get around this, the Plasmaman can be buckled to a [bold]stasis bed[/bold] before removing their envirosuit + to prevent them from self-igniting throughout the surgical procedure. + + + Their envirosuit helmets prevents them from eating pills, but their envirosuits allow chemicals to be injected through them. + + + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Shadowkin.xml b/Resources/ServerInfo/Guidebook/Mobs/Shadowkin.xml index f2f73ee666..36b7afe5af 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Shadowkin.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Shadowkin.xml @@ -1,36 +1,69 @@ -# Shadowkin - - - - - -Fluffy lil' guys. - -## Ability Differences - -- Need no air to survive -- Can Shadeskip -- Can travel to and from The Dark at will -- Dims nearby lights when in the The Dark -- When too low on energy, they may fall into a powerful sleep -- Can "speak" in the Empathy, which only other Shadowkin can understand -- Slightly less blunt damage -- A bit more slash damage -- Slightly more piercing damage -- Less cold damage -- Slightly more heat damage -- Near no cellular damage -- More bloodloss damage -- Slightly more shock damage -- More radiation damage - -## Physical Differences - -- Very large and brightly colored eyes with no pupils -- Sees the world through their eyes' tint -- Very large ears -- Very fluffy -- Can be Male, Female, or Unisex -- Can be 18-300 years old - \ No newline at end of file + # Shadowkin + + + + + + Public information on the origins of Shadowkin is incredibly sparse, in part owing to the secretive nature of these creatures. They are known by the Epistemics Cult to have originated from a dimension that is formally known as "The World At The End Of All Time", but any attempts to glean information about this dimension are universally met with silence or hostile stares. Between only their own kind, Shadowkin have many names for this dreadful place, with the most common simply being "The Dark". They have several evolutionary adaptations for living in such an incredibly hostile world. The World At The End Of All Time can thus be assumed from these adaptations to be extraordinarily cold, utterly without visible light, and bearing a thin atmosphere. + + Shadowkin in their current state are valued employees of Nanotrasen and often drift in and out of employment in other companies or sectors of space. + They are generally known as reliable and trustable employees, not having anything that's exceptionally negative or positive regarding their work ethic. + They have been known to be hired by security contracting companies and mercenary freelance organizations for their ability to go into the umbra at will. + Anti-Shadowkin sentiment is not very common among Nanotrasen employees, but certain Shadowkin that continue to interact with the nöösphere and cause problems around themselves have the tendency to draw the ire of local authorities. + + ## Biology + + Shadowkin biology is rather unknown and obscure as there aren't currently many in the sector. + We do know a few things, one of them being that both male and females look identical on the outside, no apparently gender at first look. + Shadowkin are very androgynous externally, fur flat against their bodies with no external differences regardless of sex. + Typically, they come in the two color extremes with the vast majority being dark colors while a rare few are white or grey. + Shadowkin that have been seen with fur such as orange and teal have consistently and always said their fur was dyed when asked, leading us to believe the darker tones and white are the only natural fur colors. + Recent autopsies have also revealed that Shadowkin do not seem to have pupils, their eyes simply being large, glowing orbs. + It is unsure how they see out of these without a visible pupil but it seems that not even they know. + Unlike other species, Shadowkin have four ears instead of two. + Their upper two ears are tasked with transmitting thoughts via Empathy, while the lower two ears are tasked with receiving thoughts that were transmitted via Empathy. + Shadowkin tails are typically fleshy and movable, covered in fur. + Shadowkin tails come in many shapes and sizes from large and fluffy to short and coarse, the tails do not seem to aid with balance and it's unclear if they do anything in the Dark. + Shadowkin tongues are also quite versatile, being the only ones capable of communicating effectively with Marish. + So far, researchers have struggled and been unable to find a manner to put Marish into a translator in a way that is accurate or understandable. + + ## Unique Language + +- [color=#2c2d33]Marish[/color]: + Marish is the unique and special language of the Shadowkin that was developed when they started moving out of the Dark and into normal dimensions. + Marish is a language that can only be properly spoken by someone with a Shadowkin tongue, other organic tongues and even computers struggling to get a proper grasp on it. + Marish is separate from Empathy in the fact that it is spoken while Empathy is typically communicated by vibrating one's four ears. + + ## Misc. Notes + + - Shadowkin, unlike harpies, do in fact hatch from eggs. + - Shadowkin on average tend to be slightly smaller than the average human, a few getting maybe a couple inches taller but not by much. + - Shadowkin do not have a concept of gender, rather only that of biological sex; this is primarily due to the fact that both males and females look identical on the outside. + - Shadowkin primarily used to live as nomadic tribals, as more of them populate different dimensions, this has begun to change. + - Shadowkin personalities are primarily dictated by their eye color, find out all the personalities! + + ## Species Traits + ### Positive Traits + -[color=#303056]Barrel Chested[/color]: + Shadowkin, as a result of living in a dimension where there is little air, do not have lungs but instead a core. Their core allows them to more efficiently process oxygen and not use as much as a result. + + -[color=#303056]Innate Telepathy[/color]: + Shadowkin are innately telepathic, allowing them to communicate with other psionic individuals at will. + + -[color=#303056]Psionic Species[/color]: + Shadowkin as a species inhabit a unique ability to more easily learn new psionic abilities, in part owing to their home dimension being incredibly hostile to those who would be considered "normal". + + -[color=#303056]Resting[/color]: + Shadowkin are able to fall into a deep and powerful sleep to quickly recover mana to use their psionic abilities sooner than others. + + ### Negative Traits + -[color=#303056]Glass Cannon[/color]: + Shadowkin are very vulnerable to damage from an array of sources, preferring speed and agility over direct combat. + + -[color=#303056]Easy Target[/color]: + Due to the fact they're inherently psionic, they make for easy targets by over-eager epistemics staff... and any other beasts that lurk in the dark. + + -[color=#303056]Unfortunate Evolution[/color]: + Most Shadowkin are not very tall, rendering them easy to pick up and throw around. As a result, space wind hits them 20% harder and their bones are not very durable either. + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Species.xml b/Resources/ServerInfo/Guidebook/Mobs/Species.xml index cb74fd50c9..6e8cf60688 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Species.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Species.xml @@ -13,8 +13,10 @@ + + - + # Parkstation specific species diff --git a/Resources/ServerInfo/Guidebook/Mobs/Tajaran.xml b/Resources/ServerInfo/Guidebook/Mobs/Tajaran.xml new file mode 100644 index 0000000000..59fa664c9b --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Tajaran.xml @@ -0,0 +1,127 @@ + + # Tajaran + All Information included in this document is licensed under CC BY-SA 4.0, and is taken from https://wiki.aurorastation.org/index.php?title=Tajaran with some modifications by SX-7(Github). + + + + The Tajara (direct plural: Tajara – Tah-jaw-rah both singular and multiple) (adjective: Tajaran - Tah-jaw-ran) are a race of humanoids that possess markedly felinoid traits that include a semi-prehensile tail, a body covered in fur of varying shades, and padded, digitigrade feet. + Tajaran history and society is deeply entrenched in the conflict between its caste system and ruling governments. + The species currently finds itself involved in a cold war between the three powers that control its homeworld, Adhomai. + + # Biology + + To the average human, the Tajara share many similarities with Earth's felines; however, when looked at from a purely scientific perspective, this description is largely superficial. + Unlike terrestrial felines, the Tajara are both omnivorous and bipedal. + Their bodies are almost entirely covered in a thick coat of fur that is extremely good at insulating them from the extreme cold of Adhomai. + The layer of body fat and fur is designed to trap body heat efficiently. + There are only a handful of areas where fur is not present, those being on the palm of their hands, the soles of their feet, and a number of various orifices as well as a small area around their eyes. + Tajara have nictitating membranes, a transparent eyelid layer that assists in preventing snow blindness and keeping their eyes moist against the wind. + + Occasionally, the fur around a Tajara's neck is known to grow into a shaggy 'mane' of sorts, giving them a distinct look, not unlike a terran lion. + This hair tends to be much stronger and a great deal wirier than the rest of the fur on a Tajara's body. + Some Tajara tend towards monochromatic bodies while others have multicolor or even calico fur patterns. + These designs depend heavily on the genetics of the individual's parents, much like hair and eye color. + Because of this, some parents are utterly incapable of producing multicolor children. + Designs including flat colors, stripes, spots, and most conceivable combinations have been recorded by scientists both Tajaran and human. + A male Tajara is somewhere between 150 cm and 185 cm in height, while the mean body mass is between 65 kg and 100 kg. + Females tend to range between 150 cm and 175 cm in height, with their own weight somewhere around 45 kg to 85kg. + As such, both their body weight and height are roughly comparable to the average human. + Height depends on a Tajara's ethnicity. + Njarir'akhran were bred to be taller, M'sai are a more middle height, Hharar are typically shorter or of middle height, and Zhan-Khazan are usually the tallest of the races. + Any Tajara who falls out of this range is unusually tall or short which typically stems from a medical condition. + A Tajaran fetus only takes six months to mature, and Tajaran children likewise mature rapidly, reaching the full extent of their growth by 15 or 16. + This rapid maturation has a profound effect on the lifespan of Tajara, as only with modern medicine have Tajara reached ages above 70, with the oldest living Tajara being 84 years old. + Most Tajara retire at age 60 when they are too old to work in any capacity. + + ## Ethnicities + + There are four races of Tajara: the Hharar, the Zhan-Khazan, the Njarir’Akhran, and the M'sai. + Each race has a common role that they play in a society to which their biological inclinations make them more suited, as well as their own cultures which have formed from long histories of performing these roles in society. + Tajara heavily stereotype each other based on race which is often a cause for conflict. + As a result of these differences, there is a lot of racial tension between these various types of Tajara which was further exacerbated by differences in socioeconomic classes. + + ### Hharar + + The first Tajaran ethnicity that Humanity came in contact with is generally viewed as the 'typical Tajara', which is reinforced by their numerical superiority over the other groups. + Additionally, given their large numbers and capabilities, they most often serve in governmental positions and as ambassadors to other races; this leads to them being taken as the 'face' of the Tajaran race, as it were. Hharar trend towards being the most intellectual of all Tajaran groups, and as such their physical prowess is significantly reduced. + The Hharar are the stereotypical 'worker' Tajara, commonly described as loyal employees who are passionate and not afraid to voice their opinions. + + ### Zhan-Khazan + + The second most populous of Tajaran ethnicities, and are considered to be the backbone of the Tajaran workforce. + Because of their history of hard work and the way they adapted to harsh mountain life, Zhan-Khazan are more physically intimidating than other Tajara. + Featuring more toned, muscular bodies, thicker fur coats, and heavier body weight, they are well-suited to tasks requiring brute strength and heavy lifting. + Due to their status as laborer they suffer discrimination and are usually regarded as less intelligent. + + ### M'sai + + The third most populous Tajaran ethnic group, the M'sai were at one point the hunters for ancient Tajara and evolved to have lithe, slender forms, and light fur that hid them in the blizzards on Adhomai. + As Tajaran society advanced, M'sai could be found in many roles related to combat, including law enforcement and military service. + They are very loyal to their friends and family but aren't as overt about it as the Zhan-Khazan. + With wide eyes and acute senses, they make great soldiers, with a vision adapted to compensate for the heavy blizzards that plague their home planet. + They are also great survivalists and are capable of scrounging food for themselves via hunting. + + ### Njarir’Akhran + + The ethnic group that made up the majority of the plutocracy before the Great War. + Their lineage can be traced from careful breeding between Hharar and M'sai, leading to where they currently are today. + Following recent events on Adhomai, Njarir make up less than ten percent of the population. + Easily identifiable by their large ears, fluffy tails, luxurious fur, and slender, elegant features. + Njarir suffer persecution and rejection from certain proponents of Tajaran society because of their bloodline. + As the most learned of all Tajaran ethnic groups, they boast high intelligence and have a propensity towards the arts and sciences. + + # History + + Adhomai, the Tajaran homeworld, has long been ruled by a deeply entrenched nobility. + Historical records dating back 3,000 years describe monarchies supported by religious authorities, where rulers claimed divine origins. + These local monarchies evolved into feudal systems where peasants lived under oppressive conditions, enforced by M’sai enforcers. + Over centuries, noble families like the Njarir’Akhran solidified their control, hoarding technological and scientific advancements while imposing harsh laws. + Tensions between nobility and peasants escalated with industrialization in the 18th and 19th centuries. + The invention of the printing press in 1756 CE spread anti-monarchist sentiments despite strict censorship. + By the mid-20th century, industrialization exacerbated inequalities, with peasants laboring in mines and on railways for the nobles' benefit. + Resentment reached a peak, paving the way for revolution. + + Human discovery in 2418 CE introduced new ideas of equality and freedom, fueling Tajaran uprisings. + The First Revolution began in 2421 CE after a public execution incited armed rebellion. + By 2431 CE, the rebels, aided by defecting nobles like the Hadii family, overthrew the old order at the cost of over 92 million lives. + + The People's Republic of Adhomai was established under Hadii leadership in 2432 CE, backed by human corporations like NanoTrasen. + However, disagreements over resource control led to the Second Revolution in 2451 CE, resulting in a decade-long conflict. + By 2461 CE, a cold war emerged among three factions: the People's Republic, the Democratic People's Republic, and the New Kingdom of Adhomai. + + Today, Adhomai remains divided, marked by ongoing tensions, proxy wars, and an uneven modernization process. + While urban centers thrive, rural areas struggle, and foreign influence continues to shape the Tajaran future. + The species navigates a precarious path, torn between progress and the scars of its feudal past. + + + # Species Traits + + - [color=#1e90ff]Animal Diet[/color]: Tajara are poisoned by theobromine but can safely consume uncooked animal protein. + + - [color=#1e90ff]Cold Resistance[/color]: Tajara are more resilient to cold than humans, receiving [color=#1e90ff]35% less cold damage[/color] and [color=#1e90ff]tolerating lower temperatures[/color]. + + - [color=#1e90ff]Hairballs[/color]: Tajara can spit out hairballs, which cause others to vomit when held. + + - [color=#1e90ff]Claws[/color]: Tajara unarmed attacks deal Slash damage instead of Blunt. + + - [color=#1e90ff]Reflexes[/color]: Tajara take reduced damage from high-speed impacts. + + - [color=#1e90ff]Small Body[/color]: Tajara are small enough to fit in duffelbags. + + - [color=#1e90ff]Night Vision[/color]: Tajara can see in darkness. + + - [color=#1e90ff]Light Step[/color]: Thanks to their furred paw pads, Tajara can walk silently when not wearing shoes. + + - [color=#ffa500]Heat Intolerance[/color]: Tajara take [color=#ffa500]35% more Heat damage[/color] and burn more easily. They also [color=#ffa500]suffer more damage from overheating[/color]. + + - [color=#ffa500]Light Build[/color]: Their small stature makes Tajara take 15% more Brute damage, and they are lighter than humans. + + - [color=#ffa500]Weak Body[/color]: Tajara take 15% more stamina damage. + + - [color=#ffa500]Sensitive Eyes[/color]: Tajara are more vulnerable to flashes. + + - [color=#ffa500]Fast Metabolism[/color]: Tajara require more food to sustain themselves. + + + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/shadowkin.Lore.txt b/Resources/ServerInfo/Guidebook/Mobs/shadowkin.Lore.txt index e3cda6d77e..dc0d1e918f 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/shadowkin.Lore.txt +++ b/Resources/ServerInfo/Guidebook/Mobs/shadowkin.Lore.txt @@ -2,177 +2,68 @@ ## Biology -[color=#a88b5e]Physicality[/color] +[color=#a88b5e]Physical Appearance[/color] -Shadowkin seem very similar to canine species when looked at. -While mammalian in nature, it is nearly impossible to find any sexual dimorphism between genders, if they even have any. -They seem to all share the same body shape and often voices. +Shadowkin typically have dark fur covering their entire body with rare exceptions applying. +Their fur typically comes in black, dark grey, and deep purples but some shadowkin have been seen to have fur as white as the fresh snow. +Shadowkin also have long talons on their hands and feet, capable of rendering flesh from the bone with ease. +Along with all of this, they have fleshy tails covered in fur that can range from long and fluffy to short and coarse and everything in-between. -The head consists of a snout with a nose, sharp teeth in the mouth, and two big ears on top of the head. -In addition to the two big ears, Shadowkin have two smaller ears lower down, giving them an exceptionally good ability to detect where exactly sounds come from. +The two most notable features that shadowkin have are their large eyes and the four ears on the top of their head which typically make them stand out in even the largest crowds. +Their large ears help them with understanding and speaking their telepathic language of Empathy, a sort of hivemind that they all use. +The upper two ears, from what we can gauge, are responsible for transmitting the thoughts of shadowkin to other shadowkin. +This is in contrast to their lower two ears which are used to receive these messages and translate them for each individual shadowkin. +It is unclear how they work together but experiments have revealed that without all four ears intact, the entire system falls apart. -Shadowkin eyes are usually very large and fully mono-colored; they have no discernible pupils, irises, or similar. -The eye of a Shadowkin is a solid orb of color and, perhaps, their most defining trait. - -All observations show Shadowkin do not seem to age after a certain point. -Some may look older or younger than others, but the aging process seems to stop when the Shadowkin is chronologically in their 20s. - -Unusually, compiled medical data on Shadowkin shows that they have no lungs, thus not needing to breathe. -The compiled medical data also shows that they have a large, more circular shape where their lungs would be. +The large eyes of shadowkin have been seen to glow in the dark, the eye seemingly entirely made up of the iris without a noticeable pupil. +It is currently unknown how they see through these large eyes as they do not seem to change, but it is known that they seem to have improved night vision that's superior to that of other species'. +It's also to be noted that their large eyes seem to be more akin to two glowing orbs rather than proper eyes that a normal species would have, being a rarity and a desirable items for collectors, taxidermists, as well as other individuals who engage in black market and backroom deals. [color=#a88b5e]Mentality[/color] -Shadowkin core personalities are mirrored by their eye color. -Some common colors and their meanings are: - -- Red: Determined to reach a goal, even if it means sacrificing others. -- Green: Eager to learn and fit in with others. -- Blue: Very calm and collected, or shy. - -Other colors also exist in addition to these but are not as common. -The other colors are just mixes of the three main colors. -For example, here are a couple of mixes: - -- Purple: Determined, yet probably won't harm, in some cases shy. -- Yellow: Quite eager to be number one, especially if related to knowledge. -- Orange: Shy and calm, yet will fight if provoked. -- White: Very robust, exceeds expectations in most things they do, but is quite boring to interact with generally. +The mentality of shadowkin is typically mirrored by their eyes, different colors of their eyes meaning different things. +There are rare exceptions for this with shadowkin having different personalities than their eyes reflect but this is typically seen as more of a shameful birth defect than something that would be celebrated. +The eye colors that we know of that are possible are blue, red, yellow, green, purple, orange and black eyes. +These eyes may be solid colors, lighter or darker hues, and in rare cases they may have heterochromia which typically results in shaming from their society, friends, and other people in their lives. +Blue eyes denote shadowkin that are curious and eager for knowledge, typically they are those that are most likely to engage with outsiders and non-shadowkin. +Red eyes are those who are determined to reach a goal, not shying away from confrontation to reach it, often seen by others as violent and loose cannons. +Yellow eyed shadowkin are very cautious, unlikely to engage with non-shadowkin, preferring to stick to the dark and shadowy places sooner than go out into the light and expose themselves. +Green eyes mean they’re eager for knowledge but more reserved and cautious, sometimes seen acting through proxies rather than actively interacting with non-shadowkin themselves. +Purple suggests they’re eager learners who are willed to seek out knowledge more directly than others, being the complete opposite of green as they're often determined to go straight to the source rather than being satisfied with second-hand accounts or knowledge. +Orange-eyed shadowkin are traditionally reserved people who pursue their goals from hiding but will fight when cornered, they're often seen with a small and tight clique of trusted acquaintances who they act through rather than show their face in public. -There are rumors other colors exist as well. -Shadowkin that lose their ability to travel between dimensions have [color=#000000]black eyes[/color] no matter their core personality. -These black-eyed Shadowkin make up the largest number of them living in Realspace. +Black eyes are shadowkin that have been disconnected from the Dark for whatever reason, they are shunned by all but the most forward-thinking shadowkin as a result. +The closest equivalent for black-eyed shadowkin is organics who have been mindbroken, their souls having been torn out of their bodies and the Dark long since having left them. ## History -Shadowkin are creatures native to their so-called Pocket Dimension, a part of space that is unable to be accurately pinpointed and/or visited by most people. -From there, Shadowkin visit our worlds, and sometimes a large number of them are forced into our world in mass migrations and then live among us. -What exactly causes these mass migrations is unknown, but may be related to them losing their ability to travel between dimensions. - -[color=#a88b5e]Homeworld[/color] - -While no home system or world has been found, some Shadowkin talk about dreaming of their homeworld, describing a lush and green land with abundant resources. - -[color=#a88b5e]Racial/Government Status[/color] - -There currently exists no Shadowkin government, and with Shadowkin being as rare as they are, they tend to fit into currently established societies and civilizations, with varying degrees of success in the past. -In recent years, however, many cultures have taken to accepting Shadowkin as another galactic constant, going as far as allowing them lives similar to those that any of the other species would lead. +[color=#a88b5e]Home Dimension[/color] -Some systems early on took and experimented on Shadowkin, in an attempt to utilize their powers in various technology, and even recreating them with very experimental technology. -The tests failed and this was met with a lot of resistance from Shadowkin, many of them being killed or becoming Blackeyes in the process. -After this, those systems realized that Shadowkin were a sentient species, and deeply apologized for their actions. +It is known that shadowkin are native to a dimension called "the Dark" with not much else known about their native dimension because of their hesitancy to speak about anything regarding it. +We do know that the Dark is something of a shadowkin hub where they can go to other dimensions, albeit after having to recover their energy for decades as dimension travel takes a long toll on them. +What we do know about the Dark is that it's a place devoid of all light and air, seeming to have no pressure either. +We also know that all shadowkin are born in the Dark and that it's where they go in order to give birth how animals on earth do. +It is also suspected that the Dark is the physical manifestation of the nöösphere but that is currently unconfirmed as we don't know enough about either to make an educated decision. ## Culture -[color=#a88b5e]The Typical Experience[/color] - -Most times, life is pretty normal. A Shadowkin can have a job, go to the job to work, then spend time off with friends. -The fact is most times of the day, the small abilities one might have are nice, but not overly useful. Sure, a Shadowkin could dim the nearby lights, but at the same time, the Shadowkin could also just flick the light switch. -However, it can sometimes happen that when a Shadowkin slept in and needs to get to work quickly, they might just teleport to work. -Some people might be overly wary of Shadowkin, some might be drawn towards Shadowkin. -Many Shadowkin are used to not wearing clothes, which can lead to some awkward situations, but those are generally the same situations any other furred species would have. - [color=#a88b5e]Language[/color] -The only recorded spoken language of the Shadowkin is an unusual language named "Mar", named after the fact that every single word in this language is the word "mar". -Spoken in different tones, with more or less emphasis on the various parts, or by drawing out parts of this word, a multitude of different "mar"s can be created, but they follow no apparent conventions. -Shadowkin can perfectly understand each other though and discuss complex topics using only this one word. -The Shadowkin can hear the Mar language from anywhere and understand it via Empathy, yet do not know who it is from unless they are close enough to see the sender. -Other humanoid species are incapable of understanding or learning Mar, as they are unable to accentuate their speech in the same way or hear some of the silent, Empathic tones they use. -Shadowkin tend to learn one or more languages of the Realspace beings. -The capability in such learned languages depends fully on each single Shadowkin, where some have only very broken capabilities, while others are fluent in several languages. +We are only aware of the spoken language of the shadowkin which is Marish, typically consisting of the "mar" sound along with slight variations in order to produce different words. +Some common sounds alongside "mar" that have been observed are also "war" and "lmar" or "lwar" amongst other sounds that are used to combine to make words and a functioning language for shadowkin. +Attempts have been made to record and play back Marish for research purposes but attempts have so far been unssuccessful for unknown reasons. +When attempting to play back Marish, the recording seems to come out odd and disjointed without the intricacies of the original MArish that it was recorded from. [color=#a88b5e]Naming Conventions[/color] -Shadowkin tend to name themselves with a singular word, ranging from states of being, such as Lone and Collected, to words that describe their memories connected to their supposed homeworld, like Dreamer. -Name schemes of the humans are usually frowned upon, as they do not reflect upon the Shadowkin, resulting in reactions ranging anywhere from an actual frown to being entirely ignored. -Shadowkin following another species naming scheme are often Blackeyes, not fitting in with other Shadowkin as well. -Names hold a great deal for Shadowkin because of how closely they are often tied to describing who they are. -Following life-changing events, Shadowkin often change their names to reflect the new person they have become. - -[color=#a88b5e]Rumors and Speculation[/color] - -Shadowkin are beings from another dimension, capable of performing feats that others could only describe as "magic", with no scientific explanation. -It is speculated that Shadowkin actually have a whole nation in their dimension, and those that come to Realspace just simply refuse to talk about it. -Sometimes Shadowkin mention a "Hub", acting as evidence for this theory. - -Some believe Shadowkin are the result of experimentation, though them being taken and experimented on is a large piece of evidence denying this theory. - -Some believe Shadowkin are the result of an expedition crew that disappeared hundreds of years ago, even though the first Shadowkin sightings were long before that. -Obviously, this expedition ship performed time travel. - -## OOC Notes - -Extra information, should be read if playing Shadowkin, if not you should try to learn this in gameplay. - -[color=#a88b5e]History[/color] - -Shadowkin used to live on a very lush forest planet, using primitive technology to work with metal, create tools, and build stone structures. -According to the dreams, Shadowkin back then had forged tools and blades, but had no electricity, presumably putting them at a medieval technology level. -In a sudden event, everyone and everything organic suddenly found themselves in an alternate dimension, sucked straight out of their previous home. -The Shadowkin being ripped from their homes happened in three total "dimensional ripples". - -Now stuck in this alternate dimension, Shadowkin changed a lot. -They stopped aging and with time developed the ability to use the energy of this dimension to power their unusual "magic". -And even later, they learned how to leave the dimension and travel to Realspace and back again. -However, as the eons passes, memories became shady of their home. -Many Shadowkin forgot more and more about the thousands of years they had lived, reducing memory to focus on the more important closer time. -However in dreams, Shadowkin, even those born in Realspace, often have visions of their home planet. -Some events can trigger certain memories to return like meeting someone they knew from the past makes them remember in great detail who they are. -As such, it can happen that two Shadowkin can randomly meet and remember that they met hundreds of years ago, often confusing nearby unknowing humanoids. - -[color=#a88b5e]Biology[/color] - -If a Shadowkin personality changes drastically, their eye color will change as an effect, reflecting upon their new personality. -Shadowkin, being ageless entities, can look older or younger, but that is merely a visual representation of how they feel about their age. -22 years after birth a Shadowkin stops aging, and in all of their history no instance of them dying of old age has been recorded. - -[color=#a88b5e]Shadowkin energy[/color] - -Shadowkin have an odd organ in them, their "Core". -This organ is the source and storage place for their power. -Without it, they would be unable to use their abilities. -The Core is very sensitive to physical trauma, yet is very resilient to electrical or magical damage. -The Core can get irreversibly destroyed from overloading it, using too much power too quickly, which is what happens to the Blackeyes. -The Core can not be replaced, using a new one would require a new body, and trying to use another Shadowkin Core will result in death. - -The Shadowkin's ability to fall into a deep sleep is a method to recharge their energy at a significantly higher rate than idling. -Though while in this deep sleep, it is difficult to wake up, and cannot be woken up by anything other than themself. - -Shadowkin can know exactly how much energy they have, and feel differently based on how much they have. -They can also Empathically sense the energy of others nearby and can estimate how much energy they have based on their feelings. - -[color=#a88b5e]Shadowkin Abilities[/color] - -Shadowkin have a few abilities. -They can teleport, requiring a small amount of energy, but they can do it quickly. -They can teleport to and from The Dark, requiring much more energy than teleportation. -They can immediately fall into a deep sleep at any time. - -[color=#a88b5e]The Ritual[/color] - -When a Shadowkin reaches adulthood, they undergo a "Ritual". -During this Ritual they intentionally overload their energy reserves, forcing their capacity to expand rapidly in order to gain enough energy to travel between dimensions. -Most Shadowkin pass the Ritual and that's the end of it, but some Shadowkin perish or become Blackeyes during the ritual. - -[color=#a88b5e]Important Terminology[/color] - -[color=#a88b5e]Shadowkin:[/color] -The name given for your race. -While your race doesn't have a name for itself, this is how most of the Galaxy refers to you, so it's how you refer to yourself too. - -[color=#a88b5e]The Dark:[/color] -The other dimension where you are from. -There are theories that The Dark and Bluespace are connected, but you don't know the details about that. -The Dark is a dimension where strange rules apply. -For outsiders who somehow enter it, whatever they imagine being in there, they see there, if not too complex. -If an outsider comes with a willing Shadowkin they may see what the Shadowkin sees, being anything they imagine, or a reflection of the station. - -[color=#a88b5e]Blackeyes:[/color] -A Shadowkin who has undergone and failed the Ritual, or lost their ability via other methods. -The Blackeyes have completely black eyes, no matter their actual personality. -They choose a new name, which follows a favorite species' naming scheme. -They are often ignored or left alone more by other Shadowkin. -[color=#a88b5e]Note:[/color] Blackeyes correlation with black eyes is done entirely via roleplay, the game will not handle this for you. - -[color=#a88b5e]Mar:[/color] -A word used to verbally communicate feelings, emotions, wishes, hopes, ideas, and whatever, in addition to your Empathy. \ No newline at end of file +Shadowkin largely have two schools of thought when it comes to naming their children, both equally popular and common in our dimension as well as back home from what we were able to glean. +Above all else, shadowkin typically only have a single name with a second name only being appended by a tribe elder upon the completion of a task that is monumental or otherwise heroic. +Regardless of what school of thought shadowkin subscribe to, their names are typically given to them by their mother except in cases which the mother dies during childbirth which is when the father will give the shadowkin their name. +Traditionalists are the first school of thought when it comes to naming shadowkin, they believe that names should be in Marish and have unique meanings like those that are normal amongst humans. +A name that would fit the traditionalist view would be Maaarlwarmar which means "first beginning" or "genesis" because they were the firstborn of their mother. +Conversely, there is the worker school of thought who believe that the names for shadowkin should reflect their designated job in a tribe or a society. +Names can be as simple as those such as "Baker" or "Hunter" which are quite obvious to those which are obscure such as "Ash" or "Ember" for engineers. +Traditionally, names like these are given at birth because that's what the tribe has already determined them to be as that is what the need will be by the time they grow up. +There is a more modern subsect of the worker school that is primarily composed of young shadowkin eager for change in their society, they have elected to choose their own jobs and as such ther own names despite being the vast minority & often looked down upon. +Finally, there is the more liberal school of thought which believes that shadowkin should adopt names that reflect the popular culture of the dimension that they belong to. +These shadowkin are a vast minority in our dimension and in shadowkin society as a whole so they are extremely few and far between as a result. diff --git a/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/equipped-EYES.png new file mode 100644 index 0000000000..1c1f4a830c Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/icon.png new file mode 100644 index 0000000000..df2d0b7790 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/inhand-left.png new file mode 100644 index 0000000000..9a9fd68d55 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/inhand-right.png new file mode 100644 index 0000000000..1b4867ad28 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/meta.json new file mode 100644 index 0000000000..663a6be032 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/epiglasses.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Recolored by CerberusWolfie but taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/equipped-EYES.png new file mode 100644 index 0000000000..92d769cebf Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/icon.png new file mode 100644 index 0000000000..3d0bc5a214 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/inhand-left.png new file mode 100644 index 0000000000..81927119bb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/inhand-right.png new file mode 100644 index 0000000000..070927cd6e Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/meta.json new file mode 100644 index 0000000000..920314b00b --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/epi.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Recolored by CerberusWolfie but taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/equipped-HAND.png new file mode 100644 index 0000000000..9dc8e63a73 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/icon.png new file mode 100644 index 0000000000..1906b6b595 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/inhand-left.png new file mode 100644 index 0000000000..2016841f04 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/inhand-right.png new file mode 100644 index 0000000000..7bf0e1e75a Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/meta.json new file mode 100644 index 0000000000..e28954bcef --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Envirogloves/hop.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Inhand and equipped taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy for Space Station 14 and modified by Skubman | Icon taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c77c50ae3d19e763c60c44e75c7bf9d61e333875", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..873fa47b2b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/icon-flash.png new file mode 100644 index 0000000000..edc62605ae Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/icon.png new file mode 100644 index 0000000000..982f408102 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/meta.json new file mode 100644 index 0000000000..21fd8d52aa --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "visor-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/visor-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/visor-equipped-HELMET.png new file mode 100644 index 0000000000..6c86bc9ecb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ancientvoid.rsi/visor-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..6c3e99f111 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/icon.png new file mode 100644 index 0000000000..1abcea97c4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/atmos.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..2988ab5d96 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/icon.png new file mode 100644 index 0000000000..4e39d2d54b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/meta.json new file mode 100644 index 0000000000..efe0ef824e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/captain.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..b337689898 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/icon.png new file mode 100644 index 0000000000..e7a4d554b2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cargo.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..baf8c4a5ed Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/icon.png new file mode 100644 index 0000000000..2644d0774c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/ce.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..43ced855d8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/icon.png new file mode 100644 index 0000000000..ebf672af7a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_agent.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..1786d88729 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/icon.png new file mode 100644 index 0000000000..6f7c4bdc54 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_officer.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..ff26b7a61c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/icon.png new file mode 100644 index 0000000000..2d8f37ab00 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/centcom_official.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..51e2292e5f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/icon.png new file mode 100644 index 0000000000..216c812a23 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chaplain.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..3c845ae012 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/icon.png new file mode 100644 index 0000000000..17b1b704af Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/chemist.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..bbe11f6c75 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/icon-flash.png new file mode 100644 index 0000000000..a59d97aca6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/icon.png new file mode 100644 index 0000000000..f5ad4ede17 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..ba076ac700 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/clown.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..3a6e85f8a9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/icon.png new file mode 100644 index 0000000000..0dd662f8b1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/cmo.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..1ed81414a2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/icon.png new file mode 100644 index 0000000000..b2f56d6003 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/coroner.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-equipped-HELMET.png new file mode 100644 index 0000000000..f89fa545ab Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-icon.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-icon.png new file mode 100644 index 0000000000..c596f99210 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-inhand-left.png new file mode 100644 index 0000000000..dc1f29bb64 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-inhand-right.png new file mode 100644 index 0000000000..c480d547c1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/accent-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..cd9f533851 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/icon.png new file mode 100644 index 0000000000..3340f25bf7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/inhand-left.png new file mode 100644 index 0000000000..a3075b2ec6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/inhand-right.png new file mode 100644 index 0000000000..1875428f9e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/meta.json new file mode 100644 index 0000000000..4d255a09c2 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/meta.json @@ -0,0 +1,101 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "accent-icon" + }, + { + "name": "accent-equipped-HELMET", + "directions": 4 + }, + { + "name": "accent-inhand-left", + "directions": 4 + }, + { + "name": "accent-inhand-right", + "directions": 4 + }, + { + "name": "midaccent-icon" + }, + { + "name": "midaccent-equipped-HELMET", + "directions": 4 + }, + { + "name": "midaccent-inhand-left", + "directions": 4 + }, + { + "name": "midaccent-inhand-right", + "directions": 4 + }, + { + "name": "sideaccent-icon" + }, + { + "name": "sideaccent-equipped-HELMET", + "directions": 4 + }, + { + "name": "sideaccent-inhand-left", + "directions": 4 + }, + { + "name": "sideaccent-inhand-right", + "directions": 4 + }, + { + "name": "visor-icon" + }, + { + "name": "visor-equipped-HELMET", + "directions": 4 + }, + { + "name": "visor-inhand-left", + "directions": 4 + }, + { + "name": "visor-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-equipped-HELMET.png new file mode 100644 index 0000000000..b771b180ec Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-icon.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-icon.png new file mode 100644 index 0000000000..47539bdc2d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-inhand-left.png new file mode 100644 index 0000000000..5b3c26d83f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-inhand-right.png new file mode 100644 index 0000000000..6b115e0761 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/midaccent-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-inhand-left.png new file mode 100644 index 0000000000..4a8eb60ec9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-inhand-right.png new file mode 100644 index 0000000000..873df838b6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-equipped-HELMET.png new file mode 100644 index 0000000000..82667eae95 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-icon.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-icon.png new file mode 100644 index 0000000000..9bd507ef72 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-inhand-left.png new file mode 100644 index 0000000000..92cedcaf60 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-inhand-right.png new file mode 100644 index 0000000000..5e1ba883a2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/sideaccent-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-equipped-HELMET.png new file mode 100644 index 0000000000..24d3d7be89 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-icon.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-icon.png new file mode 100644 index 0000000000..57ce267b03 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-inhand-left.png new file mode 100644 index 0000000000..f6588ba800 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-inhand-right.png new file mode 100644 index 0000000000..907076897a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/custom.rsi/visor-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..5c947d4bbd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/icon.png new file mode 100644 index 0000000000..a3eb92f19a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/engineering.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..10a0987784 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/icon.png new file mode 100644 index 0000000000..8677f71e46 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/genetics.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..9ed1e3eb79 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/icon.png new file mode 100644 index 0000000000..fe9eeb3188 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hop.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..1d55bd5270 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/icon.png new file mode 100644 index 0000000000..9c39ef411c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hos.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..350de2ebc7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/icon.png new file mode 100644 index 0000000000..2a4b193b2b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/hydroponics.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..4a05589b5f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/icon.png new file mode 100644 index 0000000000..0236e6542f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/janitor.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..f826d404a9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/icon.png new file mode 100644 index 0000000000..b0461d1493 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/medical.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..06e5cb09fb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/icon-flash.png new file mode 100644 index 0000000000..f3ccec3bf6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/icon.png new file mode 100644 index 0000000000..f1b689db8c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..2ea6a40eac Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/mime.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..ee7ed60958 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/icon.png new file mode 100644 index 0000000000..0c95650ed0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/paramedic.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..59f1e4f8ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/icon.png new file mode 100644 index 0000000000..474e3fba57 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/inhand-left.png new file mode 100644 index 0000000000..d5202b8068 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/inhand-right.png new file mode 100644 index 0000000000..7446843492 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/meta.json new file mode 100644 index 0000000000..62bc618b9f --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-inhand-left.png new file mode 100644 index 0000000000..4a8eb60ec9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-inhand-right.png new file mode 100644 index 0000000000..873df838b6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/plain.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..5af3beb5a4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/icon.png new file mode 100644 index 0000000000..2d5d6c394a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/rd.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..8ed2259d5f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/icon.png new file mode 100644 index 0000000000..4a39bcf7c6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/roboticist.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..a826d42142 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/icon-flash.png new file mode 100644 index 0000000000..698c4ff6e4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/icon.png new file mode 100644 index 0000000000..ce4c2d0022 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..b28f42716d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/salvage.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..63154766a7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/icon.png new file mode 100644 index 0000000000..7e08f6d19d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/scientist.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..bb70ade705 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/icon.png new file mode 100644 index 0000000000..13dc3f4679 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/meta.json new file mode 100644 index 0000000000..86ae56f226 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/tacticool.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..db8cc9f835 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/icon.png new file mode 100644 index 0000000000..2cba69dd88 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/virology.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..c18f183d46 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/icon.png new file mode 100644 index 0000000000..dae944c5ef Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/warden.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..e73142d46f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/icon-flash.png new file mode 100644 index 0000000000..3580b91f59 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/icon.png b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/icon.png new file mode 100644 index 0000000000..3c2f355d66 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/meta.json b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/meta.json new file mode 100644 index 0000000000..83a0683d0e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..adfa03a3d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Envirohelms/white.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-harpy.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-harpy.png new file mode 100644 index 0000000000..87cf296241 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-harpy.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-light-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-light-vox.png new file mode 100644 index 0000000000..879ce40a74 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-light-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-light.png new file mode 100644 index 0000000000..9f75f28c05 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded-vox.png new file mode 100644 index 0000000000..40f2eca45a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..b63e309934 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded.png new file mode 100644 index 0000000000..4ba7fc7b74 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-vox.png new file mode 100644 index 0000000000..1269ca2cbd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..193c554683 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head.png new file mode 100644 index 0000000000..70df4e652e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/equipped-head.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon-flash.png new file mode 100644 index 0000000000..5a87469f43 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon-unshaded.png new file mode 100644 index 0000000000..4723be70cb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon.png new file mode 100644 index 0000000000..a45af90f55 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/light-overlay.png new file mode 100644 index 0000000000..5347ab016e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/meta.json new file mode 100644 index 0000000000..a054b59a61 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-base.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-unshaded" + }, + { + "name": "icon-flash" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-head", + "directions": 4 + }, + { + "name": "equipped-head-light", + "directions": 4 + }, + { + "name": "equipped-head-unshaded", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vox", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-vox", + "directions": 4 + }, + { + "name": "equipped-head-light-vox", + "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-harpy", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-light.png new file mode 100644 index 0000000000..9161967d06 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-unshaded-vox.png new file mode 100644 index 0000000000..7a1bb5e419 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-unshaded.png new file mode 100644 index 0000000000..b42bda0a5c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-vox.png new file mode 100644 index 0000000000..d2a9b79b09 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head.png new file mode 100644 index 0000000000..309924b19d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/equipped-head.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/icon-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/icon-unshaded.png new file mode 100644 index 0000000000..4883317d57 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/icon-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/icon.png new file mode 100644 index 0000000000..6b5b13b889 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/light-overlay.png new file mode 100644 index 0000000000..10425cf553 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/meta.json new file mode 100644 index 0000000000..7660b5d82e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-base.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-unshaded" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-head", + "directions": 4 + }, + { + "name": "equipped-head-light", + "directions": 4 + }, + { + "name": "equipped-head-unshaded", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vox", + "directions": 4 + }, + { + "name": "equipped-head-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-light.png new file mode 100644 index 0000000000..17118f0ae1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-unshaded-vox.png new file mode 100644 index 0000000000..4329d5f3ef Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-unshaded.png new file mode 100644 index 0000000000..11ce9224a0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-vox.png new file mode 100644 index 0000000000..a6ea444c71 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head.png new file mode 100644 index 0000000000..2ca6eaad80 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/equipped-head.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/icon-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/icon-unshaded.png new file mode 100644 index 0000000000..d11ed51978 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/icon-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/icon.png new file mode 100644 index 0000000000..2364edfc14 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/light-overlay.png new file mode 100644 index 0000000000..239a7de749 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/meta.json new file mode 100644 index 0000000000..7660b5d82e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate-elite-base.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-unshaded" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-head", + "directions": 4 + }, + { + "name": "equipped-head-light", + "directions": 4 + }, + { + "name": "equipped-head-unshaded", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vox", + "directions": 4 + }, + { + "name": "equipped-head-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/NTmono.png b/Resources/Textures/Clothing/Multiple/towel.rsi/NTmono.png new file mode 100644 index 0000000000..e293a0e7e9 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/NTmono.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-BELT.png new file mode 100644 index 0000000000..6ccb1f26ae Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..769f67b9a0 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..6105c8aba1 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/icon.png b/Resources/Textures/Clothing/Multiple/towel.rsi/icon.png new file mode 100644 index 0000000000..c5c73e1060 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/iconstripe.png b/Resources/Textures/Clothing/Multiple/towel.rsi/iconstripe.png new file mode 100644 index 0000000000..334d3f3531 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/iconstripe.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-left.png b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-left.png new file mode 100644 index 0000000000..4c8b4428ae Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-right.png b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-right.png new file mode 100644 index 0000000000..7ef955ba5f Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/meta.json b/Resources/Textures/Clothing/Multiple/towel.rsi/meta.json new file mode 100644 index 0000000000..95acda0af3 --- /dev/null +++ b/Resources/Textures/Clothing/Multiple/towel.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Baystation12 at commit https://github.com/Baystation12/Baystation12/commit/c5dc6953e6e1fde87c2ded60038144f1d21fbd48", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "iconstripe" + }, + { + "name": "NTmono" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-harpy.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-harpy.png new file mode 100644 index 0000000000..840b692f78 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-harpy.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-lamia.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-lamia.png new file mode 100644 index 0000000000..356373bffa Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-lamia.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png new file mode 100644 index 0000000000..c96244bdcb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-unshaded.png new file mode 100644 index 0000000000..24f39e148f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-unshaded.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f3cc5c1c5a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..e6617f66b7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/icon.png new file mode 100644 index 0000000000..0c7e7c53f6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/inhand-left.png new file mode 100644 index 0000000000..4f413137e7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/inhand-right.png new file mode 100644 index 0000000000..7491ac0e89 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/meta.json new file mode 100644 index 0000000000..b9364bc058 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, harpy version by VMSolidus. Vox state made by Flareguy for SS14, lamia & segment by @noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-lamia", + "directions": 4 + }, + { + "name": "segment" + }, + { + "name": "equipped-OUTERCLOTHING-unshaded", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-harpy", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/segment.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/segment.png new file mode 100644 index 0000000000..c54456d051 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-base.rsi/segment.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-harpy.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-harpy.png new file mode 100644 index 0000000000..da19b2ea88 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-harpy.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-lamia.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-lamia.png new file mode 100644 index 0000000000..96d2eefdf5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-lamia.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-monkey.png new file mode 100644 index 0000000000..d5eb410158 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png new file mode 100644 index 0000000000..025762bfc5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-lamia.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-lamia.png new file mode 100644 index 0000000000..6accb76fe1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-lamia.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-monkey.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-monkey.png new file mode 100644 index 0000000000..56012c8322 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded-monkey.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded.png new file mode 100644 index 0000000000..43976fc30b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-unshaded.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1a9a83b0e3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..2929bc7445 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/icon.png new file mode 100644 index 0000000000..4e01ea2575 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/inhand-left.png new file mode 100644 index 0000000000..61891e0c63 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/inhand-right.png new file mode 100644 index 0000000000..b3c54645d3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/meta.json new file mode 100644 index 0000000000..b9ee9dce22 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/meta.json @@ -0,0 +1,61 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, harpy version by VMSolidus. Vox state made by Flareguy for SS14, lamia & segment by @noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-lamia", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "segment" + }, + { + "name": "equipped-OUTERCLOTHING-unshaded", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-lamia", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-monkey", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/segment.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/segment.png new file mode 100644 index 0000000000..679b1f2433 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-base.rsi/segment.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-harpy.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-harpy.png new file mode 100644 index 0000000000..06fd3219be Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-harpy.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-lamia.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-lamia.png new file mode 100644 index 0000000000..4e65118bfa Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-lamia.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png new file mode 100644 index 0000000000..c35db22b85 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-harpy.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-lamia.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-lamia.png new file mode 100644 index 0000000000..2bf5677ef4 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-lamia.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-vox.png new file mode 100644 index 0000000000..5f5e69e820 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded.png new file mode 100644 index 0000000000..224f6d4647 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-unshaded.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..149c2fdd9c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..b9e0f8e4c0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/icon.png new file mode 100644 index 0000000000..425c7acd47 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/inhand-left.png new file mode 100644 index 0000000000..00a6f6708a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/inhand-right.png new file mode 100644 index 0000000000..ab7b69ecdb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/meta.json new file mode 100644 index 0000000000..cdd3a550e7 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, harpy version by VMSolidus. Vox state made by Flareguy for SS14, lamia & segment by @noctyrnal", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-lamia", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "segment" + }, + { + "name": "equipped-OUTERCLOTHING-unshaded", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-lamia", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded-vox", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/segment.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/segment.png new file mode 100644 index 0000000000..604fafb132 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate-elite-base.rsi/segment.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..16d3ec02c5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/icon.png new file mode 100644 index 0000000000..9277423151 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/ancientvoid.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..43ddf4a578 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/icon.png new file mode 100644 index 0000000000..08a25d0bce Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/atmos.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..26258a7006 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/icon.png new file mode 100644 index 0000000000..2cb5f54b77 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/meta.json new file mode 100644 index 0000000000..a730d09891 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/blueshield_officer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/commit/b55bef2ed28b8bde30883fb14311b221ab0dc977 and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..9332939422 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/icon.png new file mode 100644 index 0000000000..594ba5a9e4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/meta.json new file mode 100644 index 0000000000..e669a6403e --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/captain.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..d31317d5e5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/icon.png new file mode 100644 index 0000000000..465c819c20 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/cargo.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..d71154821f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/icon.png new file mode 100644 index 0000000000..759670ef07 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/ce.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..c74fe2b800 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/icon.png new file mode 100644 index 0000000000..6a9940326d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_agent.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..c57ecfe5eb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/icon.png new file mode 100644 index 0000000000..4a7e1f31bd Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_officer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..2b169155c9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/icon.png new file mode 100644 index 0000000000..c8f010a368 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/centcom_official.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..6cae82165f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/icon.png new file mode 100644 index 0000000000..7f6c7ee109 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/chaplain.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..7810f37d2c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/icon.png new file mode 100644 index 0000000000..c9d6114ea7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/chef.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..b9c4c0327e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/icon.png new file mode 100644 index 0000000000..8e0dad6a3b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/chemist.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..5b1d0f39d5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/icon.png new file mode 100644 index 0000000000..f28976a3da Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/clown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..4e8be768c7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/icon.png new file mode 100644 index 0000000000..7eb85c8dd2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/cmo.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..c48495a6d5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/icon.png new file mode 100644 index 0000000000..dc5dc934c5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/coroner.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..89e252f7d4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-icon.png new file mode 100644 index 0000000000..21d362fa6a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-inhand-left.png new file mode 100644 index 0000000000..2ff08cc237 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-inhand-right.png new file mode 100644 index 0000000000..9e11e06718 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..eb13f68b9e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-icon.png new file mode 100644 index 0000000000..8b5586b03f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-inhand-left.png new file mode 100644 index 0000000000..53e2eaa867 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-inhand-right.png new file mode 100644 index 0000000000..c3aadd5b86 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..e1b24b41cc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-icon.png new file mode 100644 index 0000000000..bbc3d21aae Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-inhand-left.png new file mode 100644 index 0000000000..bd8a0e7cad Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-inhand-right.png new file mode 100644 index 0000000000..b000ed7ec7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent2_chestonly-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..93bee36bd5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-icon.png new file mode 100644 index 0000000000..384286f395 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-inhand-left.png new file mode 100644 index 0000000000..0c0017dde5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-inhand-right.png new file mode 100644 index 0000000000..c7b68db12c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..fff2774616 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-icon.png new file mode 100644 index 0000000000..2cb85e632f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-inhand-left.png new file mode 100644 index 0000000000..e1975815e2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-inhand-right.png new file mode 100644 index 0000000000..fea004b30b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accent3_chestonly-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentalt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentalt-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..3fa4884328 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentalt-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentalt_noback-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentalt_noback-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..01a3666be1 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentalt_noback-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..a7a23ec3c9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-icon.png new file mode 100644 index 0000000000..4b3249fe20 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-inhand-left.png new file mode 100644 index 0000000000..987cbdb733 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-inhand-right.png new file mode 100644 index 0000000000..ff81d2d0b3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accenthighlight-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..64b70260c7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-icon.png new file mode 100644 index 0000000000..9a49ad2d09 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-inhand-left.png new file mode 100644 index 0000000000..afdd7622c7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-inhand-right.png new file mode 100644 index 0000000000..a390285775 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/accentprisoner-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/backaccent-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/backaccent-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..e6776137d5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/backaccent-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..7351de7e21 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-icon.png new file mode 100644 index 0000000000..473510a86f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-inhand-left.png new file mode 100644 index 0000000000..a5ece79a5c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-inhand-right.png new file mode 100644 index 0000000000..363fceada4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/belt-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..fc98cadb90 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-icon.png new file mode 100644 index 0000000000..f70ea45de9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-inhand-left.png new file mode 100644 index 0000000000..a95ce71374 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-inhand-right.png new file mode 100644 index 0000000000..e091c45504 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..c50769249b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-icon.png new file mode 100644 index 0000000000..0091012bb9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-inhand-left.png new file mode 100644 index 0000000000..83664d1486 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-inhand-right.png new file mode 100644 index 0000000000..fe8b1bf970 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/beltbuckle_small-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..8060fdd544 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-icon.png new file mode 100644 index 0000000000..f09673433c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-inhand-left.png new file mode 100644 index 0000000000..aa90e95dc5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-inhand-right.png new file mode 100644 index 0000000000..9be9ecbf60 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/buttons-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..7b84f544da Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-icon.png new file mode 100644 index 0000000000..5cb2a361c0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-inhand-left.png new file mode 100644 index 0000000000..c8461c2d92 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-inhand-right.png new file mode 100644 index 0000000000..226a816774 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..026af9dc7e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-icon.png new file mode 100644 index 0000000000..090bf7274d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-inhand-left.png new file mode 100644 index 0000000000..29c74bdf83 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-inhand-right.png new file mode 100644 index 0000000000..c45549adf3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/clip_right-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..e787a2c9f6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-icon.png new file mode 100644 index 0000000000..ad3624500d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-inhand-left.png new file mode 100644 index 0000000000..ae6c4e7861 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-inhand-right.png new file mode 100644 index 0000000000..104a6b2a06 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/corneraccent-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/cuffs-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/cuffs-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..12b2750942 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/cuffs-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/cuffs_upper-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/cuffs_upper-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..9567633b9b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/cuffs_upper-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..69ff51e103 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..4cec655e64 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-icon.png new file mode 100644 index 0000000000..95251ce244 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-inhand-left.png new file mode 100644 index 0000000000..a4fcf07fb9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-inhand-right.png new file mode 100644 index 0000000000..32f62714ce Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/heart-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/icon.png new file mode 100644 index 0000000000..a42baf390d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/inhand-left.png new file mode 100644 index 0000000000..1f2a705a58 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/inhand-right.png new file mode 100644 index 0000000000..41e57d6149 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..33ff060a92 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..d25487ab7c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2_bottom-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2_bottom-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..c066a49092 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2_bottom-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2_top-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2_top-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..f9bbed4068 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/loweraccent2_top-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/meta.json new file mode 100644 index 0000000000..576d5c219b --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/meta.json @@ -0,0 +1,374 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "accent-icon" + }, + { + "name": "accent-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accent-inhand-left", + "directions": 4 + }, + { + "name": "accent-inhand-right", + "directions": 4 + }, + { + "name": "accent2-icon" + }, + { + "name": "accent2-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accent2-inhand-left", + "directions": 4 + }, + { + "name": "accent2-inhand-right", + "directions": 4 + }, + { + "name": "accent2_chestonly-icon" + }, + { + "name": "accent2_chestonly-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accent2_chestonly-inhand-left", + "directions": 4 + }, + { + "name": "accent2_chestonly-inhand-right", + "directions": 4 + }, + { + "name": "accent3-icon" + }, + { + "name": "accent3-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accent3-inhand-left", + "directions": 4 + }, + { + "name": "accent3-inhand-right", + "directions": 4 + }, + { + "name": "accent3_chestonly-icon" + }, + { + "name": "accent3_chestonly-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accent3_chestonly-inhand-left", + "directions": 4 + }, + { + "name": "accent3_chestonly-inhand-right", + "directions": 4 + }, + { + "name": "accentprisoner-icon" + }, + { + "name": "accentprisoner-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accentprisoner-inhand-left", + "directions": 4 + }, + { + "name": "accentprisoner-inhand-right", + "directions": 4 + }, + { + "name": "accenthighlight-icon" + }, + { + "name": "accenthighlight-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accenthighlight-inhand-left", + "directions": 4 + }, + { + "name": "accenthighlight-inhand-right", + "directions": 4 + }, + { + "name": "accentalt-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "accentalt_noback-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "backaccent-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "loweraccent-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "loweraccent2-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "loweraccent2_bottom-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "loweraccent2_top-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "pin-icon" + }, + { + "name": "pin-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "pin-inhand-left", + "directions": 4 + }, + { + "name": "pin-inhand-right", + "directions": 4 + }, + { + "name": "buttons-icon" + }, + { + "name": "buttons-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "buttons-inhand-left", + "directions": 4 + }, + { + "name": "buttons-inhand-right", + "directions": 4 + }, + { + "name": "plaintop-icon" + }, + { + "name": "plaintop-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "plaintop-inhand-left", + "directions": 4 + }, + { + "name": "plaintop-inhand-right", + "directions": 4 + }, + { + "name": "tie-icon" + }, + { + "name": "tie-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "tie-inhand-left", + "directions": 4 + }, + { + "name": "tie-inhand-right", + "directions": 4 + }, + { + "name": "tieclip-icon" + }, + { + "name": "tieclip-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "tieclip-inhand-left", + "directions": 4 + }, + { + "name": "tieclip-inhand-right", + "directions": 4 + }, + { + "name": "clip-icon" + }, + { + "name": "clip-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "clip-inhand-left", + "directions": 4 + }, + { + "name": "clip-inhand-right", + "directions": 4 + }, + { + "name": "clip_right-icon" + }, + { + "name": "clip_right-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "clip_right-inhand-left", + "directions": 4 + }, + { + "name": "clip_right-inhand-right", + "directions": 4 + }, + { + "name": "heart-icon" + }, + { + "name": "heart-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "heart-inhand-left", + "directions": 4 + }, + { + "name": "heart-inhand-right", + "directions": 4 + }, + { + "name": "corneraccent-icon" + }, + { + "name": "corneraccent-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "corneraccent-inhand-left", + "directions": 4 + }, + { + "name": "corneraccent-inhand-right", + "directions": 4 + }, + { + "name": "pants-icon" + }, + { + "name": "pants-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "pants-inhand-left", + "directions": 4 + }, + { + "name": "pants-inhand-right", + "directions": 4 + }, + { + "name": "belt-icon" + }, + { + "name": "belt-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "belt-inhand-left", + "directions": 4 + }, + { + "name": "belt-inhand-right", + "directions": 4 + }, + { + "name": "beltbuckle-icon" + }, + { + "name": "beltbuckle-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "beltbuckle-inhand-left", + "directions": 4 + }, + { + "name": "beltbuckle-inhand-right", + "directions": 4 + }, + { + "name": "beltbuckle_small-icon" + }, + { + "name": "beltbuckle_small-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "beltbuckle_small-inhand-left", + "directions": 4 + }, + { + "name": "beltbuckle_small-inhand-right", + "directions": 4 + }, + { + "name": "cuffs-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "cuffs_upper-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "shoes-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "shoesdark-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "soles-equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..9c11f765ef Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-icon.png new file mode 100644 index 0000000000..9afac6d69d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-inhand-left.png new file mode 100644 index 0000000000..b654f960f4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-inhand-right.png new file mode 100644 index 0000000000..92749caa93 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pants-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..693cfd5087 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-icon.png new file mode 100644 index 0000000000..117d83e93e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-inhand-left.png new file mode 100644 index 0000000000..72e6a885cb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-inhand-right.png new file mode 100644 index 0000000000..f8f8ae4f79 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/pin-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..0c0ee90b94 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-icon.png new file mode 100644 index 0000000000..bbc2d4dc2c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-inhand-left.png new file mode 100644 index 0000000000..c468d7db6b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-inhand-right.png new file mode 100644 index 0000000000..b7e5ec47d6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/plaintop-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/shoes-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/shoes-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..9e95afa556 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/shoes-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/shoesdark-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/shoesdark-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..d24fb9e4e7 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/shoesdark-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/soles-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/soles-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..8e08e9402d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/soles-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..3dc73d2aa0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-icon.png new file mode 100644 index 0000000000..ff5be6f5ff Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-inhand-left.png new file mode 100644 index 0000000000..704f785120 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-inhand-right.png new file mode 100644 index 0000000000..a60a89348c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tie-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..cb628a3e59 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-icon.png new file mode 100644 index 0000000000..4591a086b4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-inhand-left.png new file mode 100644 index 0000000000..3c74066875 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-inhand-right.png new file mode 100644 index 0000000000..88e26c3ac1 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/custom.rsi/tieclip-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..2a89400603 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/icon.png new file mode 100644 index 0000000000..144ee7b639 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/engineering.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..7d9aa8981b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/icon.png new file mode 100644 index 0000000000..7b4a2760e2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/enviroslacks.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..1db56bb0c6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/icon.png new file mode 100644 index 0000000000..a6bf5e7704 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/genetics.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..6599aa9df8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/icon.png new file mode 100644 index 0000000000..897b70669b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/hop.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..51a9fdac33 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/icon.png new file mode 100644 index 0000000000..b0a9644989 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/hos.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..8d6ac5e7fa Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/icon.png new file mode 100644 index 0000000000..e7bf4945f9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/hydroponics.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..ad1c6cbbc1 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/icon.png new file mode 100644 index 0000000000..18a829b655 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/janitor.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..cdac280607 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/icon.png new file mode 100644 index 0000000000..933083422d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/medical.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..37c4441170 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/icon.png new file mode 100644 index 0000000000..eb0d90d7c6 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/mime.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..711f6fe61b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/icon.png new file mode 100644 index 0000000000..4ef99e18f5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/paramedic.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..f9a9cf1854 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/icon.png new file mode 100644 index 0000000000..7cbe2a556d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/inhand-left.png new file mode 100644 index 0000000000..5ca9cdac9a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/inhand-right.png new file mode 100644 index 0000000000..6379627118 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/meta.json new file mode 100644 index 0000000000..e46e835779 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/plain.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..53028a197d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/icon.png new file mode 100644 index 0000000000..3a64566880 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/meta.json new file mode 100644 index 0000000000..d4c04394ef --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/rd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..d3ba777080 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/icon.png new file mode 100644 index 0000000000..8e38f72012 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/meta.json new file mode 100644 index 0000000000..e669a6403e --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/roboticist.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef and modified by Skubman for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..726b862a56 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/icon.png new file mode 100644 index 0000000000..8775c1a3e0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/salvage.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..7199bf41fb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/icon.png new file mode 100644 index 0000000000..4d3dcb91ea Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/scientist.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..9caeea98ab Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/icon.png new file mode 100644 index 0000000000..6370d1483d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/tacticool.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..7f5881cd57 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/icon.png new file mode 100644 index 0000000000..f2a1071bc5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/virology.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..5482b7a4dd Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/icon.png new file mode 100644 index 0000000000..d48c2be0fa Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/meta.json new file mode 100644 index 0000000000..7881ed5501 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Envirosuits/warden.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Decals/Overlays/markups.rsi/meta.json b/Resources/Textures/Decals/Overlays/markups.rsi/meta.json new file mode 100644 index 0000000000..162a07245b --- /dev/null +++ b/Resources/Textures/Decals/Overlays/markups.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "by Ko4erga (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "square" + }, + { + "name": "rectangle1x2" + }, + { + "name": "rectangle1x2center" + }, + { + "name": "squareQuater" + }, + { + "name": "squareQuaterCenter" + } + ] +} diff --git a/Resources/Textures/Decals/Overlays/markups.rsi/rectangle1x2.png b/Resources/Textures/Decals/Overlays/markups.rsi/rectangle1x2.png new file mode 100644 index 0000000000..d88bcb3680 Binary files /dev/null and b/Resources/Textures/Decals/Overlays/markups.rsi/rectangle1x2.png differ diff --git a/Resources/Textures/Decals/Overlays/markups.rsi/rectangle1x2center.png b/Resources/Textures/Decals/Overlays/markups.rsi/rectangle1x2center.png new file mode 100644 index 0000000000..eaa437336b Binary files /dev/null and b/Resources/Textures/Decals/Overlays/markups.rsi/rectangle1x2center.png differ diff --git a/Resources/Textures/Decals/Overlays/markups.rsi/square.png b/Resources/Textures/Decals/Overlays/markups.rsi/square.png new file mode 100644 index 0000000000..7e085ef1f6 Binary files /dev/null and b/Resources/Textures/Decals/Overlays/markups.rsi/square.png differ diff --git a/Resources/Textures/Decals/Overlays/markups.rsi/squareQuater.png b/Resources/Textures/Decals/Overlays/markups.rsi/squareQuater.png new file mode 100644 index 0000000000..6d49b25d61 Binary files /dev/null and b/Resources/Textures/Decals/Overlays/markups.rsi/squareQuater.png differ diff --git a/Resources/Textures/Decals/Overlays/markups.rsi/squareQuaterCenter.png b/Resources/Textures/Decals/Overlays/markups.rsi/squareQuaterCenter.png new file mode 100644 index 0000000000..b160a089b7 Binary files /dev/null and b/Resources/Textures/Decals/Overlays/markups.rsi/squareQuaterCenter.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt1.png b/Resources/Textures/Decals/burnt.rsi/burnt1.png new file mode 100644 index 0000000000..3fcb7a4949 Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt1.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt2.png b/Resources/Textures/Decals/burnt.rsi/burnt2.png new file mode 100644 index 0000000000..01f8f220b2 Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt2.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt3.png b/Resources/Textures/Decals/burnt.rsi/burnt3.png new file mode 100644 index 0000000000..e9dcbe3753 Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt3.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt4.png b/Resources/Textures/Decals/burnt.rsi/burnt4.png new file mode 100644 index 0000000000..f1db0637cc Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt4.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/meta.json b/Resources/Textures/Decals/burnt.rsi/meta.json new file mode 100644 index 0000000000..48a8f33138 --- /dev/null +++ b/Resources/Textures/Decals/burnt.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "From https://github.com/BeeStation/BeeStation-Hornet/blob/master/icons/turf/turf_damage.dmi at f2d6fbdf36aa0951049498cf28e028a38e32fe0b", + "states": [ + { + "name": "burnt1" + + }, + { + "name": "burnt2" + + }, + { + "name": "burnt3" + + }, + { + "name": "burnt4" + + } + ] +} diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid0.png b/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid0.png new file mode 100644 index 0000000000..dc37e2d63b Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid0.png differ diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid1.png b/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid1.png new file mode 100644 index 0000000000..a8adc694b0 Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid1.png differ diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid2.png b/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid2.png new file mode 100644 index 0000000000..91bcf88fe5 Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/speech.rsi/chitinid2.png differ diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json b/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json index 1d4b09fbff..d91b201f0b 100644 --- a/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json +++ b/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json @@ -23,6 +23,23 @@ }, { "name": "felinid2" + }, + { + "name": "chitinid0", + "delays": [ + [ + 0.2, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "chitinid1" + }, + { + "name": "chitinid2" } ] } diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/bee.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/bee.png new file mode 100644 index 0000000000..3c5faa4aa2 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/bee.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/curly.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/curly.png new file mode 100644 index 0000000000..7d7dd45da0 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/curly.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/default.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/default.png new file mode 100644 index 0000000000..f3d291ebdc Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/default.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/firefly_primary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/firefly_primary.png new file mode 100644 index 0000000000..32aeb03d3c Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/firefly_primary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/firefly_secondary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/firefly_secondary.png new file mode 100644 index 0000000000..ce6864cb06 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/firefly_secondary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/gray.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/gray.png new file mode 100644 index 0000000000..e215684cf9 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/gray.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/long.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/long.png new file mode 100644 index 0000000000..9ff75a1010 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/long.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/meta.json new file mode 100644 index 0000000000..52bc240973 --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/meta.json @@ -0,0 +1,55 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Concepts by: https://github.com/ElusiveCoin", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "default", + "directions": 4 + }, + { + "name": "curly", + "directions": 4 + }, + { + "name": "gray", + "directions": 4 + }, + { + "name": "slick", + "directions": 4 + }, + { + "name": "short", + "directions": 4 + }, + { + "name": "long", + "directions": 4 + }, + { + "name": "bee", + "directions": 4 + }, + { + "name": "firefly_primary", + "directions": 4 + }, + { + "name": "firefly_secondary", + "directions": 4 + }, + { + "name": "radar", + "directions": 4 + }, + { + "name": "speed", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/radar.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/radar.png new file mode 100644 index 0000000000..41ec7d9923 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/radar.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/short.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/short.png new file mode 100644 index 0000000000..1dde872b78 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/short.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/slick.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/slick.png new file mode 100644 index 0000000000..f1e856667c Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/slick.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/speed.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/speed.png new file mode 100644 index 0000000000..f3dda4c687 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_antennas.rsi/speed.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_chest.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_chest.png new file mode 100644 index 0000000000..8981bd797e Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_chest.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_head.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_head.png new file mode 100644 index 0000000000..98c698e905 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_head.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_l_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_l_arm.png new file mode 100644 index 0000000000..14709b0c31 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_l_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_l_leg.png new file mode 100644 index 0000000000..5be58a196c Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_l_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_r_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_r_arm.png new file mode 100644 index 0000000000..7a83b33619 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_r_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_r_leg.png new file mode 100644 index 0000000000..0ebd96c5dd Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/charred_r_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/meta.json new file mode 100644 index 0000000000..6667bbc2b3 --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commits https://github.com/tgstation/tgstation/commit/b30e2934e7585bad901dd12a35d0635f1fc292c1 and https://github.com/tgstation/tgstation/commit/6b0af0febe578f47ae280781682ea7a3d77f508a, modified by https://github.com/MilenVolf, Charred further modified and new assets by https://github.com/ElusiveCoin", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "toxic_head", + "directions": 4 + }, + { + "name": "toxic_chest", + "directions": 4 + }, + { + "name": "toxic_r_arm", + "directions": 4 + }, + { + "name": "toxic_l_arm", + "directions": 4 + }, + { + "name": "toxic_r_leg", + "directions": 4 + }, + { + "name": "toxic_l_leg", + "directions": 4 + }, + { + "name": "charred_head", + "directions": 4 + }, + { + "name": "charred_chest", + "directions": 4 + }, + { + "name": "charred_r_arm", + "directions": 4 + }, + { + "name": "charred_l_arm", + "directions": 4 + }, + { + "name": "charred_r_leg", + "directions": 4 + }, + { + "name": "charred_l_leg", + "directions": 4 + }, + { + "name": "radiant_head", + "directions": 4 + }, + { + "name": "radiant_chest", + "directions": 4 + }, + { + "name": "radiant_r_arm", + "directions": 4 + }, + { + "name": "radiant_l_arm", + "directions": 4 + }, + { + "name": "radiant_r_leg", + "directions": 4 + }, + { + "name": "radiant_l_leg", + "directions": 4 + }, + { + "name": "plated_chest", + "directions": 4 + }, + { + "name": "plated_r_arm", + "directions": 4 + }, + { + "name": "plated_l_arm", + "directions": 4 + }, + { + "name": "stripes_head", + "directions": 4 + }, + { + "name": "stripes_chest", + "directions": 4 + }, + { + "name": "stripes_r_arm", + "directions": 4 + }, + { + "name": "stripes_l_arm", + "directions": 4 + }, + { + "name": "stripes_r_leg", + "directions": 4 + }, + { + "name": "stripes_l_leg", + "directions": 4 + }, + { + "name": "spotted_head", + "directions": 4 + }, + { + "name": "spotted_chest", + "directions": 4 + }, + { + "name": "spotted_r_arm", + "directions": 4 + }, + { + "name": "spotted_l_arm", + "directions": 4 + }, + { + "name": "spotted_r_leg", + "directions": 4 + }, + { + "name": "spotted_l_leg", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_chest.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_chest.png new file mode 100644 index 0000000000..f32f5d317c Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_chest.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_l_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_l_arm.png new file mode 100644 index 0000000000..5e1061d931 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_r_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_r_arm.png new file mode 100644 index 0000000000..b24897986d Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/plated_r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_chest.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_chest.png new file mode 100644 index 0000000000..214caa4c97 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_chest.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_head.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_head.png new file mode 100644 index 0000000000..5a19d26577 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_head.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_l_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_l_arm.png new file mode 100644 index 0000000000..272177404a Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_l_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_l_leg.png new file mode 100644 index 0000000000..16f0616a24 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_l_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_r_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_r_arm.png new file mode 100644 index 0000000000..72dfcfde06 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_r_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_r_leg.png new file mode 100644 index 0000000000..9c4d8173e9 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/radiant_r_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_chest.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_chest.png new file mode 100644 index 0000000000..90a8539d73 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_chest.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_head.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_head.png new file mode 100644 index 0000000000..c7301de381 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_head.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_l_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_l_arm.png new file mode 100644 index 0000000000..4c6f3c1ce4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_l_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_l_leg.png new file mode 100644 index 0000000000..f78e45889f Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_l_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_r_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_r_arm.png new file mode 100644 index 0000000000..a83a50ec97 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_r_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_r_leg.png new file mode 100644 index 0000000000..27e6854260 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/spotted_r_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_chest.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_chest.png new file mode 100644 index 0000000000..29b41970dc Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_chest.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_head.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_head.png new file mode 100644 index 0000000000..8bcda1cbe6 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_head.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_l_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_l_arm.png new file mode 100644 index 0000000000..521352f9d4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_l_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_l_leg.png new file mode 100644 index 0000000000..6b19d5237f Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_l_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_r_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_r_arm.png new file mode 100644 index 0000000000..51b1f0d370 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_r_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_r_leg.png new file mode 100644 index 0000000000..e149af3795 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/stripes_r_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_chest.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_chest.png new file mode 100644 index 0000000000..ad53da7165 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_chest.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_head.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_head.png new file mode 100644 index 0000000000..d3400bf0e1 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_head.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_l_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_l_arm.png new file mode 100644 index 0000000000..f74ffaae9d Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_l_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_l_leg.png new file mode 100644 index 0000000000..fbcd1237d7 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_l_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_r_arm.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_r_arm.png new file mode 100644 index 0000000000..31ef8726fc Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_r_leg.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_r_leg.png new file mode 100644 index 0000000000..bd772bfc0b Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_parts.rsi/toxic_r_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/bee_primary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/bee_primary.png new file mode 100644 index 0000000000..d8f46c8e70 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/bee_primary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/bee_secondary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/bee_secondary.png new file mode 100644 index 0000000000..82a14ba3e5 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/bee_secondary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/default.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/default.png new file mode 100644 index 0000000000..c01f5a4ba4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/default.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/firefly_primary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/firefly_primary.png new file mode 100644 index 0000000000..1f74656812 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/firefly_primary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/firefly_secondary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/firefly_secondary.png new file mode 100644 index 0000000000..3386aa4583 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/firefly_secondary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/honeypot_primary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/honeypot_primary.png new file mode 100644 index 0000000000..d842859726 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/honeypot_primary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/honeypot_secondary.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/honeypot_secondary.png new file mode 100644 index 0000000000..587a5a1f75 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/honeypot_secondary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/meta.json new file mode 100644 index 0000000000..b7f59a8231 --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Concepts by: https://github.com/ElusiveCoin", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "default", + "directions": 4 + }, + { + "name": "smooth", + "directions": 4 + }, + { + "name": "honeypot_primary", + "directions": 4 + }, + { + "name": "honeypot_secondary", + "directions": 4 + }, + { + "name": "stubby", + "directions": 4 + }, + { + "name": "bee_primary", + "directions": 4 + }, + { + "name": "bee_secondary", + "directions": 4 + }, + { + "name": "firefly_primary", + "directions": 4 + }, + { + "name": "firefly_secondary", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/smooth.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/smooth.png new file mode 100644 index 0000000000..bd0bbec36f Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/smooth.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/stubby.png b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/stubby.png new file mode 100644 index 0000000000..028676d9f4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Chitinid/chitinid_wings.rsi/stubby.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long2.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long2.png deleted file mode 100644 index 950bc1430b..0000000000 Binary files a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long2.png and /dev/null differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long3.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long3.png deleted file mode 100644 index bc7eb6ea06..0000000000 Binary files a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long3.png and /dev/null differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json index 387949d4b3..ca3709fda9 100644 --- a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json +++ b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json @@ -43,14 +43,6 @@ { "name":"classic_long", "directions": 4 - }, - { - "name":"classic_long2", - "directions": 4 - }, - { - "name":"classic_long3", - "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/eyes.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/eyes.png new file mode 100644 index 0000000000..e35b5717d2 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/eyes.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/full.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/full.png new file mode 100644 index 0000000000..6d5e167c55 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/full.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/head_f.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/head_f.png new file mode 100644 index 0000000000..fe85b75345 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/head_f.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/head_m.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/head_m.png new file mode 100644 index 0000000000..c9b9cbb197 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/head_m.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_arm.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_arm.png new file mode 100644 index 0000000000..48c0a2ee06 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_foot.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_foot.png new file mode 100644 index 0000000000..02c9335b20 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_hand.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_hand.png new file mode 100644 index 0000000000..b02e2317be Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_leg.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_leg.png new file mode 100644 index 0000000000..54efa6db78 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/meta.json new file mode 100644 index 0000000000..ed5dfd5145 --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/meta.json @@ -0,0 +1,66 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/commit/1d0eadcb126fc3581eed33490f4be2a88157af58, modified by https://github.com/PixelTheKermit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_arm.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_arm.png new file mode 100644 index 0000000000..703756e5c4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_foot.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_foot.png new file mode 100644 index 0000000000..e661076301 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_hand.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_hand.png new file mode 100644 index 0000000000..b9f02aa597 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_leg.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_leg.png new file mode 100644 index 0000000000..6f45ae1895 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/torso_f.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/torso_f.png new file mode 100644 index 0000000000..71d3466001 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/torso_m.png b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/torso_m.png new file mode 100644 index 0000000000..9f08874e16 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Chitinid/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/chitzite.png b/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/chitzite.png new file mode 100644 index 0000000000..8983e82b36 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/chitzite.png differ diff --git a/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/chitzite_glow.png b/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/chitzite_glow.png new file mode 100644 index 0000000000..5a77b238e8 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/chitzite_glow.png differ diff --git a/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/meta.json new file mode 100644 index 0000000000..e55e488f4d --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Specific/Species/chitinid.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Concepts by: https://github.com/ElusiveCoin", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chitzite", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "chitzite_glow", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png index 4be18c6a3c..d85871e7f8 100644 Binary files a/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png and b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/meta.json index d6321812ff..1ba9adc34d 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_cutlass.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Original work by TJohnson.", + "copyright": "Original work by TJohnson. | modified by BlueHNT", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Effects/speech.rsi/meta.json b/Resources/Textures/Effects/speech.rsi/meta.json index 1ec1219b0f..e3644f147b 100644 --- a/Resources/Textures/Effects/speech.rsi/meta.json +++ b/Resources/Textures/Effects/speech.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 | Moth sprites made by PuroSlavKing (Github) | Spider sprites made by PixelTheKermit (Github) | Lizard sprites made by AmalgoMyte (Github) | Oni sprites made by angelofallars and leonardo-dabepis (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 | Moth sprites made by PuroSlavKing (Github) | Spider sprites made by PixelTheKermit (Github) | Lizard sprites made by AmalgoMyte (Github) | Oni sprites made by angelofallars and leonardo-dabepis (Github) | Skeleton/Plasmaman sprites made by Skubman (github: angelofallars)", "states": [ { "name": "alien0", @@ -28,7 +28,6 @@ }, { "name": "alienroyal0", - "delays": [ [ 0.2, @@ -412,7 +411,7 @@ { "name": "spider2" }, - { + { "name": "vox0", "delays": [ [ @@ -439,6 +438,54 @@ }, { "name": "oni2" + }, + { + "name": "plasmaman0", + "delays": [ + [ + 0.15, + 0.25, + 0.25, + 0.5, + 0.1, + 0.15, + 0.1, + 0.7, + 0.25, + 0.25, + 0.1 + ] + ] + }, + { + "name": "plasmaman1" + }, + { + "name": "plasmaman2" + }, + { + "name": "skeleton0", + "delays": [ + [ + 0.15, + 0.25, + 0.25, + 0.5, + 0.1, + 0.15, + 0.1, + 0.7, + 0.25, + 0.25, + 0.1 + ] + ] + }, + { + "name": "skeleton1" + }, + { + "name": "skeleton2" } ] } diff --git a/Resources/Textures/Effects/speech.rsi/plasmaman0.png b/Resources/Textures/Effects/speech.rsi/plasmaman0.png new file mode 100644 index 0000000000..fb6cf1ad25 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/plasmaman0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/plasmaman1.png b/Resources/Textures/Effects/speech.rsi/plasmaman1.png new file mode 100644 index 0000000000..4a3cb354ff Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/plasmaman1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/plasmaman2.png b/Resources/Textures/Effects/speech.rsi/plasmaman2.png new file mode 100644 index 0000000000..9f86cb268c Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/plasmaman2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/skeleton0.png b/Resources/Textures/Effects/speech.rsi/skeleton0.png new file mode 100644 index 0000000000..8695d90baf Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/skeleton0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/skeleton1.png b/Resources/Textures/Effects/speech.rsi/skeleton1.png new file mode 100644 index 0000000000..3943f59767 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/skeleton1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/skeleton2.png b/Resources/Textures/Effects/speech.rsi/skeleton2.png new file mode 100644 index 0000000000..64bb33c713 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/skeleton2.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_box.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_box.png new file mode 100644 index 0000000000..5145216bf3 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_box.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_box_open.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_box_open.png new file mode 100644 index 0000000000..8b3c3fbe05 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_box_open.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand1.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand1.png new file mode 100644 index 0000000000..8797bc9b52 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand1.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand2.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand2.png new file mode 100644 index 0000000000..7d217388d0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand2.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand3.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand3.png new file mode 100644 index 0000000000..646ec3241b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand3.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand4.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand4.png new file mode 100644 index 0000000000..a10b441e1c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand4.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand5.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand5.png new file mode 100644 index 0000000000..b348eef2ca Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_hand5.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_joker.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_joker.png new file mode 100644 index 0000000000..dcb21b4f8c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/black_joker.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_empty.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_empty.png new file mode 100644 index 0000000000..666e33a6ef Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_empty.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_full.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_full.png new file mode 100644 index 0000000000..e475aea4f2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_full.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_half.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_half.png new file mode 100644 index 0000000000..6121837e31 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_half.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_low.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_low.png new file mode 100644 index 0000000000..812fa134de Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_black_low.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_empty.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_empty.png new file mode 100644 index 0000000000..3eab35d483 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_empty.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_full.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_full.png new file mode 100644 index 0000000000..b68e72fad5 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_full.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_half.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_half.png new file mode 100644 index 0000000000..aaf8d07645 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_half.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_low.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_low.png new file mode 100644 index 0000000000..22f8db3c70 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_nanotrasen_low.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_empty.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_empty.png new file mode 100644 index 0000000000..df0f80a270 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_empty.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_full.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_full.png new file mode 100644 index 0000000000..fd54e580a4 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_full.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_half.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_half.png new file mode 100644 index 0000000000..45e53d99e0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_half.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_low.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_low.png new file mode 100644 index 0000000000..364885508c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/deck_syndicate_low.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/meta.json b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/meta.json new file mode 100644 index 0000000000..b5035a33bf --- /dev/null +++ b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/meta.json @@ -0,0 +1,614 @@ +{ + "version": 1, + "copyright": "Cards, Decks and Hands Sprites were originally from Paradise Station (https://github.com/ParadiseSS13/Paradise) and modified by VictorJob. Boxes are from VictorJob.", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "black_hand1" + }, + { + "name": "black_hand2" + }, + { + "name": "black_hand3" + }, + { + "name": "black_hand4" + }, + { + "name": "black_hand5" + }, + { + "name": "deck_black_empty" + }, + { + "name": "deck_black_full" + }, + { + "name": "deck_black_half" + }, + { + "name": "deck_black_low" + }, + { + "name": "deck_nanotrasen_empty" + }, + { + "name": "deck_nanotrasen_full" + }, + { + "name": "deck_nanotrasen_half" + }, + { + "name": "deck_nanotrasen_low" + }, + { + "name": "deck_syndicate_empty" + }, + { + "name": "deck_syndicate_full" + }, + { + "name": "deck_syndicate_half" + }, + { + "name": "deck_syndicate_low" + }, + { + "name": "nanotrasen_hand1" + }, + { + "name": "nanotrasen_hand2" + }, + { + "name": "nanotrasen_hand3" + }, + { + "name": "nanotrasen_hand4" + }, + { + "name": "nanotrasen_hand5" + }, + { + "name": "sc_10_of_Clubs_black" + }, + { + "name": "sc_10_of_Clubs_nanotrasen" + }, + { + "name": "sc_10_of_Clubs_syndicate" + }, + { + "name": "sc_10_of_Diamonds_black" + }, + { + "name": "sc_10_of_Diamonds_nanotrasen" + }, + { + "name": "sc_10_of_Diamonds_syndicate" + }, + { + "name": "sc_10_of_Hearts_black" + }, + { + "name": "sc_10_of_Hearts_nanotrasen" + }, + { + "name": "sc_10_of_Hearts_syndicate" + }, + { + "name": "sc_10_of_Spades_black" + }, + { + "name": "sc_10_of_Spades_nanotrasen" + }, + { + "name": "sc_10_of_Spades_syndicate" + }, + { + "name": "sc_2_of_Clubs_black" + }, + { + "name": "sc_2_of_Clubs_nanotrasen" + }, + { + "name": "sc_2_of_Clubs_syndicate" + }, + { + "name": "sc_2_of_Diamonds_black" + }, + { + "name": "sc_2_of_Diamonds_nanotrasen" + }, + { + "name": "sc_2_of_Diamonds_syndicate" + }, + { + "name": "sc_2_of_Hearts_black" + }, + { + "name": "sc_2_of_Hearts_nanotrasen" + }, + { + "name": "sc_2_of_Hearts_syndicate" + }, + { + "name": "sc_2_of_Spades_black" + }, + { + "name": "sc_2_of_Spades_nanotrasen" + }, + { + "name": "sc_2_of_Spades_syndicate" + }, + { + "name": "sc_3_of_Clubs_black" + }, + { + "name": "sc_3_of_Clubs_nanotrasen" + }, + { + "name": "sc_3_of_Clubs_syndicate" + }, + { + "name": "sc_3_of_Diamonds_black" + }, + { + "name": "sc_3_of_Diamonds_nanotrasen" + }, + { + "name": "sc_3_of_Diamonds_syndicate" + }, + { + "name": "sc_3_of_Hearts_black" + }, + { + "name": "sc_3_of_Hearts_nanotrasen" + }, + { + "name": "sc_3_of_Hearts_syndicate" + }, + { + "name": "sc_3_of_Spades_black" + }, + { + "name": "sc_3_of_Spades_nanotrasen" + }, + { + "name": "sc_3_of_Spades_syndicate" + }, + { + "name": "sc_4_of_Clubs_black" + }, + { + "name": "sc_4_of_Clubs_nanotrasen" + }, + { + "name": "sc_4_of_Clubs_syndicate" + }, + { + "name": "sc_4_of_Diamonds_black" + }, + { + "name": "sc_4_of_Diamonds_nanotrasen" + }, + { + "name": "sc_4_of_Diamonds_syndicate" + }, + { + "name": "sc_4_of_Hearts_black" + }, + { + "name": "sc_4_of_Hearts_nanotrasen" + }, + { + "name": "sc_4_of_Hearts_syndicate" + }, + { + "name": "sc_4_of_Spades_black" + }, + { + "name": "sc_4_of_Spades_nanotrasen" + }, + { + "name": "sc_4_of_Spades_syndicate" + }, + { + "name": "sc_5_of_Clubs_black" + }, + { + "name": "sc_5_of_Clubs_nanotrasen" + }, + { + "name": "sc_5_of_Clubs_syndicate" + }, + { + "name": "sc_5_of_Diamonds_black" + }, + { + "name": "sc_5_of_Diamonds_nanotrasen" + }, + { + "name": "sc_5_of_Diamonds_syndicate" + }, + { + "name": "sc_5_of_Hearts_black" + }, + { + "name": "sc_5_of_Hearts_nanotrasen" + }, + { + "name": "sc_5_of_Hearts_syndicate" + }, + { + "name": "sc_5_of_Spades_black" + }, + { + "name": "sc_5_of_Spades_nanotrasen" + }, + { + "name": "sc_5_of_Spades_syndicate" + }, + { + "name": "sc_6_of_Clubs_black" + }, + { + "name": "sc_6_of_Clubs_nanotrasen" + }, + { + "name": "sc_6_of_Clubs_syndicate" + }, + { + "name": "sc_6_of_Diamonds_black" + }, + { + "name": "sc_6_of_Diamonds_nanotrasen" + }, + { + "name": "sc_6_of_Diamonds_syndicate" + }, + { + "name": "sc_6_of_Hearts_black" + }, + { + "name": "sc_6_of_Hearts_nanotrasen" + }, + { + "name": "sc_6_of_Hearts_syndicate" + }, + { + "name": "sc_6_of_Spades_black" + }, + { + "name": "sc_6_of_Spades_nanotrasen" + }, + { + "name": "sc_6_of_Spades_syndicate" + }, + { + "name": "sc_7_of_Clubs_black" + }, + { + "name": "sc_7_of_Clubs_nanotrasen" + }, + { + "name": "sc_7_of_Clubs_syndicate" + }, + { + "name": "sc_7_of_Diamonds_black" + }, + { + "name": "sc_7_of_Diamonds_nanotrasen" + }, + { + "name": "sc_7_of_Diamonds_syndicate" + }, + { + "name": "sc_7_of_Hearts_black" + }, + { + "name": "sc_7_of_Hearts_nanotrasen" + }, + { + "name": "sc_7_of_Hearts_syndicate" + }, + { + "name": "sc_7_of_Spades_black" + }, + { + "name": "sc_7_of_Spades_nanotrasen" + }, + { + "name": "sc_7_of_Spades_syndicate" + }, + { + "name": "sc_8_of_Clubs_black" + }, + { + "name": "sc_8_of_Clubs_nanotrasen" + }, + { + "name": "sc_8_of_Clubs_syndicate" + }, + { + "name": "sc_8_of_Diamonds_black" + }, + { + "name": "sc_8_of_Diamonds_nanotrasen" + }, + { + "name": "sc_8_of_Diamonds_syndicate" + }, + { + "name": "sc_8_of_Hearts_black" + }, + { + "name": "sc_8_of_Hearts_nanotrasen" + }, + { + "name": "sc_8_of_Hearts_syndicate" + }, + { + "name": "sc_8_of_Spades_black" + }, + { + "name": "sc_8_of_Spades_nanotrasen" + }, + { + "name": "sc_8_of_Spades_syndicate" + }, + { + "name": "sc_9_of_Clubs_black" + }, + { + "name": "sc_9_of_Clubs_nanotrasen" + }, + { + "name": "sc_9_of_Clubs_syndicate" + }, + { + "name": "sc_9_of_Diamonds_black" + }, + { + "name": "sc_9_of_Diamonds_nanotrasen" + }, + { + "name": "sc_9_of_Diamonds_syndicate" + }, + { + "name": "sc_9_of_Hearts_black" + }, + { + "name": "sc_9_of_Hearts_nanotrasen" + }, + { + "name": "sc_9_of_Hearts_syndicate" + }, + { + "name": "sc_9_of_Spades_black" + }, + { + "name": "sc_9_of_Spades_nanotrasen" + }, + { + "name": "sc_9_of_Spades_syndicate" + }, + { + "name": "sc_Ace_of_Clubs_black" + }, + { + "name": "sc_Ace_of_Clubs_nanotrasen" + }, + { + "name": "sc_Ace_of_Clubs_syndicate" + }, + { + "name": "sc_Ace_of_Diamonds_black" + }, + { + "name": "sc_Ace_of_Diamonds_nanotrasen" + }, + { + "name": "sc_Ace_of_Diamonds_syndicate" + }, + { + "name": "sc_Ace_of_Hearts_black" + }, + { + "name": "sc_Ace_of_Hearts_nanotrasen" + }, + { + "name": "sc_Ace_of_Hearts_syndicate" + }, + { + "name": "sc_Ace_of_Spades_black" + }, + { + "name": "sc_Ace_of_Spades_nanotrasen" + }, + { + "name": "sc_Ace_of_Spades_syndicate" + }, + { + "name": "sc_Jack_of_Clubs_black" + }, + { + "name": "sc_Jack_of_Clubs_nanotrasen" + }, + { + "name": "sc_Jack_of_Clubs_syndicate" + }, + { + "name": "sc_Jack_of_Diamonds_black" + }, + { + "name": "sc_Jack_of_Diamonds_nanotrasen" + }, + { + "name": "sc_Jack_of_Diamonds_syndicate" + }, + { + "name": "sc_Jack_of_Hearts_black" + }, + { + "name": "sc_Jack_of_Hearts_nanotrasen" + }, + { + "name": "sc_Jack_of_Hearts_syndicate" + }, + { + "name": "sc_Jack_of_Spades_black" + }, + { + "name": "sc_Jack_of_Spades_nanotrasen" + }, + { + "name": "sc_Jack_of_Spades_syndicate" + }, + { + "name": "sc_King_of_Clubs_black" + }, + { + "name": "sc_King_of_Clubs_nanotrasen" + }, + { + "name": "sc_King_of_Clubs_syndicate" + }, + { + "name": "sc_King_of_Diamonds_black" + }, + { + "name": "sc_King_of_Diamonds_nanotrasen" + }, + { + "name": "sc_King_of_Diamonds_syndicate" + }, + { + "name": "sc_King_of_Hearts_black" + }, + { + "name": "sc_King_of_Hearts_nanotrasen" + }, + { + "name": "sc_King_of_Hearts_syndicate" + }, + { + "name": "sc_King_of_Spades_black" + }, + { + "name": "sc_King_of_Spades_nanotrasen" + }, + { + "name": "sc_King_of_Spades_syndicate" + }, + { + "name": "sc_Queen_of_Clubs_black" + }, + { + "name": "sc_Queen_of_Clubs_nanotrasen" + }, + { + "name": "sc_Queen_of_Clubs_syndicate" + }, + { + "name": "sc_Queen_of_Diamonds_black" + }, + { + "name": "sc_Queen_of_Diamonds_nanotrasen" + }, + { + "name": "sc_Queen_of_Diamonds_syndicate" + }, + { + "name": "sc_Queen_of_Hearts_black" + }, + { + "name": "sc_Queen_of_Hearts_nanotrasen" + }, + { + "name": "sc_Queen_of_Hearts_syndicate" + }, + { + "name": "sc_Queen_of_Spades_black" + }, + { + "name": "sc_Queen_of_Spades_nanotrasen" + }, + { + "name": "sc_Queen_of_Spades_syndicate" + }, + { + "name": "singlecard_down_black" + }, + { + "name": "singlecard_down_nanotrasen" + }, + { + "name": "singlecard_down_syndicate" + }, + { + "name": "syndicate_hand1" + }, + { + "name": "syndicate_hand2" + }, + { + "name": "syndicate_hand3" + }, + { + "name": "syndicate_hand4" + }, + { + "name": "syndicate_hand5" + }, + { + "name": "syndicate_joker", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "nanotrasen_joker", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "black_joker", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "syndicate_box" + }, + { + "name": "syndicate_box_open" + }, + { + "name": "black_box" + }, + { + "name": "black_box_open" + }, + { + "name": "nanotrasen_box" + }, + { + "name": "nanotrasen_box_open" + } + ] +} diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_box.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_box.png new file mode 100644 index 0000000000..b80b2ccd71 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_box.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_box_open.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_box_open.png new file mode 100644 index 0000000000..b86bfb1c2d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_box_open.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand1.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand1.png new file mode 100644 index 0000000000..2c532c3148 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand1.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand2.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand2.png new file mode 100644 index 0000000000..073d79718c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand2.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand3.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand3.png new file mode 100644 index 0000000000..1edfe42011 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand3.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand4.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand4.png new file mode 100644 index 0000000000..b788969f0f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand4.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand5.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand5.png new file mode 100644 index 0000000000..8836dc110b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_hand5.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_joker.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_joker.png new file mode 100644 index 0000000000..c7c5c9e061 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/nanotrasen_joker.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_black.png new file mode 100644 index 0000000000..1c45b9f176 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..23f499fe81 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_syndicate.png new file mode 100644 index 0000000000..ae4d73c1a6 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_black.png new file mode 100644 index 0000000000..17a7cb99d2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..afad380277 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..100b213afc Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_black.png new file mode 100644 index 0000000000..0a179f78ee Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..eca6193c86 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_syndicate.png new file mode 100644 index 0000000000..b9a8467485 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_black.png new file mode 100644 index 0000000000..5fc75d0bce Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..01187507f6 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_syndicate.png new file mode 100644 index 0000000000..b4ac829a24 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_10_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_black.png new file mode 100644 index 0000000000..ba33f6b6a7 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..2067145ca0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_syndicate.png new file mode 100644 index 0000000000..1a057ecf79 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_black.png new file mode 100644 index 0000000000..e5e5afcbf3 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..f0ee45883d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..8f6549e8d3 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_black.png new file mode 100644 index 0000000000..b16deb15ae Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..af710d0711 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_syndicate.png new file mode 100644 index 0000000000..7f99d786cf Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_black.png new file mode 100644 index 0000000000..4ff15e4136 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..c8c01eb2d5 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_syndicate.png new file mode 100644 index 0000000000..bea976dc1b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_2_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_black.png new file mode 100644 index 0000000000..36fcb2d654 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..b64b1a6650 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_syndicate.png new file mode 100644 index 0000000000..feeefb7bcc Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_black.png new file mode 100644 index 0000000000..a100b46058 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..34e8feae6f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..1cf21d7723 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_black.png new file mode 100644 index 0000000000..50be1e655a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..20cf0ab74e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_syndicate.png new file mode 100644 index 0000000000..8d62899fe2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_black.png new file mode 100644 index 0000000000..d43b828a49 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..dd9ba51947 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_syndicate.png new file mode 100644 index 0000000000..6a51db9b7e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_3_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_black.png new file mode 100644 index 0000000000..67f25777ea Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..fb1266f391 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_syndicate.png new file mode 100644 index 0000000000..2b14b3777d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_black.png new file mode 100644 index 0000000000..653109f088 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..93d00aa65e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..1b63837065 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_black.png new file mode 100644 index 0000000000..30e3525c7e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..8d55ea1df9 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_syndicate.png new file mode 100644 index 0000000000..2fb582d569 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_black.png new file mode 100644 index 0000000000..cb82281e40 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..6bd780f250 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_syndicate.png new file mode 100644 index 0000000000..e6d0a439ee Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_4_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_black.png new file mode 100644 index 0000000000..61c3ad81f1 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..bf156aceb7 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_syndicate.png new file mode 100644 index 0000000000..8183e0defa Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_black.png new file mode 100644 index 0000000000..3dd9f7c95b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..66032a9ddd Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..eef3d3322d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_black.png new file mode 100644 index 0000000000..f1fa1b4f34 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..95d5ed72a2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_syndicate.png new file mode 100644 index 0000000000..b9a25077a1 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_black.png new file mode 100644 index 0000000000..48290bd26c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..5f557f6f11 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_syndicate.png new file mode 100644 index 0000000000..22f74e0535 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_5_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_black.png new file mode 100644 index 0000000000..7b4eb021bf Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..f94cc86077 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_syndicate.png new file mode 100644 index 0000000000..7b7905bd38 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_black.png new file mode 100644 index 0000000000..c44ddd87e6 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..970bef60e4 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..729c0def3f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_black.png new file mode 100644 index 0000000000..23697e2f9a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..e099806d23 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_syndicate.png new file mode 100644 index 0000000000..fabd88049a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_black.png new file mode 100644 index 0000000000..429b9c9dcf Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..7fc01c72b5 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_syndicate.png new file mode 100644 index 0000000000..b1021e01bc Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_6_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_black.png new file mode 100644 index 0000000000..444a83394e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..8d795e524e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_syndicate.png new file mode 100644 index 0000000000..6f786cca2a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_black.png new file mode 100644 index 0000000000..2308d43d4f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..efbe7248ec Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..7954748eab Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_black.png new file mode 100644 index 0000000000..e466ae7120 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..452bd851e4 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_syndicate.png new file mode 100644 index 0000000000..7beeded173 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_black.png new file mode 100644 index 0000000000..b72505fb87 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..c9923e0c89 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_syndicate.png new file mode 100644 index 0000000000..07f4d96f75 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_7_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_black.png new file mode 100644 index 0000000000..3367fa0d2e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..83eafee6c7 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_syndicate.png new file mode 100644 index 0000000000..76d30fab1a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_black.png new file mode 100644 index 0000000000..58a1130c4a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..6204855e3c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..e1b2aba48e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_black.png new file mode 100644 index 0000000000..2ce9b69f16 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..86b3c37cd0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_syndicate.png new file mode 100644 index 0000000000..1ad0852935 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_black.png new file mode 100644 index 0000000000..69154bbc3b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..587025d064 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_syndicate.png new file mode 100644 index 0000000000..ec1158a360 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_8_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_black.png new file mode 100644 index 0000000000..59686360af Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..9c88a1a275 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_syndicate.png new file mode 100644 index 0000000000..4ef37da096 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_black.png new file mode 100644 index 0000000000..7104afcd64 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..35aba68cfe Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..f6bad83825 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_black.png new file mode 100644 index 0000000000..43341bb1f8 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..389004ac91 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_syndicate.png new file mode 100644 index 0000000000..c3b7cc6142 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_black.png new file mode 100644 index 0000000000..ab89960ba0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..dbdff6554e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_syndicate.png new file mode 100644 index 0000000000..1a68d32b7c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_9_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_black.png new file mode 100644 index 0000000000..5c524bad64 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..4aab2f09d4 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_syndicate.png new file mode 100644 index 0000000000..47fe7da11d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_black.png new file mode 100644 index 0000000000..eff87dcb56 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..bc1f38c11e Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..f3bb83907b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_black.png new file mode 100644 index 0000000000..da4360e0e5 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..d5823c0fb7 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_syndicate.png new file mode 100644 index 0000000000..e17eaab8cf Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_black.png new file mode 100644 index 0000000000..4be96b088a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..11bea7d14b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_syndicate.png new file mode 100644 index 0000000000..94d9ce9f9d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Ace_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_black.png new file mode 100644 index 0000000000..83e604757b Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..5aa923cba2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_syndicate.png new file mode 100644 index 0000000000..9b1a9ee48c Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_black.png new file mode 100644 index 0000000000..0e79933147 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..8b9d7cb53f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..c11bda0bf3 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_black.png new file mode 100644 index 0000000000..e9ab75342f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..bfeaa7d8d2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_syndicate.png new file mode 100644 index 0000000000..6b07df3520 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_black.png new file mode 100644 index 0000000000..df54477231 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..5fa983d5e1 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_syndicate.png new file mode 100644 index 0000000000..1da0de75ba Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Jack_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_black.png new file mode 100644 index 0000000000..2ec99fc8dd Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..28488799a0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_syndicate.png new file mode 100644 index 0000000000..446c79e0b3 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_black.png new file mode 100644 index 0000000000..0c561befb9 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..b6af7d6218 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..b6f8e32cc2 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_black.png new file mode 100644 index 0000000000..fe38670021 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..c53d7fe5d0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_syndicate.png new file mode 100644 index 0000000000..7ebf4ce24f Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_black.png new file mode 100644 index 0000000000..6fc8241b11 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..adb48697f9 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_syndicate.png new file mode 100644 index 0000000000..5da2adf32a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_King_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_black.png new file mode 100644 index 0000000000..de3cf80db9 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_nanotrasen.png new file mode 100644 index 0000000000..c22d142b63 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_syndicate.png new file mode 100644 index 0000000000..e234569093 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Clubs_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_black.png new file mode 100644 index 0000000000..7a529a1915 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_nanotrasen.png new file mode 100644 index 0000000000..537de98404 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_syndicate.png new file mode 100644 index 0000000000..184f90b5de Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Diamonds_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_black.png new file mode 100644 index 0000000000..1b190bd934 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_nanotrasen.png new file mode 100644 index 0000000000..74a5fe35c4 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_syndicate.png new file mode 100644 index 0000000000..30c4271fc9 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Hearts_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_black.png new file mode 100644 index 0000000000..40edb50caa Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_nanotrasen.png new file mode 100644 index 0000000000..613f4e81ca Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_syndicate.png new file mode 100644 index 0000000000..0106a46014 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/sc_Queen_of_Spades_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_black.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_black.png new file mode 100644 index 0000000000..e634a9f8a0 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_black.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_nanotrasen.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_nanotrasen.png new file mode 100644 index 0000000000..a219d05954 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_nanotrasen.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_syndicate.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_syndicate.png new file mode 100644 index 0000000000..03b7154520 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/singlecard_down_syndicate.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_box.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_box.png new file mode 100644 index 0000000000..24d143e40d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_box.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_box_open.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_box_open.png new file mode 100644 index 0000000000..a8edb3d5cd Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_box_open.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand1.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand1.png new file mode 100644 index 0000000000..a0c5cf0e13 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand1.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand2.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand2.png new file mode 100644 index 0000000000..88a445a27a Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand2.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand3.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand3.png new file mode 100644 index 0000000000..c30454d2b5 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand3.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand4.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand4.png new file mode 100644 index 0000000000..7a9eb2d197 Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand4.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand5.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand5.png new file mode 100644 index 0000000000..3dc0f71ddc Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_hand5.png differ diff --git a/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_joker.png b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_joker.png new file mode 100644 index 0000000000..2e282d0c7d Binary files /dev/null and b/Resources/Textures/EstacaoPirata/Objects/Misc/cards.rsi/syndicate_joker.png differ diff --git a/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_abusing.png b/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_abusing.png new file mode 100644 index 0000000000..02c090efe3 Binary files /dev/null and b/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_abusing.png differ diff --git a/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_registered.png b/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_registered.png new file mode 100644 index 0000000000..aa8e441c0a Binary files /dev/null and b/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_registered.png differ diff --git a/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_suspected.png b/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_suspected.png new file mode 100644 index 0000000000..4c723f8a97 Binary files /dev/null and b/Resources/Textures/Interface/Misc/psionics_icons.rsi/hud_suspected.png differ diff --git a/Resources/Textures/Interface/Misc/psionics_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/psionics_icons.rsi/meta.json new file mode 100644 index 0000000000..556b11590e --- /dev/null +++ b/Resources/Textures/Interface/Misc/psionics_icons.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by CerberusWolfie", + "size": { + "x": 8, + "y": 8 + }, + "states": [ + { + "name": "hud_suspected" + }, + { + "name": "hud_registered" + }, + { + "name": "hud_abusing" + } + ] + } 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 0000000000..156685fe14 Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_arrow_east.png differ diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_east.png.yml b/Resources/Textures/Interface/NavMap/beveled_arrow_east.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_arrow_east.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_north.png b/Resources/Textures/Interface/NavMap/beveled_arrow_north.png new file mode 100644 index 0000000000..70ecd5afb9 Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_arrow_north.png differ diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_north.png.yml b/Resources/Textures/Interface/NavMap/beveled_arrow_north.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_arrow_north.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_south.png b/Resources/Textures/Interface/NavMap/beveled_arrow_south.png new file mode 100644 index 0000000000..0086c42c0e Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_arrow_south.png differ diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_south.png.yml b/Resources/Textures/Interface/NavMap/beveled_arrow_south.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_arrow_south.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_west.png b/Resources/Textures/Interface/NavMap/beveled_arrow_west.png new file mode 100644 index 0000000000..0dd40c204b Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_arrow_west.png differ diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_west.png.yml b/Resources/Textures/Interface/NavMap/beveled_arrow_west.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_arrow_west.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_diamond.png b/Resources/Textures/Interface/NavMap/beveled_diamond.png new file mode 100644 index 0000000000..31fbf68db3 Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_diamond.png differ 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 0000000000..9c88e7c51d Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_diamond_east_west.png differ 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 0000000000..af27998af8 Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_diamond_north_south.png differ diff --git a/Resources/Textures/Interface/NavMap/beveled_diamond_north_south.png.yml b/Resources/Textures/Interface/NavMap/beveled_diamond_north_south.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_diamond_north_south.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_star.png b/Resources/Textures/Interface/NavMap/beveled_star.png new file mode 100644 index 0000000000..0b39d01bd4 Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_star.png differ diff --git a/Resources/Textures/Interface/NavMap/beveled_star.png.yml b/Resources/Textures/Interface/NavMap/beveled_star.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_star.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt index ac76f535c4..6e9491704e 100644 --- a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt +++ b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt @@ -13,3 +13,11 @@ revivify.png by LeonardoDaBepis under CC BY 3.0 edit.svg.png by H2D2 Design under MIT License https://www.svgrepo.com/svg/453928/edit + +bubbles.svg by Lorc under CC BY 3.0 +https://game-icons.net/1x1/lorc/bubbles.html + +oxygen.svg, collapse.svg by varttist (discord) + +extinguisher.svg by Smarticons under Attribution CC BY +https://www.svgrepo.com/svg/394932/extinguisher diff --git a/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg b/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg new file mode 100644 index 0000000000..b04a1a396f --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png new file mode 100644 index 0000000000..187ca63e35 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/chevron-down-solid.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg b/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg new file mode 100644 index 0000000000..0cfbb2cdef --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png new file mode 100644 index 0000000000..572acf4cc2 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/chevron-right-solid.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/collapse.svg b/Resources/Textures/Interface/VerbIcons/collapse.svg new file mode 100644 index 0000000000..e2be0661a4 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/collapse.svg @@ -0,0 +1,22 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/collapse.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/collapse.svg.192dpi.png new file mode 100644 index 0000000000..cb488eaff7 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/collapse.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/collapse.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/collapse.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/collapse.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg b/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg new file mode 100644 index 0000000000..631b87e982 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg.192dpi.png new file mode 100644 index 0000000000..8fb3868f94 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/comment-dots-regular.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/extinguisher.svg b/Resources/Textures/Interface/VerbIcons/extinguisher.svg new file mode 100644 index 0000000000..2c15815430 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/extinguisher.svg @@ -0,0 +1,7 @@ + + + + + + 869 + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/extinguisher.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/extinguisher.svg.192dpi.png new file mode 100644 index 0000000000..cea01249e7 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/extinguisher.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg b/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg new file mode 100644 index 0000000000..b46290c499 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg.192dpi.png new file mode 100644 index 0000000000..b2e367167f Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/layer-group-solid.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/oxygen.svg b/Resources/Textures/Interface/VerbIcons/oxygen.svg new file mode 100644 index 0000000000..ae992a9d72 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/oxygen.svg @@ -0,0 +1,22 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/oxygen.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/oxygen.svg.192dpi.png new file mode 100644 index 0000000000..3cf154839f Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/oxygen.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/oxygen.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/oxygen.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/oxygen.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg b/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg new file mode 100644 index 0000000000..d69d9e3bd6 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg.192dpi.png new file mode 100644 index 0000000000..1c89635b6e Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/paint-roller-solid.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/star-regular.svg b/Resources/Textures/Interface/VerbIcons/star-regular.svg new file mode 100644 index 0000000000..8b8a5dee72 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/star-regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png new file mode 100644 index 0000000000..fc2bd8e90d Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/star-regular.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg b/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg new file mode 100644 index 0000000000..ca2ead602f --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png new file mode 100644 index 0000000000..7cf7e47711 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/star-solid-yellow.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg b/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg new file mode 100644 index 0000000000..440cbd2952 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg.192dpi.png new file mode 100644 index 0000000000..2acc727cc2 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/wand-magic-sparkles-solid.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/xmark-solid.svg b/Resources/Textures/Interface/VerbIcons/xmark-solid.svg new file mode 100644 index 0000000000..c64a8e59d0 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/xmark-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/xmark-solid.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/xmark-solid.svg.192dpi.png new file mode 100644 index 0000000000..a111bf8fc4 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/xmark-solid.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/xmark-solid.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/xmark-solid.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/xmark-solid.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Logo/logo.icns b/Resources/Textures/Logo/logo.icns new file mode 100644 index 0000000000..b49fea90ea Binary files /dev/null and b/Resources/Textures/Logo/logo.icns differ diff --git a/Resources/Textures/Logo/logo.png b/Resources/Textures/Logo/logo.png index f06485e27f..60aa041cce 100644 Binary files a/Resources/Textures/Logo/logo.png and b/Resources/Textures/Logo/logo.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_head.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_head.png new file mode 100644 index 0000000000..713ae3d4bc Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_head.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json b/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json index 8d82ccab51..bd7d1ed4eb 100644 --- a/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Gauze sprites by Github KittenColony / Discord kittencolony (297865728374210561)", + "copyright": "Gauze sprites by Github KittenColony / Discord kittencolony (297865728374210561), gauze_head by github:DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -142,6 +142,10 @@ { "name": "gauze_moth_lowerleg_l", "directions": 4 + }, + { + "name": "gauze_head", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classiclong2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiclong2.png new file mode 100644 index 0000000000..4bf29c6c3c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiclong2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classiclong3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiclong3.png new file mode 100644 index 0000000000..6597c3a3d0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiclong3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longbow.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longbow.png new file mode 100644 index 0000000000..40705175a4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longbow.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 8fd4f5e1b9..1540862d2a 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517)", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack for SS14", "license": "CC-BY-SA-3.0", "states": [ { @@ -567,6 +567,10 @@ "name": "protagonist", "directions": 4 }, + { + "name": "pulato", + "directions": 4 + }, { "name": "quiff", "directions": 4 @@ -782,6 +786,22 @@ { "name": "tailed", "directions": 4 + }, + { + "name": "classiclong2", + "directions": 4 + }, + { + "name": "classiclong3", + "directions": 4 + }, + { + "name": "shaped", + "directions": 4 + }, + { + "name": "longbow", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/pulato.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/pulato.png new file mode 100644 index 0000000000..7fd30556fe Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/pulato.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shaped.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shaped.png new file mode 100644 index 0000000000..f65d7cf444 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shaped.png differ diff --git a/Resources/Textures/Mobs/Customization/plasmaman.rsi/eyes.png b/Resources/Textures/Mobs/Customization/plasmaman.rsi/eyes.png new file mode 100644 index 0000000000..28ce6d9e9e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/plasmaman.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Customization/plasmaman.rsi/meta.json b/Resources/Textures/Mobs/Customization/plasmaman.rsi/meta.json new file mode 100644 index 0000000000..f0bed207c0 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/plasmaman.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Skubman (github: angelofallars)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "eyes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/Bots/batonbot.rsi/batonbot.png b/Resources/Textures/Mobs/Silicon/Bots/batonbot.rsi/batonbot.png new file mode 100644 index 0000000000..b063645cd1 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/batonbot.rsi/batonbot.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/batonbot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/batonbot.rsi/meta.json new file mode 100644 index 0000000000..cb9bb6358b --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/Bots/batonbot.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Tim Falken", + "states": [ + { + "name": "batonbot", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/Bots/disablerbot.rsi/disablerbot.png b/Resources/Textures/Mobs/Silicon/Bots/disablerbot.rsi/disablerbot.png new file mode 100644 index 0000000000..6cebd2767f Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/disablerbot.rsi/disablerbot.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/disablerbot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/disablerbot.rsi/meta.json new file mode 100644 index 0000000000..11518dd793 --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/Bots/disablerbot.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Tim Falken", + "states": [ + { + "name": "disablerbot", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotBlue.png b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotBlue.png new file mode 100644 index 0000000000..800edcb860 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotBlue.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotFFA.png b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotFFA.png new file mode 100644 index 0000000000..e8994abca1 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotFFA.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotGreen.png b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotGreen.png new file mode 100644 index 0000000000..3e82302e6c Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotGreen.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotRed.png b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotRed.png new file mode 100644 index 0000000000..68d0e24929 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotRed.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotYellow.png b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotYellow.png new file mode 100644 index 0000000000..abdef3b926 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/GladiabotYellow.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/meta.json new file mode 100644 index 0000000000..d3ac6b30cf --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/Bots/gladiabot.rsi/meta.json @@ -0,0 +1,56 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Tim Falken", + "states": [ + { + "name": "GladiabotFFA", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + }, + { + "name": "GladiabotRed", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + }, + { + "name": "GladiabotGreen", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + }, + { + "name": "GladiabotBlue", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + }, + { + "name": "GladiabotYellow", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_camera.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_camera.png new file mode 100644 index 0000000000..fd5e2ece28 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_camera.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json b/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json index a3da52233d..c8d174c57b 100644 --- a/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json @@ -29,6 +29,15 @@ ] ] }, + { + "name": "ai_camera", + "delays": [ + [ + 1.0, + 1.0 + ] + ] + }, { "name": "ai_dead" }, diff --git a/Resources/Textures/Mobs/Species/Harpy/displacement.rsi/jumpsuit.png b/Resources/Textures/Mobs/Species/Harpy/displacement.rsi/jumpsuit.png new file mode 100644 index 0000000000..68459ef622 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Harpy/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/Mobs/Species/Harpy/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Harpy/displacement.rsi/meta.json new file mode 100644 index 0000000000..542b7e4b69 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Harpy/displacement.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by AstroDoge (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/brain.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/brain.png new file mode 100644 index 0000000000..06fb867f80 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/brain.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/eyes.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/eyes.png new file mode 100644 index 0000000000..b12859f247 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/heart-off.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/heart-off.png new file mode 100644 index 0000000000..5205aa6474 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/heart-off.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/heart-on.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/heart-on.png new file mode 100644 index 0000000000..99c5641d5b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/heart-on.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/kidneys.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/kidneys.png new file mode 100644 index 0000000000..bf117e4d55 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/kidneys.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/liver.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/liver.png new file mode 100644 index 0000000000..453945a519 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/liver.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/lungs.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/lungs.png new file mode 100644 index 0000000000..6982b741c2 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/lungs.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/meta.json new file mode 100644 index 0000000000..f5b37bb53f --- /dev/null +++ b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/meta.json @@ -0,0 +1,65 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "stomach/tongue taken from TG station at commit https://github.com/tgstation/tgstation/commit/df00d853564efc80a8d10528bbf77ca6960742c4, liver/lungs/kidneys/heart/brain/eyes taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/commit/bd91a1b962fe9bd38e346e9fafd4ebb10784fcb3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stomach" + }, + { + "name": "tongue" + }, + { + "name": "liver" + }, + { + "name": "lungs" + }, + { + "name": "kidneys" + }, + { + "name": "heart-off" + }, + { + "name": "heart-on", + "delays": [ + [ + 0.6, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "brain", + "delays": [ + [ + 3, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "eyes" + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/stomach.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/stomach.png new file mode 100644 index 0000000000..de6fbbe192 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/stomach.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/tongue.png b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/tongue.png new file mode 100644 index 0000000000..fd246dbfda Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/organs.rsi/tongue.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/full.png new file mode 100644 index 0000000000..a00035648e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/head_f.png new file mode 100644 index 0000000000..1c861e1d9f Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/head_f.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/head_m.png new file mode 100644 index 0000000000..1c861e1d9f Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/head_m.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_arm.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_arm.png new file mode 100644 index 0000000000..785150c042 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_foot.png new file mode 100644 index 0000000000..06be449f0b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_hand.png new file mode 100644 index 0000000000..6849df79df Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_leg.png new file mode 100644 index 0000000000..e80de98dff Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/meta.json b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/meta.json new file mode 100644 index 0000000000..db0b13c920 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/meta.json @@ -0,0 +1,62 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG station at commit https://github.com/tgstation/tgstation/commit/fc4de530ce208ad6d91ad85cf241b094e64b2ae5 and modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_arm.png new file mode 100644 index 0000000000..c2e942d0d5 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_foot.png new file mode 100644 index 0000000000..1081917430 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_hand.png new file mode 100644 index 0000000000..bba548419b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_leg.png new file mode 100644 index 0000000000..b10d70ab94 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/torso_f.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/torso_f.png new file mode 100644 index 0000000000..878dd9ed62 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/torso_m.png b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/torso_m.png new file mode 100644 index 0000000000..878dd9ed62 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Plasmaman/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/full.png index 253eb0c3c9..abe4a767c7 100644 Binary files a/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/full.png and b/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_f.png index 9d99bd1890..ce502dbdc6 100644 Binary files a/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_f.png and b/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_f.png differ diff --git a/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_m.png index 9d99bd1890..ce502dbdc6 100644 Binary files a/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_m.png and b/Resources/Textures/Mobs/Species/Shadowkin/parts.rsi/head_m.png differ diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-psi.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-psi.png new file mode 100644 index 0000000000..446d937c2a Binary files /dev/null and b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-psi.png differ diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index d5b9a8df88..586070e500 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav, cart-med made by ArchRBX (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav, cart-med made by ArchRBX (github), cart-psi made by CerberusWolfie (github/discord)", "size": { "x": 32, "y": 32 @@ -81,6 +81,9 @@ }, { "name": "cart-med" + }, + { + "name": "cart-psi" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/icon.png b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/icon.png new file mode 100644 index 0000000000..b61d2ae760 Binary files /dev/null and b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/inhand-left.png new file mode 100644 index 0000000000..a4c38e93fc Binary files /dev/null and b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/inhand-right.png new file mode 100644 index 0000000000..c2b3b59e25 Binary files /dev/null and b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/meta.json b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/meta.json new file mode 100644 index 0000000000..ce34667b41 --- /dev/null +++ b/Resources/Textures/Objects/Misc/extinguisher_refill.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Icon taken from TG station at commit https://github.com/tgstation/tgstation/commit/8337d99a131ce67fcb53dff18af957eefc06bc5e | Inhands taken from TG station at commit https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432 then modified by Skubman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_air_tank.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_air_tank.png new file mode 100644 index 0000000000..692cf7be00 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_air_tank.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_bin.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_bin.png new file mode 100644 index 0000000000..e6b23bb751 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_bin.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_camera.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_camera.png new file mode 100644 index 0000000000..25bfc9a2ea Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_camera.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_chainsword.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_chainsword.png new file mode 100644 index 0000000000..8a2878e934 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_chainsword.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_radio.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_radio.png new file mode 100644 index 0000000000..fa3f24720b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_radio.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_sleeper.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_sleeper.png new file mode 100644 index 0000000000..d3635adb89 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_sleeper.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_syringegun.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_syringegun.png new file mode 100644 index 0000000000..2cf012b4fb Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/mecha_syringegun.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/meta.json b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/meta.json index 5e07ad51fa..b8e924a5ba 100644 --- a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/meta.json @@ -1,7 +1,7 @@ { - "copyright" : "Taken from https://github.com/tgstation/tgstation at at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", - "license" : "CC-BY-SA-3.0", "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/da4d61210600269aaf56a2e309dd31c056252d84 || Mech ChainSword by NULL882 (GitHub)", "size": { "x": 32, "y": 32 @@ -150,6 +150,39 @@ }, { "name": "mecha_kineticgun" + }, + { + "name": "mecha_camera" + }, + { + "name": "mecha_bin" + }, + { + "name": "mecha_air_tank" + }, + { + "name": "mecha_radio" + }, + { + "name": "mecha_sleeper" + }, + { + "name": "mecha_syringegun" + }, + { + "name": "paddy_claw" + }, + { + "name": "paddyupgrade" + }, + { + "name": "mecha_chainsword", + "delays": [ + [ + 0.1, + 0.1 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/paddy_claw.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/paddy_claw.png new file mode 100644 index 0000000000..c6b69723bd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/paddy_claw.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/paddyupgrade.png b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/paddyupgrade.png new file mode 100644 index 0000000000..ad60fd40c0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha_equipment.rsi/paddyupgrade.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_chassis.png b/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_chassis.png index 531ae1d850..3467f89d7f 100644 Binary files a/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_chassis.png and b/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_chassis.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness+o.png b/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness+o.png index 9c2eb36cda..3ecc6d4edc 100644 Binary files a/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness+o.png and b/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness+o.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness.png b/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness.png index de4a5f8a77..81579c0036 100644 Binary files a/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness.png and b/Resources/Textures/Objects/Specific/Mech/ripley_construction.rsi/ripley_harness.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/icon.png new file mode 100644 index 0000000000..99a15087e7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-left.png new file mode 100644 index 0000000000..42d319843d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-right.png new file mode 100644 index 0000000000..a2317f7fac Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/meta.json new file mode 100644 index 0000000000..441fd4f5fe --- /dev/null +++ b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14 and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "ready" + }, + { + "name": "screen" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/ready.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/ready.png new file mode 100644 index 0000000000..cc4b274114 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/ready.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/screen.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/screen.png new file mode 100644 index 0000000000..1a2ac1cdec Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/screen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/icon.png new file mode 100644 index 0000000000..69c4e441de Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-left.png new file mode 100644 index 0000000000..ac0c8d6189 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-right.png new file mode 100644 index 0000000000..c30877c534 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/meta.json new file mode 100644 index 0000000000..441fd4f5fe --- /dev/null +++ b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14 and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "ready" + }, + { + "name": "screen" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/ready.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/ready.png new file mode 100644 index 0000000000..e5a8065ead Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/ready.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/screen.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/screen.png new file mode 100644 index 0000000000..0c7a26a2a5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/screen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen.png new file mode 100644 index 0000000000..7a8ebfec6b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen_empty.png new file mode 100644 index 0000000000..28c0b3c51e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json index 8e9f54f1d0..8872f25f52 100644 --- a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json @@ -96,6 +96,24 @@ }, { "name": "medipen-inhand-right" + }, + { + "name": "punctpen" + }, + { + "name": "punctpen_empty" + }, + { + "name": "pyrapen" + }, + { + "name": "pyrapen_empty" + }, + { + "name": "dexpen" + }, + { + "name": "dexpen_empty" } ] } diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen.png new file mode 100644 index 0000000000..fa529e8d18 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen_empty.png new file mode 100644 index 0000000000..4bd9cd4858 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen.png new file mode 100644 index 0000000000..fee075cc3b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen_empty.png new file mode 100644 index 0000000000..02dfcae6ba Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen_empty.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/icon.png new file mode 100644 index 0000000000..b986e22665 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/meta.json new file mode 100644 index 0000000000..ba5198513b --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation at https://github.com/goonstation/goonstation/pull/13630", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/primed.png new file mode 100644 index 0000000000..0d8b9b7a97 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/bolt-open.png new file mode 100644 index 0000000000..7a11eab654 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..ec34a1b9ea Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..ec34a1b9ea Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/icon.png new file mode 100644 index 0000000000..ba597a8590 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/meta.json new file mode 100644 index 0000000000..ceffec91b5 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b and modified from the foam force poster by IProduceWidgets (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-left.png new file mode 100644 index 0000000000..931a8ef973 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-right.png new file mode 100644 index 0000000000..570f8be130 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/meta.json new file mode 100644 index 0000000000..b89b33c08f --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b sprite created from foam force poster by IProduceWidgets (github)", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..3526954b4e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..297ae7a752 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 3add3a471b..3e793381d0 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -22,4 +22,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Melee/ThronglerPlushie.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/ThronglerPlushie.rsi/icon.png new file mode 100644 index 0000000000..0d2b4152e6 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/ThronglerPlushie.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/ThronglerPlushie.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/ThronglerPlushie.rsi/meta.json new file mode 100644 index 0000000000..64c27d2d3f --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/ThronglerPlushie.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by GandaIfHardcore", + "size": { + "x": 47, + "y": 47 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png b/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png new file mode 100644 index 0000000000..ac7f9f6641 Binary files /dev/null and b/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png differ diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index b6741b195d..9bc48934ae 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273. registry made by CerberusWolfie, based on explosive.", "size": { "x": 32, "y": 32 @@ -913,6 +913,56 @@ ] ] }, + { + "name": "registry", + "directions": 4, + "delays": [ + [ + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1 + ], + [ + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1 + ], + [ + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1 + ], + [ + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 1, + 0.1, + 0.1 + ] + ] + }, { "name": "forensic", "directions": 4, @@ -1013,6 +1063,10 @@ "name": "generic_keys", "directions": 4 }, + { + "name": "generic_panel_open", + "directions": 4 + }, { "name": "generic_keyboard", "directions": 4 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/registry.png b/Resources/Textures/Structures/Machines/computers.rsi/registry.png new file mode 100644 index 0000000000..f682c9be74 Binary files /dev/null and b/Resources/Textures/Structures/Machines/computers.rsi/registry.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png new file mode 100644 index 0000000000..577175edcd Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json new file mode 100644 index 0000000000..217a9f3d78 --- /dev/null +++ b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Made by SlamBamActionman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 4, + "delays":[ + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/base.png b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/base.png new file mode 100644 index 0000000000..4a9a8f6f20 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/base.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/blank.png b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/blank.png new file mode 100644 index 0000000000..7bee0a002b Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/blank.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/icon.png b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/icon.png new file mode 100644 index 0000000000..4ac9e76480 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/lights.png b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/lights.png new file mode 100644 index 0000000000..6108d2b994 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/lights.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/meta.json new file mode 100644 index 0000000000..878c7817a2 --- /dev/null +++ b/Resources/Textures/Structures/Piping/Atmospherics/gas_pipe_sensor.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by chromiumboy (github) for SS14, based on the digital valve from /tg/, taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "blank" + }, + { + "name": "lights", + "delays": [ + [ + 1.0, + 0.25 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png deleted file mode 100644 index ded81ca75f..0000000000 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json index 0046666656..7fa89a8ca1 100644 --- a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json @@ -1,30 +1,60 @@ { "version":1, - "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/discordia-space/CEV-Eris/blob/d1e0161af146835f4fb79d21a6200caa9cc842d0/icons/obj/power.dmi and modified.", + "license":"CC-BY-SA-4.0", + "copyright":"KalimbaMachine (github) & CaasGit (github) for Space Station 14", "size":{"x":32,"y":32}, "states": [ { - "name": "normal", - "select": [], - "flags": {}, - "directions": 8 + "name": "solar_assembly" }, { - "name": "broken", - "select": [], - "flags": {}, - "directions": 1 + "name": "solar_assembly_tracker_circuit" }, { - "name": "static" + "name": "solar_panel_glass_broken" }, { - "name": "solar_assembly" + "name": "solar_panel_plasma_broken" + }, + { + "name": "solar_panel_uranium_broken" + }, + { + "name": "solar_panel_glass" + }, + { + "name": "solar_panel_plasma" + }, + { + "name": "solar_panel_uranium" }, { "name": "solar_tracker" + }, + { + "name": "solar_tracker_broken" + }, + { + "name": "solar_assembly_uncabled" + }, + { + "name": "solar_assembly_tracker_circuit_uncabled" + }, + { + "name": "solar_panel_glass_uncabled" + }, + { + "name": "solar_panel_plasma_uncabled" + }, + { + "name": "solar_panel_uranium_uncabled" + }, + { + "name": "solar_tracker_uncabled" + }, + { + "name": "solar_tracker_broken_uncabled" } ] } diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png deleted file mode 100644 index 1e1c620029..0000000000 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png index 6714f199e4..191ebeaaa3 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png new file mode 100644 index 0000000000..e83efe0869 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png new file mode 100644 index 0000000000..52db0ee4a5 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png new file mode 100644 index 0000000000..d1fc51c95e Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png new file mode 100644 index 0000000000..ae84f90a86 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png new file mode 100644 index 0000000000..13eeac91ce Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png new file mode 100644 index 0000000000..9e4bfbc11f Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png new file mode 100644 index 0000000000..a3777f3a79 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png new file mode 100644 index 0000000000..465a932672 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png new file mode 100644 index 0000000000..c1e181ea91 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png new file mode 100644 index 0000000000..ae41622a4e Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png new file mode 100644 index 0000000000..c2feca3fbd Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png new file mode 100644 index 0000000000..fab9dd3ed7 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png index 17abc02d28..a36865c79a 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png new file mode 100644 index 0000000000..99bdb06475 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png new file mode 100644 index 0000000000..2c8a3ec951 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png new file mode 100644 index 0000000000..d0684fe3df Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png deleted file mode 100644 index 455a061b31..0000000000 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/smes.rsi/advancedsmes-open.png b/Resources/Textures/Structures/Power/smes.rsi/advancedsmes-open.png new file mode 100644 index 0000000000..c45b424600 Binary files /dev/null and b/Resources/Textures/Structures/Power/smes.rsi/advancedsmes-open.png differ diff --git a/Resources/Textures/Structures/Power/smes.rsi/advancedsmes-static.png b/Resources/Textures/Structures/Power/smes.rsi/advancedsmes-static.png new file mode 100644 index 0000000000..7611f14c2c Binary files /dev/null and b/Resources/Textures/Structures/Power/smes.rsi/advancedsmes-static.png differ diff --git a/Resources/Textures/Structures/Power/smes.rsi/advancedsmes.png b/Resources/Textures/Structures/Power/smes.rsi/advancedsmes.png new file mode 100644 index 0000000000..a900d8338f Binary files /dev/null and b/Resources/Textures/Structures/Power/smes.rsi/advancedsmes.png differ diff --git a/Resources/Textures/Structures/Power/smes.rsi/meta.json b/Resources/Textures/Structures/Power/smes.rsi/meta.json index 4b4193ec72..ba82d1c90c 100644 --- a/Resources/Textures/Structures/Power/smes.rsi/meta.json +++ b/Resources/Textures/Structures/Power/smes.rsi/meta.json @@ -1,12 +1,21 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/McRamon/Paradise/blob/b727162ed9dead12de42be5c5b04872934a474e1/icons/obj/power.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/9c7d509354ee030300f63c701da63c17928c3b3b and modified by Swept, advanced-smes, advanced-smes-static, advanced-smes-open modified from smes, smes-open, and static by august-sun (GitHub)", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "advancedsmes" + }, + { + "name": "advancedsmes-static" + }, + { + "name": "advancedsmes-open" + }, { "name": "smes" }, diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json index 751413ad0c..6e0f3306f7 100644 --- a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b. poster52_contraband, poster53_contraband and poster54_contraband taken from https://github.com/vgstation-coders/vgstation13/blob/435ed5f2a7926e91cc31abac3a0d47d7e9ad7ed4/icons/obj/posters.dmi. originmap, poster55_contraband, poster56_contraband, poster57_contraband and poster39_legit by discord brainfood#7460, poster63_contraband by discord foboscheshir_ poster29_legit modified by TJohnson.", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b. poster52_contraband, poster53_contraband and poster54_contraband taken from https://github.com/vgstation-coders/vgstation13/blob/435ed5f2a7926e91cc31abac3a0d47d7e9ad7ed4/icons/obj/posters.dmi. originmap, poster55_contraband, poster56_contraband, poster57_contraband and poster39_legit by discord brainfood#7460, poster63_contraband by discord foboscheshir_, poster52_legit by SlamBamActionman, poster53_legit and the original version by @RCOI on discord, poster29_legit modified by TJohnson.", "size": { "x": 32, "y": 32 @@ -381,6 +381,12 @@ { "name": "poster51_legit" }, + { + "name": "poster52_legit" + }, + { + "name": "poster53_legit" + }, { "name": "random_legit" }, diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster52_legit.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster52_legit.png new file mode 100644 index 0000000000..91954d0edc Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster52_legit.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster53_legit.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster53_legit.png new file mode 100644 index 0000000000..bedaf2c5c4 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster53_legit.png differ 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 0000000000..ec2d3db0f0 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/bath.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index a13df6f7d6..dc26d61cc9 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" }, diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardchin.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardchin.png new file mode 100644 index 0000000000..3a8d1ed155 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardchin.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardlong.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardlong.png new file mode 100644 index 0000000000..d7b1aad864 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardlong.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardshort.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardshort.png new file mode 100644 index 0000000000..bf28dc5904 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardshort.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardthick.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardthick.png new file mode 100644 index 0000000000..a1d455d6a1 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardthick.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardviking.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardviking.png new file mode 100644 index 0000000000..90ae0f344c Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-beardviking.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-bristle.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-bristle.png new file mode 100644 index 0000000000..5a33fecac6 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-bristle.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-mustachewithstubble.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-mustachewithstubble.png new file mode 100644 index 0000000000..ee0c8e7f65 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-mustachewithstubble.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-thickbristle.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-thickbristle.png new file mode 100644 index 0000000000..2e80975282 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/beard-thickbristle.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-arabicgatheredhair.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-arabicgatheredhair.png new file mode 100644 index 0000000000..a602671345 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-arabicgatheredhair.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-classichairmale.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-classichairmale.png new file mode 100644 index 0000000000..7f0d6e3d38 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-classichairmale.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-combedfromside.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-combedfromside.png new file mode 100644 index 0000000000..0f37dd7aee Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-combedfromside.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-longhair.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-longhair.png new file mode 100644 index 0000000000..fc0f54241a Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-longhair.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-manbunold.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-manbunold.png new file mode 100644 index 0000000000..277d00c46e Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-manbunold.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-pigtailtajaran.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-pigtailtajaran.png new file mode 100644 index 0000000000..5b01ffe5cc Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-pigtailtajaran.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-shavedside.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-shavedside.png new file mode 100644 index 0000000000..abe48a688d Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-shavedside.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-shorthaired.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-shorthaired.png new file mode 100644 index 0000000000..13b7700554 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-shorthaired.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-womenbun.png b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-womenbun.png new file mode 100644 index 0000000000..11a31465c5 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/hair-womenbun.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/meta.json b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/meta.json new file mode 100644 index 0000000000..bcaf1ccde9 --- /dev/null +++ b/Resources/Textures/_ADT/Mobs/Customization/Human/custom.rsi/meta.json @@ -0,0 +1,79 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "beard-beardchin", + "directions": 4 + }, + { + "name": "beard-beardlong", + "directions": 4 + }, + { + "name": "beard-beardshort", + "directions": 4 + }, + { + "name": "beard-beardthick", + "directions": 4 + }, + { + "name": "beard-beardviking", + "directions": 4 + }, + { + "name": "beard-bristle", + "directions": 4 + }, + { + "name": "beard-mustachewithstubble", + "directions": 4 + }, + { + "name": "beard-thickbristle", + "directions": 4 + }, + { + "name": "hair-arabicgatheredhair", + "directions": 4 + }, + { + "name": "hair-classichairmale", + "directions": 4 + }, + { + "name": "hair-combedfromside", + "directions": 4 + }, + { + "name": "hair-longhair", + "directions": 4 + }, + { + "name": "hair-manbunold", + "directions": 4 + }, + { + "name": "hair-pigtailtajaran", + "directions": 4 + }, + { + "name": "hair-shavedside", + "directions": 4 + }, + { + "name": "hair-shorthaired", + "directions": 4 + }, + { + "name": "hair-womenbun", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_ADT/Mobs/Customization/augments/headaugs.rsi/iron_jaw.png b/Resources/Textures/_ADT/Mobs/Customization/augments/headaugs.rsi/iron_jaw.png new file mode 100644 index 0000000000..9acadb7170 Binary files /dev/null and b/Resources/Textures/_ADT/Mobs/Customization/augments/headaugs.rsi/iron_jaw.png differ diff --git a/Resources/Textures/_ADT/Mobs/Customization/augments/headaugs.rsi/meta.json b/Resources/Textures/_ADT/Mobs/Customization/augments/headaugs.rsi/meta.json new file mode 100644 index 0000000000..d9336b88fc --- /dev/null +++ b/Resources/Textures/_ADT/Mobs/Customization/augments/headaugs.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by nope_ingeneer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "directions": 4, + "name": "iron_jaw" + } + ] +} diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/handlebar.png b/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/handlebar.png new file mode 100644 index 0000000000..3032455e18 Binary files /dev/null and b/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/handlebar.png differ diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/handlebar2.png b/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/handlebar2.png new file mode 100644 index 0000000000..c0acfbf346 Binary files /dev/null and b/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/handlebar2.png differ diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/meta.json b/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/meta.json new file mode 100644 index 0000000000..ce68ba9113 --- /dev/null +++ b/Resources/Textures/_Corvax/Mobs/Customization/human_facial_hair.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Skyrat-tg at https://github.com/Skyrat-SS13/Skyrat-tg/commit/ad654e76b4c5dd3972cd2a07eb2d4f9658965807", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "handlebar", + "directions": 4 + }, + { + "name": "handlebar2", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/africanpigtails.png b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/africanpigtails.png new file mode 100644 index 0000000000..75afa8079f Binary files /dev/null and b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/africanpigtails.png differ diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffdouble.png b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffdouble.png new file mode 100644 index 0000000000..8132ba10b8 Binary files /dev/null and b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffdouble.png differ diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffleft.png b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffleft.png new file mode 100644 index 0000000000..617d78c8aa Binary files /dev/null and b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffleft.png differ diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffright.png b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffright.png new file mode 100644 index 0000000000..7c66dc74ac Binary files /dev/null and b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/afropuffright.png differ diff --git a/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/meta.json new file mode 100644 index 0000000000..281d4f86c0 --- /dev/null +++ b/Resources/Textures/_Corvax/Mobs/Customization/human_hair.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Skyrat-tg at https://github.com/Skyrat-SS13/Skyrat-tg/commit/ad654e76b4c5dd3972cd2a07eb2d4f9658965807", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "africanpigtails", + "directions": 4 + }, + { + "name": "afropuffdouble", + "directions": 4 + }, + { + "name": "afropuffleft", + "directions": 4 + }, + { + "name": "afropuffright", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears.png new file mode 100644 index 0000000000..7444faecf0 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears_near.png new file mode 100644 index 0000000000..c069ac4ab4 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears.png new file mode 100644 index 0000000000..c335e704e2 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears_near.png new file mode 100644 index 0000000000..e7af318b33 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/meta.json new file mode 100644 index 0000000000..34b9f717da --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference to markings ('patch') tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/3610cfd4ea7e9bffc804320851f0b0a625db1dba, meanwhile ears are made by Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Minor tweaks and '_near' versions by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ears", + "directions": 4 + }, + { + "name": "inears", + "directions": 4 + }, + { + "name": "outears", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "ears_near", + "directions": 4 + }, + { + "name": "inears_near", + "directions": 4 + }, + { + "name": "outears_near", + "directions": 4 + }, + { + "name": "patch_near", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears.png new file mode 100644 index 0000000000..4f5041880b Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears_near.png new file mode 100644 index 0000000000..54583699fd Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch.png new file mode 100644 index 0000000000..591dde13ee Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch_near.png new file mode 100644 index 0000000000..1595303ac9 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_inner.png new file mode 100644 index 0000000000..57bcdaa8b9 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_outer.png new file mode 100644 index 0000000000..24fe753ebd Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_inner.png new file mode 100644 index 0000000000..b447625e18 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_outer.png new file mode 100644 index 0000000000..3590520cda Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_inner.png new file mode 100644 index 0000000000..b87d5560ce Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_outer.png new file mode 100644 index 0000000000..7b3e947430 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/fuzzy_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/fuzzy_inner.png new file mode 100644 index 0000000000..2656ff2a99 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/fuzzy_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/meta.json new file mode 100644 index 0000000000..45e8f84702 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/meta.json @@ -0,0 +1,75 @@ +{ + "version": 1, + "copyright": "Felinid ears made by @Vordenburg for Nyanotrasen @ https://github.com/Nyanotrasen/Nyanotrasen/pull/581/commits/77fe4c38589516ceef533de17cde56665ce970c7, modified by SX-7.", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "basic_inner", + "directions": 4 + }, + { + "name": "basic_outer", + "directions": 4 + }, + { + "name": "curled_inner", + "directions": 4 + }, + { + "name": "curled_outer", + "directions": 4 + }, + { + "name": "fuzzy_inner", + "directions": 4 + }, + { + "name": "tall_outer", + "directions": 4 + }, + { + "name": "tall_inner", + "directions": 4 + }, + { + "name": "tall_fuzz", + "directions": 4 + }, + { + "name": "torn_outer", + "directions": 4 + }, + { + "name": "torn_inner", + "directions": 4 + }, + { + "name": "stubby_outer", + "directions": 4 + }, + { + "name": "stubby_inner", + "directions": 4 + }, + { + "name": "droopy_outer", + "directions": 4 + }, + { + "name": "droopy_inner", + "directions": 4 + }, + { + "name": "wide_inner", + "directions": 4 + }, + { + "name": "wide_outer", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_inner.png new file mode 100644 index 0000000000..2cb7d1093d Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_outer.png new file mode 100644 index 0000000000..57e8c8f375 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_fuzz.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_fuzz.png new file mode 100644 index 0000000000..c6e610549a Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_fuzz.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_inner.png new file mode 100644 index 0000000000..6755edeec1 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_outer.png new file mode 100644 index 0000000000..5ea6dbbaa5 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_inner.png new file mode 100644 index 0000000000..abdb77c487 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_outer.png new file mode 100644 index 0000000000..d5242590cf Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_inner.png new file mode 100644 index 0000000000..eaa1ff64a5 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_outer.png new file mode 100644 index 0000000000..ae964a487d Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail.png new file mode 100644 index 0000000000..afd2c8384c Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail_tip.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail_tip.png new file mode 100644 index 0000000000..cbfe070e29 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail_tip.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/meta.json new file mode 100644 index 0000000000..a85e714e7a --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "copyright": "apparently splurt-station https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/96703f76bccd8fe6a96b78524efb97a9af661767", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base_fox_tail", + "directions": 4 + }, + { + "name": "base_fox_tail_tip", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/meta.json new file mode 100644 index 0000000000..a6d17cb0dd --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/3610cfd4ea7e9bffc804320851f0b0a625db1dba. Minor tweaks by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "muzzle", + "directions": 4 + }, + { + "name": "muzzle_large", + "directions": 4 + }, + { + "name": "nose", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "points", + "directions": 4 + }, + { + "name": "tiger_face", + "directions": 4 + }, + { + "name": "tiger_head", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle.png new file mode 100644 index 0000000000..67030feac8 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle_large.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle_large.png new file mode 100644 index 0000000000..f96ed03537 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle_large.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/nose.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/nose.png new file mode 100644 index 0000000000..31bc5f06d8 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/nose.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/patch.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/patch.png new file mode 100644 index 0000000000..64f3effae9 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/patch.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/points.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/points.png new file mode 100644 index 0000000000..dff01d78ae Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/points.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_face.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_face.png new file mode 100644 index 0000000000..36d8617fab Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_face.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_head.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_head.png new file mode 100644 index 0000000000..8ee160777b Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_head.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/meta.json new file mode 100644 index 0000000000..5f23a51818 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/3610cfd4ea7e9bffc804320851f0b0a625db1dba. Minor tweaks by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "patch", + "directions": 4 + }, + { + "name": "points", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/patch.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/patch.png new file mode 100644 index 0000000000..835270a15b Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/patch.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/points.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/points.png new file mode 100644 index 0000000000..c38d3d2e3a Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/points.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/meta.json new file mode 100644 index 0000000000..f61cbf5e37 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Sprite reorganization by SX-7, but no changes to sprites themselves", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tail_anim_rings", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "tail_rings", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_anim_rings.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_anim_rings.png new file mode 100644 index 0000000000..b60ffd8620 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_anim_rings.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_rings.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_rings.png new file mode 100644 index 0000000000..84f6b2542c Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_rings.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/meta.json new file mode 100644 index 0000000000..39050cb344 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Sprite reorganization by SX-7, but no changes to sprites themselves", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tail", + "directions": 4 + }, + { + "name": "tail_anim", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ] + ] + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail.png new file mode 100644 index 0000000000..cbdeebb613 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail_anim.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail_anim.png new file mode 100644 index 0000000000..a849bf7cbb Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail_anim.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/belly.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/belly.png new file mode 100644 index 0000000000..c7f9e78255 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/belly.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/crest.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/crest.png new file mode 100644 index 0000000000..ccb52f0883 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/crest.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/fullbelly.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/fullbelly.png new file mode 100644 index 0000000000..bcb6dc67ac Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/fullbelly.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/meta.json new file mode 100644 index 0000000000..66d6f47649 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/38717e3b034550b3c0a9f3c5f3c78a957dcad0d9. Minor tweaks by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "belly", + "directions": 4 + }, + { + "name": "crest", + "directions": 4 + }, + { + "name": "fullbelly", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_f.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_f.png new file mode 100644 index 0000000000..a89cf12a1f Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_f.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_m.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_m.png new file mode 100644 index 0000000000..1d01e03523 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_m.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_arm.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_arm.png new file mode 100644 index 0000000000..7873edd652 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_foot.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_foot.png new file mode 100644 index 0000000000..4fcc3ea79c Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_hand.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_hand.png new file mode 100644 index 0000000000..dc9c2b6422 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_leg.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_leg.png new file mode 100644 index 0000000000..fd0008474c Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/meta.json b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/meta.json new file mode 100644 index 0000000000..13e804ad54 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Creator was not supplied, oldest reference tracked to Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Small changes made by SX-7. Names are as provided, sans torso_f front which is a combined version of modified torso_m front, and modified torso_f", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_arm.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_arm.png new file mode 100644 index 0000000000..f0449da695 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_foot.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_foot.png new file mode 100644 index 0000000000..5d5d6ce77e Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_hand.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_hand.png new file mode 100644 index 0000000000..e11a7ad5e9 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_leg.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_leg.png new file mode 100644 index 0000000000..80b4a864d7 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_f.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_f.png new file mode 100644 index 0000000000..c18fc1458c Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_m.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_m.png new file mode 100644 index 0000000000..f5650c6f52 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/_Goobstation/Actions/modsuit.rsi/activate-ready.png b/Resources/Textures/_Goobstation/Actions/modsuit.rsi/activate-ready.png new file mode 100644 index 0000000000..c604a291a5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Actions/modsuit.rsi/activate-ready.png differ diff --git a/Resources/Textures/_Goobstation/Actions/modsuit.rsi/activate.png b/Resources/Textures/_Goobstation/Actions/modsuit.rsi/activate.png new file mode 100644 index 0000000000..aafa86494e Binary files /dev/null and b/Resources/Textures/_Goobstation/Actions/modsuit.rsi/activate.png differ diff --git a/Resources/Textures/_Goobstation/Actions/modsuit.rsi/meta.json b/Resources/Textures/_Goobstation/Actions/modsuit.rsi/meta.json new file mode 100644 index 0000000000..86935425a0 --- /dev/null +++ b/Resources/Textures/_Goobstation/Actions/modsuit.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "activate" + }, + { + "name": "activate-ready" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/control-sealed.png b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/control-sealed.png new file mode 100644 index 0000000000..b6623346a2 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/control-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/control.png b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/control.png new file mode 100644 index 0000000000..3c697a6408 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/control.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/equipped-BACKPACK-sealed.png b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/equipped-BACKPACK-sealed.png new file mode 100644 index 0000000000..8c9541f32f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/equipped-BACKPACK-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..4f1b124080 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/meta.json new file mode 100644 index 0000000000..ad0319fbe8 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Modsuits/standard.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "control" + }, + { + "name": "control-sealed", + "delays": [[ 0.1, 0.1, 0.1, 0.1 ]] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-BACKPACK-sealed", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/equipped-HAND-sealed.png b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/equipped-HAND-sealed.png new file mode 100644 index 0000000000..bbe4c7db6f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/equipped-HAND-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/equipped-HAND.png b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/equipped-HAND.png new file mode 100644 index 0000000000..6cf7712099 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/gauntlets-sealed.png b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/gauntlets-sealed.png new file mode 100644 index 0000000000..c118476a06 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/gauntlets-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/gauntlets.png b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/gauntlets.png new file mode 100644 index 0000000000..8657069573 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/gauntlets.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/meta.json new file mode 100644 index 0000000000..c89900d9aa --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Hands/Modsuits/standard.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "gauntlets" + }, + { + "name": "gauntlets-sealed" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "equipped-HAND-sealed", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/icon-flash.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/icon-flash.png new file mode 100644 index 0000000000..f80aeccc2f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/icon-flash.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/icon.png new file mode 100644 index 0000000000..2a29e4a266 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/meta.json new file mode 100644 index 0000000000..526f532260 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Bubberstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-equipped-HELMET.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..ee6df48cdf Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-inhand-left.png new file mode 100644 index 0000000000..cfc750e51a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-inhand-right.png new file mode 100644 index 0000000000..60a12ae71e Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-equipped-HELMET.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..8c5be62a40 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-inhand-left.png new file mode 100644 index 0000000000..651589caa7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-inhand-right.png new file mode 100644 index 0000000000..45ca99a312 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hardsuits/blueshield.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/equipped-HEAD-sealed.png b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/equipped-HEAD-sealed.png new file mode 100644 index 0000000000..bfb719e985 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/equipped-HEAD-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/equipped-HEAD.png b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/equipped-HEAD.png new file mode 100644 index 0000000000..b9f66137b8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/equipped-HEAD.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/helmet-sealed.png b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/helmet-sealed.png new file mode 100644 index 0000000000..0031e63fb3 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/helmet-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/helmet.png b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/helmet.png new file mode 100644 index 0000000000..968c155414 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/helmet.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/meta.json new file mode 100644 index 0000000000..77303d7be4 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Head/Modsuits/standard.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "helmet" + }, + { + "name": "helmet-sealed" + }, + { + "name": "equipped-HEAD", + "directions": 4 + }, + { + "name": "equipped-HEAD-sealed", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..1ab40232cb Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/icon-open.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/icon-open.png new file mode 100644 index 0000000000..dc8dbab657 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/icon-open.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/icon.png new file mode 100644 index 0000000000..5f188d99cb Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/inhand-left.png new file mode 100644 index 0000000000..9ff8595a98 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/inhand-right.png new file mode 100644 index 0000000000..d675270c3a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/meta.json new file mode 100644 index 0000000000..c41e6cd75f --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Bubberstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..69cbebb00b Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-inhand-left.png new file mode 100644 index 0000000000..c24b257e1e Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-inhand-right.png new file mode 100644 index 0000000000..2c753357e1 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_coat.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..880d206b66 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/icon.png new file mode 100644 index 0000000000..84b80fb21f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/inhand-left.png new file mode 100644 index 0000000000..73f11740c3 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/inhand-right.png new file mode 100644 index 0000000000..ffdb00debd Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/meta.json new file mode 100644 index 0000000000..99a2199f85 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_kimono.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Bubberstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..21e8bedf63 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/icon.png new file mode 100644 index 0000000000..21bf1ae6a2 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/inhand-left.png new file mode 100644 index 0000000000..e8ac60197e Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/inhand-right.png new file mode 100644 index 0000000000..a60f09d0e7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/meta.json new file mode 100644 index 0000000000..99a2199f85 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_marine.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Bubberstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..4724aadc54 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/icon.png new file mode 100644 index 0000000000..0c081ed8e5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/inhand-left.png new file mode 100644 index 0000000000..8aaa00e537 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/inhand-right.png new file mode 100644 index 0000000000..cfaec0df79 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/meta.json new file mode 100644 index 0000000000..99a2199f85 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_vest.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Bubberstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..daad3eb3e4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/icon.png new file mode 100644 index 0000000000..712e052bbe Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/inhand-left.png new file mode 100644 index 0000000000..bec4a86062 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/inhand-right.png new file mode 100644 index 0000000000..08d9710b8b Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/meta.json new file mode 100644 index 0000000000..169985e05e --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work of the inhand sprites by TJohnson. Resprite of the inhand sprites by ShirouAjisai. Icon & OUTERCLOTHING from Bubberstation.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "segment" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/segment.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/segment.png new file mode 100644 index 0000000000..4b973de153 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Hardsuits/Combat/blueshield.rsi/segment.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/chestplate-sealed.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/chestplate-sealed.png new file mode 100644 index 0000000000..5f374eecd9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/chestplate-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/chestplate.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/chestplate.png new file mode 100644 index 0000000000..404383a236 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/chestplate.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/equipped-OUTERCLOTHING-sealed.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/equipped-OUTERCLOTHING-sealed.png new file mode 100644 index 0000000000..41ec1315e4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/equipped-OUTERCLOTHING-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..708d97c92a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/meta.json new file mode 100644 index 0000000000..0f10810f22 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Modsuits/standard.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chestplate" + }, + { + "name": "chestplate-sealed" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-sealed", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/boots-sealed.png b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/boots-sealed.png new file mode 100644 index 0000000000..4d141b313f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/boots-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/boots.png b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/boots.png new file mode 100644 index 0000000000..7dcd0cf6e5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/boots.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/equipped-FEET-sealed.png b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/equipped-FEET-sealed.png new file mode 100644 index 0000000000..5ad67b6efa Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/equipped-FEET-sealed.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/equipped-FEET.png b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/equipped-FEET.png new file mode 100644 index 0000000000..a95a4bb37d Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/meta.json new file mode 100644 index 0000000000..136eede0ec --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Shoes/Modsuits/standard.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "boots" + }, + { + "name": "boots-sealed" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "equipped-FEET-sealed", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/meta.json b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/meta.json new file mode 100644 index 0000000000..2687b6079d --- /dev/null +++ b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from TG", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "modpower0" + }, + { + "name": "modpower1" + }, + { + "name": "modpower2" + }, + { + "name": "modpower3" + }, + { + "name": "modpower4" + }, + { + "name": "modpower5" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower0.png b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower0.png new file mode 100644 index 0000000000..2e738ca7e7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower0.png differ diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower1.png b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower1.png new file mode 100644 index 0000000000..62780521b7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower1.png differ diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower2.png b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower2.png new file mode 100644 index 0000000000..21d8e7f6e7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower2.png differ diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower3.png b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower3.png new file mode 100644 index 0000000000..80c0d1dcfc Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower3.png differ diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower4.png b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower4.png new file mode 100644 index 0000000000..d6b47c7577 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower4.png differ diff --git a/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower5.png b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower5.png new file mode 100644 index 0000000000..d6b47c7577 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Alerts/modpower.rsi/modpower5.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/braidedExtensions.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/braidedExtensions.png new file mode 100644 index 0000000000..9df64362f5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/braidedExtensions.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/cometTail.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/cometTail.png new file mode 100644 index 0000000000..1dfb6e85a0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/cometTail.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/fantasyHair.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/fantasyHair.png new file mode 100644 index 0000000000..71beae1358 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/fantasyHair.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/flatTwistsUpdo.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/flatTwistsUpdo.png new file mode 100644 index 0000000000..c23886cf8f Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/flatTwistsUpdo.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/floorlengthBraid.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/floorlengthBraid.png new file mode 100644 index 0000000000..74649ba09e Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/floorlengthBraid.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/floorlengthWavy.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/floorlengthWavy.png new file mode 100644 index 0000000000..bd0d638c17 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/floorlengthWavy.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frizzyBraid.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frizzyBraid.png new file mode 100644 index 0000000000..3f8cfd65f8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frizzyBraid.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsLong.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsLong.png new file mode 100644 index 0000000000..008f09d744 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsLong.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsMedium.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsMedium.png new file mode 100644 index 0000000000..6c423a7746 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsMedium.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsShort.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsShort.png new file mode 100644 index 0000000000..a99d8fb497 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/frontBraidsShort.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/hairnet.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/hairnet.png new file mode 100644 index 0000000000..d46f40eb06 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/hairnet.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/jellyfish.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/jellyfish.png new file mode 100644 index 0000000000..bf9401a861 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/jellyfish.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/kazuyaMishima.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/kazuyaMishima.png new file mode 100644 index 0000000000..eafcda2482 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/kazuyaMishima.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longBraids.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longBraids.png new file mode 100644 index 0000000000..5a8a963452 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longBraids.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longCurvy.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longCurvy.png new file mode 100644 index 0000000000..f8ba2d8cac Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longCurvy.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longPompadour.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longPompadour.png new file mode 100644 index 0000000000..613b19a114 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/longPompadour.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/mediumCurls.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/mediumCurls.png new file mode 100644 index 0000000000..d0960ba875 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/mediumCurls.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/meta.json new file mode 100644 index 0000000000..c3074508a6 --- /dev/null +++ b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "copyright": "Sprited by Bloomyex and implemented by RobynTheWarcrime, FrizzyBraid by Renee - https://discord.com/channels/1202734573247795300/1288192265319223387/1288887697917607936 | flatTwistsUpdo edited by Skubman", + "license": "CC-BY-SA-3.0", + "states": [ + { + "name": "braidedExtensions", + "directions": 4 + }, + { + "name": "cometTail", + "directions": 4 + }, + { + "name": "fantasyHair", + "directions": 4 + }, + { + "name": "flatTwistsUpdo", + "directions": 4 + }, + { + "name": "floorlengthBraid", + "directions": 4 + }, + { + "name": "floorlengthWavy", + "directions": 4 + }, + { + "name": "frizzyBraid", + "directions": 4 + }, + { + "name": "frontBraidsLong", + "directions": 4 + }, + { + "name": "frontBraidsMedium", + "directions": 4 + }, + { + "name": "frontBraidsShort", + "directions": 4 + }, + { + "name": "hairnet", + "directions": 4 + }, + { + "name": "jellyfish", + "directions": 4 + }, + { + "name": "kazuyaMishima", + "directions": 4 + }, + { + "name": "longBraids", + "directions": 4 + }, + { + "name": "longCurvy", + "directions": 4 + }, + { + "name": "longPompadour", + "directions": 4 + }, + { + "name": "mediumCurls", + "directions": 4 + }, + { + "name": "mullet", + "directions": 4 + }, + { + "name": "pelvicLengthBraid", + "directions": 4 + }, + { + "name": "plateau", + "directions": 4 + }, + { + "name": "queenBee", + "directions": 4 + }, + { + "name": "saggedMohawk", + "directions": 4 + }, + { + "name": "sharpMohawk", + "directions": 4 + }, + { + "name": "shortAndPoofy", + "directions": 4 + }, + { + "name": "shortCurls", + "directions": 4 + }, + { + "name": "shoulderLengthBraid", + "directions": 4 + }, + { + "name": "sideSpike", + "directions": 4 + }, + { + "name": "spaceLoops", + "directions": 4 + }, + { + "name": "star", + "directions": 4 + }, + { + "name": "starFro", + "directions": 4 + }, + { + "name": "styledCurls", + "directions": 4 + }, + { + "name": "unkemptScientist", + "directions": 4 + }, + { + "name": "wispy", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/mullet.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/mullet.png new file mode 100644 index 0000000000..1e76c07a9c Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/mullet.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/pelvicLengthBraid.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/pelvicLengthBraid.png new file mode 100644 index 0000000000..171ec69f5c Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/pelvicLengthBraid.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/plateau.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/plateau.png new file mode 100644 index 0000000000..04edf9cdd9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/plateau.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/queenBee.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/queenBee.png new file mode 100644 index 0000000000..54d50924d4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/queenBee.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/saggedMohawk.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/saggedMohawk.png new file mode 100644 index 0000000000..c895dc5699 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/saggedMohawk.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/sharpMohawk.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/sharpMohawk.png new file mode 100644 index 0000000000..54a01f213d Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/sharpMohawk.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shortAndPoofy.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shortAndPoofy.png new file mode 100644 index 0000000000..9badee4ad3 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shortAndPoofy.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shortCurls.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shortCurls.png new file mode 100644 index 0000000000..e11e4a8576 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shortCurls.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shoulderLengthBraid.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shoulderLengthBraid.png new file mode 100644 index 0000000000..49dc670def Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/shoulderLengthBraid.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/sideSpike.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/sideSpike.png new file mode 100644 index 0000000000..e1424eb941 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/sideSpike.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/spaceLoops.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/spaceLoops.png new file mode 100644 index 0000000000..940dc18938 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/spaceLoops.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/star.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/star.png new file mode 100644 index 0000000000..c6f91e1564 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/star.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/starFro.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/starFro.png new file mode 100644 index 0000000000..702167f80b Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/starFro.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/styledCurls.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/styledCurls.png new file mode 100644 index 0000000000..2f2038cc64 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/styledCurls.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/unkemptScientist.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/unkemptScientist.png new file mode 100644 index 0000000000..088fe4da17 Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/unkemptScientist.png differ diff --git a/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/wispy.png b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/wispy.png new file mode 100644 index 0000000000..5f0d1773ec Binary files /dev/null and b/Resources/Textures/_Goobstation/Mobs/Customization/human_hair.rsi/wispy.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke0.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke0.png new file mode 100644 index 0000000000..8a88cec708 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke0.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke1.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke1.png new file mode 100644 index 0000000000..e0c9e427c1 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke1.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke10.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke10.png new file mode 100644 index 0000000000..09fcc84858 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke10.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke11.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke11.png new file mode 100644 index 0000000000..e547edb9b5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke11.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke12.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke12.png new file mode 100644 index 0000000000..55fc94a22f Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke12.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke13.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke13.png new file mode 100644 index 0000000000..4acdbaf256 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke13.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke14.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke14.png new file mode 100644 index 0000000000..248eb8b971 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke14.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke15.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke15.png new file mode 100644 index 0000000000..6debc16399 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke15.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke16.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke16.png new file mode 100644 index 0000000000..7cc4912fd9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke16.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke2.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke2.png new file mode 100644 index 0000000000..aa0010fc7d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke2.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke3.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke3.png new file mode 100644 index 0000000000..4e877ed690 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke3.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke4.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke4.png new file mode 100644 index 0000000000..065c065e6f Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke4.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke5.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke5.png new file mode 100644 index 0000000000..997a7b9414 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke5.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke6.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke6.png new file mode 100644 index 0000000000..a4f188364a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke6.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke7.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke7.png new file mode 100644 index 0000000000..bf5d31c74e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke7.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke8.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke8.png new file mode 100644 index 0000000000..182863ce6e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke8.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke9.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke9.png new file mode 100644 index 0000000000..9d24298d6e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke9.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_chassis.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_chassis.png new file mode 100644 index 0000000000..8a88cec708 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_chassis.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_harness+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_harness+o.png new file mode 100644 index 0000000000..c752b5066d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_harness+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_harness.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_harness.png new file mode 100644 index 0000000000..c752b5066d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_harness.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_head+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_head+o.png new file mode 100644 index 0000000000..559fe1a35a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_head+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_head.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_head.png new file mode 100644 index 0000000000..66eb01fe50 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_head.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_l_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_l_arm+o.png new file mode 100644 index 0000000000..163500ca49 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_l_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_l_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_l_arm.png new file mode 100644 index 0000000000..4b8912ef27 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_l_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_r_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_r_arm+o.png new file mode 100644 index 0000000000..21fc39da63 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_r_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_r_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_r_arm.png new file mode 100644 index 0000000000..38bb6cf779 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_r_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_treads+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_treads+o.png new file mode 100644 index 0000000000..be12f067e7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_treads+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_treads.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_treads.png new file mode 100644 index 0000000000..be12f067e7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/clarke_treads.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/meta.json new file mode 100644 index 0000000000..1730a88c1d --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Specific/Mech/clarke_construction.rsi/meta.json @@ -0,0 +1,95 @@ +{ + "copyright" : "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/91af16bcbfd2dd363a89d846ae2acd6d655083c2", + "license" : "CC-BY-SA-3.0", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "clarke_chassis" + }, + { + "name": "clarke_harness" + }, + { + "name": "clarke_harness+o" + }, + { + "name": "clarke_head" + }, + { + "name": "clarke_head+o" + }, + { + "name": "clarke_r_arm" + }, + { + "name": "clarke_r_arm+o" + }, + { + "name": "clarke_l_arm" + }, + { + "name": "clarke_l_arm+o" + }, + { + "name": "clarke_treads" + }, + { + "name": "clarke_treads+o" + }, + { + "name": "clarke0" + }, + { + "name": "clarke1" + }, + { + "name": "clarke2" + }, + { + "name": "clarke3" + }, + { + "name": "clarke4" + }, + { + "name": "clarke5" + }, + { + "name": "clarke6" + }, + { + "name": "clarke7" + }, + { + "name": "clarke8" + }, + { + "name": "clarke9" + }, + { + "name": "clarke10" + }, + { + "name": "clarke11" + }, + { + "name": "clarke12" + }, + { + "name": "clarke13" + }, + { + "name": "clarke14" + }, + { + "name": "clarke15" + }, + { + "name": "clarke16" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand0.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand0.png new file mode 100644 index 0000000000..9d8db1028a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand0.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand1.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand1.png new file mode 100644 index 0000000000..2f4c63b8c5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand1.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand10.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand10.png new file mode 100644 index 0000000000..32f6a064d4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand10.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand11.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand11.png new file mode 100644 index 0000000000..0e1f59cc33 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand11.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand12.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand12.png new file mode 100644 index 0000000000..4e5946d44a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand12.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand13.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand13.png new file mode 100644 index 0000000000..32e8f4169b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand13.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand14.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand14.png new file mode 100644 index 0000000000..c1cf6d5485 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand14.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand15.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand15.png new file mode 100644 index 0000000000..da8af5a091 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand15.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand16.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand16.png new file mode 100644 index 0000000000..c8b51220dd Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand16.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand17.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand17.png new file mode 100644 index 0000000000..3da36ede38 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand17.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand18.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand18.png new file mode 100644 index 0000000000..b3f022df3c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand18.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand2.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand2.png new file mode 100644 index 0000000000..63cc45f39b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand2.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand3.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand3.png new file mode 100644 index 0000000000..10a9b76423 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand3.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand4.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand4.png new file mode 100644 index 0000000000..f310689c1c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand4.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand5.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand5.png new file mode 100644 index 0000000000..832d88cba3 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand5.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand6.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand6.png new file mode 100644 index 0000000000..6891cecaa4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand6.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand7.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand7.png new file mode 100644 index 0000000000..95de129416 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand7.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand8.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand8.png new file mode 100644 index 0000000000..191fe7e698 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand8.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand9.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand9.png new file mode 100644 index 0000000000..1c1c7c53c9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand9.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_armor.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_armor.png new file mode 100644 index 0000000000..b7925d3ecc Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_armor.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_chassis.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_chassis.png new file mode 100644 index 0000000000..b94f935a07 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_chassis.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_harness+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_harness+o.png new file mode 100644 index 0000000000..09c1d9296e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_harness+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_harness.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_harness.png new file mode 100644 index 0000000000..75bc46691e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_harness.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_head+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_head+o.png new file mode 100644 index 0000000000..2e87f14fcf Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_head+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_head.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_head.png new file mode 100644 index 0000000000..30a4aa31f9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_head.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_arm+o.png new file mode 100644 index 0000000000..0c168d0cdb Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_arm.png new file mode 100644 index 0000000000..ab3a803f54 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_leg+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_leg+o.png new file mode 100644 index 0000000000..3603c6df8b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_leg+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_leg.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_leg.png new file mode 100644 index 0000000000..f6f9377ffe Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_l_leg.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_arm+o.png new file mode 100644 index 0000000000..0000a1a5c6 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_arm.png new file mode 100644 index 0000000000..4934a7a277 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_leg+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_leg+o.png new file mode 100644 index 0000000000..21887b6dec Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_leg+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_leg.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_leg.png new file mode 100644 index 0000000000..2daa3d3919 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/durand_r_leg.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/meta.json new file mode 100644 index 0000000000..d2841cd412 --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Specific/Mech/durand_construction.rsi/meta.json @@ -0,0 +1,111 @@ +{ + "copyright" : "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/91af16bcbfd2dd363a89d846ae2acd6d655083c2", + "license" : "CC-BY-SA-3.0", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "durand_chassis" + }, + { + "name": "durand_harness" + }, + { + "name": "durand_armor" + }, + { + "name": "durand_harness+o" + }, + { + "name": "durand_head" + }, + { + "name": "durand_head+o" + }, + { + "name": "durand_r_arm" + }, + { + "name": "durand_r_arm+o" + }, + { + "name": "durand_l_arm" + }, + { + "name": "durand_l_arm+o" + }, + { + "name": "durand_r_leg" + }, + { + "name": "durand_r_leg+o" + }, + { + "name": "durand_l_leg" + }, + { + "name": "durand_l_leg+o" + }, + { + "name": "durand0" + }, + { + "name": "durand1" + }, + { + "name": "durand2" + }, + { + "name": "durand3" + }, + { + "name": "durand4" + }, + { + "name": "durand5" + }, + { + "name": "durand6" + }, + { + "name": "durand7" + }, + { + "name": "durand8" + }, + { + "name": "durand9" + }, + { + "name": "durand10" + }, + { + "name": "durand11" + }, + { + "name": "durand12" + }, + { + "name": "durand13" + }, + { + "name": "durand14" + }, + { + "name": "durand15" + }, + { + "name": "durand16" + }, + { + "name": "durand17" + }, + { + "name": "durand18" + } + ] + } + \ No newline at end of file diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax0.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax0.png new file mode 100644 index 0000000000..492836d79c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax0.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax1.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax1.png new file mode 100644 index 0000000000..064c573487 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax1.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax10.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax10.png new file mode 100644 index 0000000000..98f3307ae3 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax10.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax11.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax11.png new file mode 100644 index 0000000000..c0c5be8089 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax11.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax12.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax12.png new file mode 100644 index 0000000000..a15acf6f12 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax12.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax13.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax13.png new file mode 100644 index 0000000000..f08f1dc515 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax13.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax14.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax14.png new file mode 100644 index 0000000000..f08f1dc515 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax14.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax15.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax15.png new file mode 100644 index 0000000000..f08f1dc515 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax15.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax16.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax16.png new file mode 100644 index 0000000000..b95d4e7ec9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax16.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax17.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax17.png new file mode 100644 index 0000000000..7c33b55f17 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax17.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax18.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax18.png new file mode 100644 index 0000000000..1411d88dca Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax18.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax19.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax19.png new file mode 100644 index 0000000000..6fad0c0d1d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax19.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax2.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax2.png new file mode 100644 index 0000000000..b338ea867b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax2.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax20.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax20.png new file mode 100644 index 0000000000..ae0f808c95 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax20.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax3.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax3.png new file mode 100644 index 0000000000..cca6b2de54 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax3.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax4.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax4.png new file mode 100644 index 0000000000..cd98f134f5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax4.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax5.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax5.png new file mode 100644 index 0000000000..a078a264c8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax5.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax6.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax6.png new file mode 100644 index 0000000000..fad94386f0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax6.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax7.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax7.png new file mode 100644 index 0000000000..dfde3fe348 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax7.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax8.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax8.png new file mode 100644 index 0000000000..c0295667e8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax8.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax9.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax9.png new file mode 100644 index 0000000000..4c101e4fcf Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax9.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_armor.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_armor.png new file mode 100644 index 0000000000..70c43bd960 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_armor.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_chassis.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_chassis.png new file mode 100644 index 0000000000..451c80bef9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_chassis.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_harness+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_harness+o.png new file mode 100644 index 0000000000..5b6ad43d37 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_harness+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_harness.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_harness.png new file mode 100644 index 0000000000..403a574ff5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_harness.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_head+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_head+o.png new file mode 100644 index 0000000000..2f84e0bf96 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_head+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_head.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_head.png new file mode 100644 index 0000000000..078ea8017b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_head.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_arm+o.png new file mode 100644 index 0000000000..7d8739484e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_arm.png new file mode 100644 index 0000000000..ed756014a6 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_leg+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_leg+o.png new file mode 100644 index 0000000000..42d6f7b355 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_leg+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_leg.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_leg.png new file mode 100644 index 0000000000..7fd0576f9e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_l_leg.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_arm+o.png new file mode 100644 index 0000000000..e76face796 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_arm.png new file mode 100644 index 0000000000..98137c1e50 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_leg+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_leg+o.png new file mode 100644 index 0000000000..4d494a0b09 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_leg+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_leg.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_leg.png new file mode 100644 index 0000000000..3b16a068e0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/gygax_r_leg.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/meta.json new file mode 100644 index 0000000000..aac1b8187d --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Specific/Mech/gygax_construction.rsi/meta.json @@ -0,0 +1,117 @@ +{ + "copyright" : "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/91af16bcbfd2dd363a89d846ae2acd6d655083c2", + "license" : "CC-BY-SA-3.0", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "gygax_chassis" + }, + { + "name": "gygax_harness" + }, + { + "name": "gygax_armor" + }, + { + "name": "gygax_harness+o" + }, + { + "name": "gygax_head" + }, + { + "name": "gygax_head+o" + }, + { + "name": "gygax_r_arm" + }, + { + "name": "gygax_r_arm+o" + }, + { + "name": "gygax_l_arm" + }, + { + "name": "gygax_l_arm+o" + }, + { + "name": "gygax_r_leg" + }, + { + "name": "gygax_r_leg+o" + }, + { + "name": "gygax_l_leg" + }, + { + "name": "gygax_l_leg+o" + }, + { + "name": "gygax0" + }, + { + "name": "gygax1" + }, + { + "name": "gygax2" + }, + { + "name": "gygax3" + }, + { + "name": "gygax4" + }, + { + "name": "gygax5" + }, + { + "name": "gygax6" + }, + { + "name": "gygax7" + }, + { + "name": "gygax8" + }, + { + "name": "gygax9" + }, + { + "name": "gygax10" + }, + { + "name": "gygax11" + }, + { + "name": "gygax12" + }, + { + "name": "gygax13" + }, + { + "name": "gygax14" + }, + { + "name": "gygax15" + }, + { + "name": "gygax16" + }, + { + "name": "gygax17" + }, + { + "name": "gygax18" + }, + { + "name": "gygax19" + }, + { + "name": "gygax20" + } + ] + } + \ No newline at end of file diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/meta.json new file mode 100644 index 0000000000..0ec3c7105e --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/meta.json @@ -0,0 +1,113 @@ +{ + "copyright" : "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/91af16bcbfd2dd363a89d846ae2acd6d655083c2", + "license" : "CC-BY-SA-3.0", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ripleymkii_chassis" + }, + { + "name": "ripleymkii_upgrade_kit" + }, + { + "name": "ripleymkii_upgrade_kit+o" + }, + { + "name": "ripleymkii_harness" + }, + { + "name": "ripleymkii_harness+o" + }, + { + "name": "ripleymkii_r_arm" + }, + { + "name": "ripleymkii_r_arm+o" + }, + { + "name": "ripleymkii_l_arm" + }, + { + "name": "ripleymkii_l_arm+o" + }, + { + "name": "ripleymkii_r_leg" + }, + { + "name": "ripleymkii_r_leg+o" + }, + { + "name": "ripleymkii_l_leg" + }, + { + "name": "ripleymkii_l_leg+o" + }, + { + "name": "ripleymkii0" + }, + { + "name": "ripleymkii1" + }, + { + "name": "ripleymkii2" + }, + { + "name": "ripleymkii3" + }, + { + "name": "ripleymkii4" + }, + { + "name": "ripleymkii5" + }, + { + "name": "ripleymkii6" + }, + { + "name": "ripleymkii7" + }, + { + "name": "ripleymkii8" + }, + { + "name": "ripleymkii9" + }, + { + "name": "ripleymkii10" + }, + { + "name": "ripleymkii11" + }, + { + "name": "ripleymkii12" + }, + { + "name": "ripleymkii13" + }, + { + "name": "ripleymkii14" + }, + { + "name": "ripleymkii15" + }, + { + "name": "ripleymkii16" + }, + { + "name": "ripleymkii17" + }, + { + "name": "ripleymkii18" + }, + { + "name": "ripleymkii19" + }, + { + "name": "ripleymkii20" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii0.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii0.png new file mode 100644 index 0000000000..f6c3604def Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii0.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii1.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii1.png new file mode 100644 index 0000000000..11927eabe5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii1.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii10.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii10.png new file mode 100644 index 0000000000..6a17b5d6bd Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii10.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii11.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii11.png new file mode 100644 index 0000000000..0f514a9223 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii11.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii12.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii12.png new file mode 100644 index 0000000000..663d61978c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii12.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii13.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii13.png new file mode 100644 index 0000000000..663d61978c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii13.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii14.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii14.png new file mode 100644 index 0000000000..663d61978c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii14.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii15.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii15.png new file mode 100644 index 0000000000..3880364196 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii15.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii16.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii16.png new file mode 100644 index 0000000000..4ce5704709 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii16.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii17.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii17.png new file mode 100644 index 0000000000..c0c545341c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii17.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii18.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii18.png new file mode 100644 index 0000000000..9a99bfcc32 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii18.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii19.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii19.png new file mode 100644 index 0000000000..c18f6a8c30 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii19.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii2.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii2.png new file mode 100644 index 0000000000..6aeb7807f8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii2.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii20.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii20.png new file mode 100644 index 0000000000..8f2146a859 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii20.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii3.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii3.png new file mode 100644 index 0000000000..f4e775c918 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii3.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii4.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii4.png new file mode 100644 index 0000000000..7446ffb9e8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii4.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii5.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii5.png new file mode 100644 index 0000000000..7a3cadae02 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii5.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii6.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii6.png new file mode 100644 index 0000000000..6b5cff2cc5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii6.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii7.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii7.png new file mode 100644 index 0000000000..3681585d8e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii7.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii8.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii8.png new file mode 100644 index 0000000000..2b02404c67 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii8.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii9.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii9.png new file mode 100644 index 0000000000..33da72a549 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii9.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_chassis.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_chassis.png new file mode 100644 index 0000000000..693f7d38cc Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_chassis.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_harness+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_harness+o.png new file mode 100644 index 0000000000..3ecc6d4edc Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_harness+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_harness.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_harness.png new file mode 100644 index 0000000000..81579c0036 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_harness.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_arm+o.png new file mode 100644 index 0000000000..a511f8f542 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_arm.png new file mode 100644 index 0000000000..41d2c83327 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_leg+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_leg+o.png new file mode 100644 index 0000000000..c27a1ff245 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_leg+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_leg.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_leg.png new file mode 100644 index 0000000000..b030880c47 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_l_leg.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_arm+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_arm+o.png new file mode 100644 index 0000000000..0733c1cd5c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_arm+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_arm.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_arm.png new file mode 100644 index 0000000000..b3897f0985 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_arm.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_leg+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_leg+o.png new file mode 100644 index 0000000000..0c75e70f83 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_leg+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_leg.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_leg.png new file mode 100644 index 0000000000..0b0c3ff8e5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_r_leg.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_upgrade_kit+o.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_upgrade_kit+o.png new file mode 100644 index 0000000000..831e56c565 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_upgrade_kit+o.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_upgrade_kit.png b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_upgrade_kit.png new file mode 100644 index 0000000000..81fdea7e5b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Mech/ripleymkii_construction.rsi/ripleymkii_upgrade_kit.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/boots.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/boots.png new file mode 100644 index 0000000000..0b0ada9e58 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/boots.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/chestplate.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/chestplate.png new file mode 100644 index 0000000000..a499fcf230 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/chestplate.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/gauntlets.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/gauntlets.png new file mode 100644 index 0000000000..f242f4db40 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/gauntlets.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/helmet.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/helmet.png new file mode 100644 index 0000000000..5385dcb9fa Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/helmet.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/meta.json new file mode 100644 index 0000000000..1d59db7f79 --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/meta.json @@ -0,0 +1,56 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From tgstation - https://github.com/tgstation/tgstation/pull/59109", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chestplate" + }, + { + "name": "gauntlets" + }, + { + "name": "helmet" + }, + { + "name": "standard-plating" + }, + { + "name": "boots" + }, + { + "name": "shell" + }, + { + "name": "mod-core-standard", + "delays": [[0.1, 0.1, 0.1, 0.1]] + }, + { + "name": "shell-core", + "delays": [[0.1, 0.1, 0.1, 0.1]] + }, + { + "name": "shell-core-secured", + "delays": [[0.1, 0.1, 0.1, 0.1]] + }, + { + "name": "shell-helmet" + }, + { + "name": "shell-chestplate" + }, + { + "name": "shell-gauntlets" + }, + { + "name": "shell-boots" + }, + { + "name": "shell-secured" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/mod-core-standard.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/mod-core-standard.png new file mode 100644 index 0000000000..437079c540 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/mod-core-standard.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-boots.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-boots.png new file mode 100644 index 0000000000..f825bb5c40 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-boots.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-chestplate.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-chestplate.png new file mode 100644 index 0000000000..25384dabf4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-chestplate.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-core-secured.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-core-secured.png new file mode 100644 index 0000000000..f03323b100 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-core-secured.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-core.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-core.png new file mode 100644 index 0000000000..1957741c8d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-core.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-gauntlets.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-gauntlets.png new file mode 100644 index 0000000000..02b9c2824b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-gauntlets.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-helmet.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-helmet.png new file mode 100644 index 0000000000..9417be1ef6 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-helmet.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-secured.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-secured.png new file mode 100644 index 0000000000..4152554390 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell-secured.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell.png new file mode 100644 index 0000000000..0f9665700a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/shell.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/standard-plating.png b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/standard-plating.png new file mode 100644 index 0000000000..ff521088cb Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Specific/Robotics/modsuit_parts.rsi/standard-plating.png differ diff --git a/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/dragon.png b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/dragon.png new file mode 100644 index 0000000000..39e32610d7 Binary files /dev/null and b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/dragon.png differ diff --git a/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/fly.png b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/fly.png new file mode 100644 index 0000000000..cb6e4a0423 Binary files /dev/null and b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/fly.png differ diff --git a/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/meta.json b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/meta.json new file mode 100644 index 0000000000..8b7c597c2d --- /dev/null +++ b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/meta.json @@ -0,0 +1,24 @@ +{ + "version": 1, + "size": { "x": 64, "y": 34 }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGStation at commit https://github.com/tgstation/tgstation/commit/e9cc620e9f908e18949031c6e1b5811e3fc5af4e | skeleton modified by Skubman", + "states": [ + { + "name": "dragon", + "directions": 4 + }, + { + "name": "fly", + "directions": 4 + }, + { + "name": "robotic", + "directions": 4 + }, + { + "name": "skeleton", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/robotic.png b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/robotic.png new file mode 100644 index 0000000000..0663a6be4a Binary files /dev/null and b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/robotic.png differ diff --git a/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/skeleton.png b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/skeleton.png new file mode 100644 index 0000000000..22b76c2e31 Binary files /dev/null and b/Resources/Textures/_SimpleStation/Mobs/Customization/wings64x34.rsi/skeleton.png differ diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index e8fffc2699..f17d17d092 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -601,6 +601,9 @@ binds: type: State key: S mod1: Control +- function: MappingEnableDecalPick + type: State + key: Num4 - function: MappingEnablePick type: State key: Num5 @@ -623,3 +626,4 @@ binds: type: State key: MouseRight canFocus: true + diff --git a/RobustToolbox b/RobustToolbox index 8f2817aa4e..ee906af16e 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 8f2817aa4eb727cf57513d6cf58900e21c52de61 +Subproject commit ee906af16e136c7e09930d88872ab9bba3137c8e